aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/llex.c b/llex.c
index ab722b54..3dc87470 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.81 2001/02/23 20:32:16 roberto Exp roberto $ 2** $Id: llex.c,v 1.82 2001/03/06 14:46:54 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*/
@@ -194,6 +194,8 @@ static void read_long_string (LexState *LS, SemInfo *seminfo) {
194 checkbuffer(L, 10, l); 194 checkbuffer(L, 10, l);
195 save(L, l_c('['), l); /* save first `[' */ 195 save(L, l_c('['), l); /* save first `[' */
196 save_and_next(L, LS, l); /* pass the second `[' */ 196 save_and_next(L, LS, l); /* pass the second `[' */
197 if (LS->current == l_c('\n')) /* string starts with a newline? */
198 inclinenumber(LS); /* skip it */
197 for (;;) { 199 for (;;) {
198 checkbuffer(L, 10, l); 200 checkbuffer(L, 10, l);
199 switch (LS->current) { 201 switch (LS->current) {