diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-09 18:22:29 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-02-09 18:22:29 -0200 |
commit | d2e340f467a46017fa3526074c1756124e569880 (patch) | |
tree | e5b08773a0f0734193b0c1c435fab8ee243f08dc /llex.c | |
parent | 6875fdc8be9029b1bb29379c59d5409a0df42c10 (diff) | |
download | lua-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.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 | ||
56 | void luaX_syntaxerror (LexState *ls, const char *s, const char *token) { | 56 | void 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 | } |