diff options
Diffstat (limited to 'lua.stx')
-rw-r--r-- | lua.stx | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ | |||
1 | %{ | 1 | %{ |
2 | 2 | ||
3 | char *rcs_luastx = "$Id: lua.stx,v 3.32 1996/02/14 18:25:04 roberto Exp roberto $"; | 3 | char *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 | ||