diff options
Diffstat (limited to 'llex.c')
-rw-r--r-- | llex.c | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.c,v 1.52 2000/03/03 14:58:26 roberto Exp roberto $ | 2 | ** $Id: llex.c,v 1.53 2000/03/10 18:37:44 roberto Exp roberto $ |
3 | ** Lexical Analyzer | 3 | ** Lexical Analyzer |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -114,10 +114,6 @@ void luaX_setinput (lua_State *L, LexState *LS, ZIO *z) { | |||
114 | ** ======================================================= | 114 | ** ======================================================= |
115 | */ | 115 | */ |
116 | 116 | ||
117 | #ifndef PRAGMASIZE | ||
118 | #define PRAGMASIZE 80 /* arbitrary limit */ | ||
119 | #endif | ||
120 | |||
121 | static void skipspace (LexState *LS) { | 117 | static void skipspace (LexState *LS) { |
122 | while (LS->current == ' ' || LS->current == '\t' || LS->current == '\r') | 118 | while (LS->current == ' ' || LS->current == '\t' || LS->current == '\r') |
123 | next(LS); | 119 | next(LS); |