diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-11-30 10:43:51 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2011-11-30 10:43:51 -0200 |
commit | 6d8b67209443e03d83cb7b6306dc0ef098d0f1f8 (patch) | |
tree | e7c9e14b1529483132a714eb9c5ffeeeb2dc825b /llex.h | |
parent | e21b26a964774e29f24e5f6ae97808fdb5bce9d5 (diff) | |
download | lua-6d8b67209443e03d83cb7b6306dc0ef098d0f1f8.tar.gz lua-6d8b67209443e03d83cb7b6306dc0ef098d0f1f8.tar.bz2 lua-6d8b67209443e03d83cb7b6306dc0ef098d0f1f8.zip |
more uses of 'l_noret'
Diffstat (limited to 'llex.h')
-rw-r--r-- | llex.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llex.h,v 1.70 2011/05/03 15:51:16 roberto Exp roberto $ | 2 | ** $Id: llex.h,v 1.71 2011/06/20 16:52:48 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 | */ |
@@ -71,7 +71,7 @@ LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, | |||
71 | LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); | 71 | LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); |
72 | LUAI_FUNC void luaX_next (LexState *ls); | 72 | LUAI_FUNC void luaX_next (LexState *ls); |
73 | LUAI_FUNC int luaX_lookahead (LexState *ls); | 73 | LUAI_FUNC int luaX_lookahead (LexState *ls); |
74 | LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s); | 74 | LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s); |
75 | LUAI_FUNC const char *luaX_token2str (LexState *ls, int token); | 75 | LUAI_FUNC const char *luaX_token2str (LexState *ls, int token); |
76 | 76 | ||
77 | 77 | ||