Remove the ispell stuff, it's useless, most editors know how to do this,
[apps/madmutt.git] / globals.h
index bd0caf6..0bc0c97 100644 (file)
--- 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;
 
@@ -154,18 +153,10 @@ 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;