aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index 3734b003..4368fe66 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.34 1999/03/25 21:05:05 roberto Exp roberto $ 2** $Id: llex.c,v 1.35 1999/05/14 12:24:04 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*/
@@ -106,7 +106,9 @@ void luaX_setinput (LexState *LS, ZIO *z)
106** ======================================================= 106** =======================================================
107*/ 107*/
108 108
109#define PRAGMASIZE 80 109#ifndef PRAGMASIZE
110#define PRAGMASIZE 80 /* arbitrary limit */
111#endif
110 112
111static void skipspace (LexState *LS) { 113static void skipspace (LexState *LS) {
112 while (LS->current == ' ' || LS->current == '\t' || LS->current == '\r') 114 while (LS->current == ' ' || LS->current == '\t' || LS->current == '\r')