X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=init.c;h=b6ba98b4f7c54a5f6288f027ce8cd558a8b9eadd;hp=e01ed4d090568b343c7d3f17b01b7845d9c62059;hb=8b89861e79d1b2e8ddcc54ea4d89957d6d10ebe6;hpb=f2fdbd5e7c6bf27192a53de395ad79c281c4a766 diff --git a/init.c b/init.c index e01ed4d..b6ba98b 100644 --- a/init.c +++ b/init.c @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include @@ -434,7 +434,7 @@ int query_quadoption2(int v, const char *prompt) default: v = mutt_yesorno(prompt, (v == M_ASKYES)); - CLEARLINE (LINES - 1); + CLEARLINE(main_w, LINES - 1); return (v); } } @@ -450,7 +450,7 @@ int query_quadoption (int opt, const char *prompt) default: v = mutt_yesorno (prompt, (v == M_ASKYES)); - CLEARLINE (LINES - 1); + CLEARLINE(main_w, LINES - 1); return (v); } @@ -1629,36 +1629,6 @@ int mutt_var_value_complete (char *buffer, ssize_t len, int pos) return 0; } -/* Implement the -Q command line flag */ -int mutt_query_variables (string_list_t * queries) -{ - string_list_t *p; - - char errbuff[STRING]; - char command[STRING]; - - BUFFER err, token; - - p_clear(&err, 1); - p_clear(&token, 1); - - err.data = errbuff; - err.dsize = sizeof(errbuff); - - for (p = queries; p; p = p->next) { - snprintf (command, sizeof(command), "set ?%s\n", p->data); - if (mutt_parse_rc_line (command, &token, &err) == -1) { - fprintf (stderr, "%s\n", err.data); - p_delete(&token.data); - return 1; - } - printf ("%s\n", err.data); - } - - p_delete(&token.data); - return 0; -} - static int mutt_execute_commands (string_list_t * p) { BUFFER err, token; @@ -1867,26 +1837,3 @@ int mutt_get_hook_type (const char *name) return 0; } -/* dump out the value of all the variables we have */ -int mutt_dump_variables (int full) { - ssize_t i = 0; - - /* get all non-synonyms into list... */ - for (i = 0; MuttVars[i].option; i++) { - struct option_t *option = MuttVars + i; - char buf[LONG_STRING]; - - if (!full) { - mutt_option_value(option->option, buf, sizeof(buf)); - if (!m_strcmp(buf, option->init)) - continue; - } - - printf("set "); - FuncTable[DTYPE(option->type)].opt_tostr(buf, sizeof(buf), option); - printf ("%s\n", buf); - } - - printf ("\n# vi""m:set ft=muttrc:\n"); - return 0; -}