diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-24 14:26:08 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-03-24 14:26:08 -0300 |
commit | 213e9febc889d5aaae8ef0e8b777cdb4889e30c1 (patch) | |
tree | a3b8483f7ce4094e8df3071cb774ef1ee70cc474 /llex.c | |
parent | 47b4bf59649834c611571d7ac1482eac55687ce5 (diff) | |
download | lua-213e9febc889d5aaae8ef0e8b777cdb4889e30c1.tar.gz lua-213e9febc889d5aaae8ef0e8b777cdb4889e30c1.tar.bz2 lua-213e9febc889d5aaae8ef0e8b777cdb4889e30c1.zip |
limits now are in `llims.n'
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); |