aboutsummaryrefslogtreecommitdiff
path: root/src/guiPasswordChange.cpp
Commit message (Collapse)AuthorAge
* Header file tweaking; mainly for speedPerttu Ahola2011-10-12
|
* Use wgettextGiuseppe Bilotta2011-08-02
|
* set locales to C because en_US not installed on some systems, only UTF-8 ↵Constantin Wenger2011-07-30
| | | | version and en_US.UTF-8 does not work.
* fixed displaying "umlauts" (deutsch umlaute) and hopefully other non ASCII ↵Constantin Wenger2011-07-30
| | | | chars, too
* changed some lines to fit the 80chars limitConstantin Wenger2011-07-22
|
* added gettext supportConstantin Wenger2011-07-20
| | | | german translation file and bashscript to update translations
* Updated licenses of CiaranG's contributions to be in line with the new ↵celeron552011-05-31
| | | | contribution policy and added a TODO note to server.cpp
* Added the ability to change your password (via pause menu)Ciaran Gultnieks2011-05-22
--HG-- extra : rebase_source : e8ec407f60711d42d33be4811b2880088f617b5b
t">, 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