diff options
Diffstat (limited to 'llex.c')
-rw-r--r-- | llex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.22 1998/06/19 18:47:06 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 1.23 1998/07/06 22:04:58 roberto Exp roberto $ |
3 | ** Lexical Analizer | 3 | ** Lexical Analizer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -59,7 +59,7 @@ void luaX_error (LexState *ls, char *s) { | |||
59 | } | 59 | } |
60 | 60 | ||
61 | 61 | ||
62 | void luaX_token2str (LexState *ls, int token, char *s) { | 62 | void luaX_token2str (int token, char *s) { |
63 | if (token < 255) { | 63 | if (token < 255) { |
64 | s[0] = token; | 64 | s[0] = token; |
65 | s[1] = 0; | 65 | s[1] = 0; |