X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=init.c;h=b6ba98b4f7c54a5f6288f027ce8cd558a8b9eadd;hp=19d3b18da5f711f795429486d1e9e2109dea948b;hb=8b89861e79d1b2e8ddcc54ea4d89957d6d10ebe6;hpb=9946738a6a1c27a5602a14d1afe2eea2389732b2 diff --git a/init.c b/init.c index 19d3b18..b6ba98b 100644 --- a/init.c +++ b/init.c @@ -14,7 +14,7 @@ #include #include -#include +#include #include #include @@ -24,7 +24,6 @@ #include "charset.h" #include "thread.h" #include "mutt_idna.h" -#include "send_smtp.h" #include "alias.h" #include "init.h" @@ -82,9 +81,6 @@ static struct { int (*check) (const char* option, unsigned long val, char* errbuf, ssize_t errlen); } SpecialVars[] = { -#ifdef USE_LIBESMTP - { "smtp_use_tls", send_smtp_check_usetls }, -#endif { "history", check_history }, { "pager_index_lines", check_num }, /* last */ @@ -438,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); } } @@ -454,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); } @@ -1633,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; @@ -1871,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; -}