diff options
author | 2011-09-25 23:14:04 -0400 | |
---|---|---|
committer | 2011-09-25 23:14:04 -0400 | |
commit | c2d73d4284cc5009128bc5fed68fcc5826336ea2 (patch) | |
tree | ddd9624c31aaf332dd0da78f8a663cc1a4f295c0 | |
parent | dc28c7b4b0559e198acbedb42f9f4001d6a354cb (diff) | |
download | textadept-c2d73d4284cc5009128bc5fed68fcc5826336ea2.tar.gz textadept-c2d73d4284cc5009128bc5fed68fcc5826336ea2.zip |
Updated Doxygen doc; src/textadept.c
-rw-r--r-- | src/textadept.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/textadept.c b/src/textadept.c index a1fdfc9e..ff3d55d9 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -749,6 +749,7 @@ static gboolean c_keypress(GtkWidget*_, GdkEventKey *event, gpointer __) { * Initializes or re-initializes the Lua state. * Populates the state with global variables and functions, then runs the * 'core/init.lua' script. + * @param L The Lua state. * @param argc The number of command line parameters. * @param argv The array of command line parameters. * @param reinit Flag indicating whether or not to reinitialize the Lua state. @@ -1125,7 +1126,7 @@ static const char *l_rawgetstr(lua_State *L, int index, const char *k) { * Checks whether the function argument narg is the given Scintilla parameter * type and returns it cast to the proper type. * @param L The Lua state. - * @param index The stack index of the Scintilla parameter. + * @param narg The stack index of the Scintilla parameter. * @param type The Scintilla type to convert to. * @return Scintilla param */ @@ -1184,6 +1185,7 @@ static void lL_globaldoccheck(lua_State *L, int narg) { * stack. * Consult the LuaDoc for the table format. * @param L The Lua state. + * @param index The stack index of the table to create the menu from. * @param callback A GCallback associated with each menu item. * @param submenu Flag indicating whether or not this menu is a submenu. */ |