Browse Source

detail (comment)

Roberto Ierusalimschy 7 years ago
parent
commit
6710a2b0ef
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lobject.h

+ 2 - 2
lobject.h

@@ -1,5 +1,5 @@
 /*
-** $Id: lobject.h,v 2.130 2017/11/07 13:25:26 roberto Exp roberto $
+** $Id: lobject.h,v 2.131 2017/11/23 19:29:04 roberto Exp roberto $
 ** Type definitions for Lua objects
 ** See Copyright Notice in lua.h
 */
@@ -446,7 +446,7 @@ typedef struct AbsLineInfo {
 */
 typedef struct Proto {
   CommonHeader;
-  lu_byte numparams;  /* number of fixed parameters */
+  lu_byte numparams;  /* number of fixed (named) parameters */
   lu_byte is_vararg;
   lu_byte maxstacksize;  /* number of registers needed by this function */
   lu_byte cachemiss;  /* count for successive misses for 'cache' field */