diff options
-rw-r--r-- | src/lua_interface.c | 5 | ||||
-rw-r--r-- | src/textadept.c | 4 |
2 files changed, 0 insertions, 9 deletions
diff --git a/src/lua_interface.c b/src/lua_interface.c index 63cf8944..9cf49eea 100644 --- a/src/lua_interface.c +++ b/src/lua_interface.c @@ -238,7 +238,6 @@ void l_remove_scintilla_window(GtkWidget *editor) { * @param absolute Flag indicating whether or not the index specified in 'views' * is absolute. If false, focuses the window relative to the currently focused * window for the given index. - * Defaults to true. */ void l_goto_scintilla_window(GtkWidget *editor, int n, bool absolute) { if (!l_ta_get(lua, "views")) luaL_error(lua, views_dne); @@ -376,7 +375,6 @@ unsigned int l_get_docpointer_index(sptr_t doc) { * @param absolute Flag indicating whether or not the index specified in 'views' * is absolute. If false, focuses the document relative to the currently * focused document for the given index. - * Defaults to true. */ void l_goto_scintilla_buffer(GtkWidget *editor, int n, bool absolute) { if (!l_ta_get(lua, "buffers")) luaL_error(lua, buffers_dne); @@ -590,7 +588,6 @@ static long l_toscintillaparam(LS *lua, int type, int &arg_idx) { * @param lua The Lua State. * @param callback A GCallback associated with each menu item. * @param submenu Flag indicating whether or not this menu is a submenu. - * Defaults to false. */ GtkWidget *l_create_gtkmenu(LS *lua, GCallback callback, bool submenu) { GtkWidget *menu = gtk_menu_new(), *menu_item = 0, *submenu_root = 0; @@ -756,7 +753,6 @@ void l_cec_populate() { * @param expanding Flag indicating whether or not a treenode is being expanded. * If true, the tree is walked up from the node to top creating a full path * table at the stack top to be used essentially as entry_text. - * Defaults to false. * @see l_pm_get_full_path */ bool l_pm_get_contents_for(const char *entry_text, bool expanding) { @@ -775,7 +771,6 @@ bool l_pm_get_contents_for(const char *entry_text, bool expanding) { * stack top. * @param initial_iter The initial GtkTreeIter. If not NULL, it is a treenode * being expanded and the contents will be added to that expanding node. - * Defaults to NULL. * @see l_pm_get_contents_for */ void l_pm_populate(GtkTreeIter *initial_iter) { diff --git a/src/textadept.c b/src/textadept.c index 82343f43..dec065f1 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -196,7 +196,6 @@ void create_ui() { * Generates a 'view_new' event. * @param buffer_id A Scintilla buffer ID to load into the new window. If NULL, * creates a new Scintilla buffer and loads it into the new window. - * Defaults to NULL. * @return the Scintilla window. * @see set_default_editor_properties * @see l_add_scintilla_window @@ -237,14 +236,12 @@ void remove_scintilla_window(GtkWidget *editor) { * @param create Flag indicating whether or not to create a buffer. If false, * the ScintillaObject already has a buffer associated with it (typically * because new_scintilla_window was passed a non-NULL buffer_id). - * Defaults to true. * @param addref Flag indicating whether or not to add a reference to the buffer * in the ScintillaObject when create is false. This is necessary for creating * Scintilla windows in split views. If a buffer appears in two separate * Scintilla windows, that buffer should have multiple references so when one * Scintilla window closes, the buffer is not deleted because its reference * count is not zero. - * Defaults to true. * @see set_default_buffer_properties * @see l_add_scintilla_buffer */ @@ -278,7 +275,6 @@ void remove_scintilla_buffer(sptr_t doc) { * @param editor The Scintilla window to split. * @param vertical Flag indicating whether to split the window vertically or * horozontally. - * Defaults to true. */ void split_window(GtkWidget *editor, bool vertical) { g_object_ref(editor); |