summaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-09 18:22:29 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2001-02-09 18:22:29 -0200
commitd2e340f467a46017fa3526074c1756124e569880 (patch)
treee5b08773a0f0734193b0c1c435fab8ee243f08dc /llex.c
parent6875fdc8be9029b1bb29379c59d5409a0df42c10 (diff)
downloadlua-d2e340f467a46017fa3526074c1756124e569880.tar.gz
lua-d2e340f467a46017fa3526074c1756124e569880.tar.bz2
lua-d2e340f467a46017fa3526074c1756124e569880.zip
string pointers are always fully aligned
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.c b/llex.c
index 801da0ec..8d72cb5e 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.75 2001/01/15 18:07:56 roberto Exp roberto $ 2** $Id: llex.c,v 1.76 2001/01/19 13:20:30 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*/
@@ -55,7 +55,7 @@ void luaX_checklimit (LexState *ls, int val, int limit, const char *msg) {
55 55
56void luaX_syntaxerror (LexState *ls, const char *s, const char *token) { 56void luaX_syntaxerror (LexState *ls, const char *s, const char *token) {
57 char buff[MAXSRC]; 57 char buff[MAXSRC];
58 luaO_chunkid(buff, ls->source->str, sizeof(buff)); 58 luaO_chunkid(buff, getstr(ls->source), sizeof(buff));
59 luaO_verror(ls->L, "%.99s;\n last token read: `%.30s' at line %d in %.80s", 59 luaO_verror(ls->L, "%.99s;\n last token read: `%.30s' at line %d in %.80s",
60 s, token, ls->linenumber, buff); 60 s, token, ls->linenumber, buff);
61} 61}