aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormitchell <70453897+667e-11@users.noreply.github.com>2011-09-25 23:14:04 -0400
committermitchell <70453897+667e-11@users.noreply.github.com>2011-09-25 23:14:04 -0400
commitc2d73d4284cc5009128bc5fed68fcc5826336ea2 (patch)
treeddd9624c31aaf332dd0da78f8a663cc1a4f295c0 /src
parentdc28c7b4b0559e198acbedb42f9f4001d6a354cb (diff)
downloadtextadept-c2d73d4284cc5009128bc5fed68fcc5826336ea2.tar.gz
textadept-c2d73d4284cc5009128bc5fed68fcc5826336ea2.zip
Updated Doxygen doc; src/textadept.c
Diffstat (limited to 'src')
-rw-r--r--src/textadept.c4
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.
*/