summaryrefslogtreecommitdiff
path: root/llex.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-11-30 10:43:51 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2011-11-30 10:43:51 -0200
commit6d8b67209443e03d83cb7b6306dc0ef098d0f1f8 (patch)
treee7c9e14b1529483132a714eb9c5ffeeeb2dc825b /llex.h
parente21b26a964774e29f24e5f6ae97808fdb5bce9d5 (diff)
downloadlua-6d8b67209443e03d83cb7b6306dc0ef098d0f1f8.tar.gz
lua-6d8b67209443e03d83cb7b6306dc0ef098d0f1f8.tar.bz2
lua-6d8b67209443e03d83cb7b6306dc0ef098d0f1f8.zip
more uses of 'l_noret'
Diffstat (limited to 'llex.h')
-rw-r--r--llex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llex.h b/llex.h
index 2c1ab559..1125e836 100644
--- a/llex.h
+++ b/llex.h
@@ -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,
71LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); 71LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l);
72LUAI_FUNC void luaX_next (LexState *ls); 72LUAI_FUNC void luaX_next (LexState *ls);
73LUAI_FUNC int luaX_lookahead (LexState *ls); 73LUAI_FUNC int luaX_lookahead (LexState *ls);
74LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s); 74LUAI_FUNC l_noret luaX_syntaxerror (LexState *ls, const char *s);
75LUAI_FUNC const char *luaX_token2str (LexState *ls, int token); 75LUAI_FUNC const char *luaX_token2str (LexState *ls, int token);
76 76
77 77