aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/llex.c b/llex.c
index a3d2cab3..f56b0a21 100644
--- a/llex.c
+++ b/llex.c
@@ -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
121static void skipspace (LexState *LS) { 117static 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);