about summary refs log tree commit diff stats
ModeNameSize
-rw-r--r--.hgtags812log stats plain blame
-rw-r--r--LICENSE1192log stats plain blame
-rw-r--r--Makefile1542log stats plain blame
-rw-r--r--README1088log stats plain blame
-rw-r--r--client.c9045log stats plain blame
-rw-r--r--config.arg.h2875log stats plain blame
-rw-r--r--config.default.h2771log stats plain blame
-rw-r--r--config.mk472log stats plain blame
-rw-r--r--draw.c4658log stats plain blame
-rw-r--r--dwm.13245log stats plain blame
-rw-r--r--dwm.h7968log stats plain blame
-rw-r--r--dwm.png373log stats plain blame
-rw-r--r--event.c8003log stats plain blame
-rw-r--r--main.c7599log stats plain blame
-rw-r--r--tag.c2557log stats plain blame
-rw-r--r--util.c1222log stats plain blame
-rw-r--r--view.c7715log stats plain blame
class="n">TK_DOTS, TK_EQ, TK_GE, TK_LE, TK_NE, TK_NUMBER, TK_NAME, TK_STRING, TK_EOS }; /* number of reserved words */ #define NUM_RESERVED (cast(int, TK_WHILE-FIRST_RESERVED+1)) /* array with token `names' */ LUAI_DATA const char *const luaX_tokens []; typedef union { lua_Number r; TString *ts; } SemInfo; /* semantics information */ typedef struct Token { int token; SemInfo seminfo; } Token; typedef struct LexState { int current; /* current character (charint) */ int linenumber; /* input line counter */ int lastline; /* line of last token `consumed' */ Token t; /* current token */ Token lookahead; /* look ahead token */ struct FuncState *fs; /* `FuncState' is private to the parser */ struct lua_State *L; ZIO *z; /* input stream */ Mbuffer *buff; /* buffer for tokens */ TString *source; /* current source name */ char decpoint; /* locale decimal point */ } LexState; LUAI_FUNC void luaX_init (lua_State *L); LUAI_FUNC void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source); LUAI_FUNC TString *luaX_newstring (LexState *ls, const char *str, size_t l); LUAI_FUNC void luaX_next (LexState *ls); LUAI_FUNC void luaX_lookahead (LexState *ls); LUAI_FUNC void luaX_lexerror (LexState *ls, const char *msg, int token); LUAI_FUNC void luaX_syntaxerror (LexState *ls, const char *s); LUAI_FUNC const char *luaX_token2str (LexState *ls, int token); #endif