From a83b73d30397ee8e5c33668bcc0f1712ac74ff29 Mon Sep 17 00:00:00 2001 From: Pierre Habouzit Date: Mon, 12 Mar 2007 00:23:29 +0100 Subject: [PATCH] stylish updates. Signed-off-by: Pierre Habouzit --- init.c | 2 +- lib-lua/lib-lua.h | 4 ++-- lib-lua/lib-lua_priv.h | 2 -- lib-lua/lua-token.sh | 1 - lib-lua/madmutt.c | 51 ++++++++++++++++++++++++++++++------------ lib-lua/runtime.c | 10 ++++----- 6 files changed, 45 insertions(+), 25 deletions(-) diff --git a/init.c b/init.c index f99452a..e153736 100644 --- a/init.c +++ b/init.c @@ -496,7 +496,7 @@ int quadoption (int opt) int query_quadoption2(int opt, const char *prompt) { - int v = mlua_reggetq(opt); + int v = mlua_reggeti(opt); switch (v) { case M_YES: diff --git a/lib-lua/lib-lua.h b/lib-lua/lib-lua.h index efad96c..4ce8906 100644 --- a/lib-lua/lib-lua.h +++ b/lib-lua/lib-lua.h @@ -41,9 +41,9 @@ int mlua_dofile(const char *filename); int mlua_wrap(void (*errfun)(const char *fmt, ...), int status); const char *mlua_reggets(enum lua_token tk); -quadopt_t mlua_reggetq(enum lua_token tk); +int mlua_reggeti(enum lua_token tk); void mlua_regsets(enum lua_token tk, const char *s); -void mlua_regsetq(enum lua_token tk, quadopt_t q); +void mlua_regseti(enum lua_token tk, int i); #endif diff --git a/lib-lua/lib-lua_priv.h b/lib-lua/lib-lua_priv.h index 5f69d81..84fd121 100644 --- a/lib-lua/lib-lua_priv.h +++ b/lib-lua/lib-lua_priv.h @@ -29,8 +29,6 @@ typedef enum reg_type { REG_NIL, REG_INT, - REG_BOOL, - REG_QUAD, REG_STR, } reg_type; diff --git a/lib-lua/lua-token.sh b/lib-lua/lua-token.sh index 8dc5a83..b715c37 100644 --- a/lib-lua/lua-token.sh +++ b/lib-lua/lua-token.sh @@ -109,4 +109,3 @@ exit 0 ## quit ## sendmail ## shell -## tmpdir diff --git a/lib-lua/madmutt.c b/lib-lua/madmutt.c index 29907f3..6fe2b4d 100644 --- a/lib-lua/madmutt.c +++ b/lib-lua/madmutt.c @@ -81,9 +81,6 @@ static int madmutt_assign(lua_State *L) char buf[STRING]; int i; - default: - return luaL_error(L, "read-only or inexistant property '%s'", idx, tk); - case LTK_DOTLOCK: case LTK_SENDMAIL: case LTK_SHELL: @@ -99,30 +96,56 @@ static int madmutt_assign(lua_State *L) i = quadopt_parse(val); if (i < 0) return luaL_error(L, "invalid quad option value: '%s'", val); - mlua_regsetq(tk, i); + mlua_regseti(tk, i); return 0; + + case LTK_UNKNOWN: + case LTK_count: + break; } + + return luaL_error(L, "read-only or inexistant property '%s'", idx, tk); } static int madmutt_get(lua_State *L) { const char *idx = luaL_checkstring(L, 2); - int tk; - - switch ((tk = lua_which_token(idx, -1))) { - default: - lua_getmetatable(L, 1); - lua_replace(L, 1); - lua_rawget(L, 1); - return 1; + enum lua_token tk = lua_which_token(idx, -1); + switch (tk) { case LTK_DOTLOCK: case LTK_SENDMAIL: case LTK_SHELL: + case LTK_EDITOR: lua_pushstring(L, mlua_reggets(tk)); + return 1; + + case LTK_QUIT: + switch (mlua_reggeti(tk)) { + case M_YES: + lua_pushstring(L, "yes"); + return 1; + case M_NO: + lua_pushstring(L, "no"); + return 1; + case M_ASKNO: + lua_pushstring(L, "ask-no"); + return 1; + case M_ASKYES: + lua_pushstring(L, "ask-yes"); + return 1; + default: + return 0; + } + + case LTK_UNKNOWN: + case LTK_count: break; } + lua_getmetatable(L, 1); + lua_replace(L, 1); + lua_rawget(L, 1); return 1; } @@ -248,7 +271,7 @@ static const struct { ** Contains the path of the \fTmadmutt_dotlock(1)\fP binary to be used by ** Madmutt. */ - {"editor", madmutt_init_editor, NULL }, + { "editor", madmutt_init_editor, NULL }, /* ** .pp ** This variable specifies which editor is used by Madmutt. @@ -268,7 +291,7 @@ static const struct { ** Command to use when spawning a subshell. By default, the user's login ** shell from \fT/etc/passwd\fP is used. */ - {"quit", NULL, "yes" } + { "quit", NULL, "yes" }, /* ** .pp ** This variable controls whether ``quit'' and ``exit'' actually quit diff --git a/lib-lua/runtime.c b/lib-lua/runtime.c index 7a351ee..0fb777c 100644 --- a/lib-lua/runtime.c +++ b/lib-lua/runtime.c @@ -74,9 +74,9 @@ const char *mlua_reggets(int tk) return registry[tk].s; } -quadopt_t mlua_reggetq(int tk) +int mlua_reggeti(int tk) { - if (registry[tk].type != REG_QUAD) + if (registry[tk].type != REG_INT) return -1; return registry[tk].i; } @@ -88,9 +88,9 @@ void mlua_regsets(int tk, const char *s) registry[tk].s = m_strdup(s); } -void mlua_regsetq(int tk, quadopt_t q) +void mlua_regseti(int tk, int i) { reg_entry_wipe(registry + tk); - registry[tk].type = REG_QUAD; - registry[tk].i = q; + registry[tk].type = REG_INT; + registry[tk].i = i; } -- 2.20.1