X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=globals.h;h=38438e2dc65a05ef95acc6e30f2e38b220eaeb89;hp=bd0caf6b119839541b3b8981f110030eef6f8d0a;hb=5f299ed8b67fa06f3c96777d437c0285ff71d9ac;hpb=92c3d4c767ddbc0e0c64dd6e132ce10627550580 diff --git a/globals.h b/globals.h index bd0caf6..38438e2 100644 --- a/globals.h +++ b/globals.h @@ -47,7 +47,6 @@ WHERE char *ImapLogin INITVAL (NULL); WHERE char *ImapPass INITVAL (NULL); WHERE char *ImapUser INITVAL (NULL); WHERE char *Inbox; -WHERE char *Ispell; WHERE char *Locale; WHERE char *Maildir; @@ -149,23 +148,12 @@ WHERE string_list_t *AttachAllow INITVAL(0); WHERE string_list_t *AttachExclude INITVAL(0); WHERE string_list_t *InlineAllow INITVAL(0); WHERE string_list_t *InlineExclude INITVAL(0); -WHERE string_list_t *HeaderOrderList INITVAL (0); -WHERE string_list_t *Ignore INITVAL (0); -WHERE string_list_t *UnIgnore INITVAL (0); /* bit vector for boolean variables */ -#ifdef MAIN_C -unsigned char Options[(OPTMAX + 7) / 8]; -#else -extern unsigned char Options[]; -#endif +WHERE unsigned char Options[(OPTMAX + 7) / 8]; /* bit vector for the yes/no/ask variable type */ -#ifdef MAIN_C -unsigned char QuadOptions[(OPT_MAX * 2 + 7) / 8]; -#else -extern unsigned char QuadOptions[]; -#endif +WHERE unsigned char QuadOptions[(OPT_MAX * 2 + 7) / 8]; #ifdef USE_NNTP WHERE short NewsPollTimeout;