aboutsummaryrefslogtreecommitdiff
path: root/lua.stx
diff options
context:
space:
mode:
Diffstat (limited to 'lua.stx')
-rw-r--r--lua.stx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.stx b/lua.stx
index 878a691e..b201d6e3 100644
--- a/lua.stx
+++ b/lua.stx
@@ -1,6 +1,6 @@
1%{ 1%{
2 2
3char *rcs_luastx = "$Id: lua.stx,v 3.32 1996/02/14 18:25:04 roberto Exp roberto $"; 3char *rcs_luastx = "$Id: lua.stx,v 3.33 1996/02/26 17:07:20 roberto Exp roberto $";
4 4
5#include <stdio.h> 5#include <stdio.h>
6#include <stdlib.h> 6#include <stdlib.h>
@@ -487,7 +487,7 @@ funcname : var { $$ =$1; init_func(); }
487 code_word(luaI_findconstant($3)); 487 code_word(luaI_findconstant($3));
488 $$ = 0; /* indexed variable */ 488 $$ = 0; /* indexed variable */
489 init_func(); 489 init_func();
490 add_localvar(lua_constcreate("self")); 490 add_localvar(luaI_createfixedstring("self"));
491 } 491 }
492 ; 492 ;
493 493