X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=init.h;h=bbab7133bb89fbe9c507173d7121dfe949205d9a;hb=8e037c67a88cb4680c4391134c578e3b55a80f8a;hp=37e311223fd533116c8012454d13a20c790d16d4;hpb=ea912b20ba2b3b9dfdbbae758ad56263c9aa41b3;p=apps%2Fmadmutt.git diff --git a/init.h b/init.h index 37e3112..bbab713 100644 --- a/init.h +++ b/init.h @@ -122,7 +122,7 @@ struct option_t { # endif #endif -struct option_t const MuttVars[] = { +struct option_t MuttVars[] = { /*++*/ {"abort_noattach", DT_QUAD, R_NONE, OPT_ATTACH, "no" }, /* @@ -2789,7 +2789,7 @@ struct option_t const MuttVars[] = { ** This variable configures how often (in seconds) Mutt-ng should look for ** new mail. */ - {"pop_delete", DT_QUAD, R_NONE, OPT_POPDELETE, "ask-no" }, + {"pop_delete(", DT_QUAD, R_NONE, OPT_POPDELETE, "ask-no" }, /* ** .pp ** Availability: POP @@ -3854,7 +3854,7 @@ struct option_t const MuttVars[] = { */ #endif /*--*/ - { NULL } + { NULL, -1, R_NONE, -1, NULL } }; static const char* Features[] = { @@ -3968,14 +3968,14 @@ const struct mapping_t SortBrowserMethods[] = { {"date", SORT_DATE}, {"size", SORT_SIZE}, {"unsorted", SORT_ORDER}, - {NULL} + {NULL, 0} }; const struct mapping_t SortAliasMethods[] = { {"alias", SORT_ALIAS}, {"address", SORT_ADDRESS}, {"unsorted", SORT_ORDER}, - {NULL} + {NULL, 0} }; const struct mapping_t SortKeyMethods[] = { @@ -3983,7 +3983,7 @@ const struct mapping_t SortKeyMethods[] = { {"date", SORT_DATE}, {"keyid", SORT_KEYID}, {"trust", SORT_TRUST}, - {NULL} + {NULL, 0} }; @@ -4087,5 +4087,5 @@ struct command_t Commands[] = { {"unscore", mutt_parse_unscore, 0}, {"unset", parse_set, M_SET_UNSET}, {"unsubscribe", parse_unsubscribe, 0}, - {NULL} + {NULL, NULL, 0} };