summaryrefslogtreecommitdiff
path: root/pico/pico.h
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2015-11-15 17:56:28 -0700
committerEduardo Chappa <chappa@washington.edu>2015-11-15 17:56:28 -0700
commitb3ad27e8991fdbd64fd4db58c0c89538b5f02959 (patch)
treedb96448acc54c9893d17970c4dfffbcc95279eec /pico/pico.h
parentabf5b4cfbff3150ad3340679b80dc1ff5adf6298 (diff)
downloadalpine-b3ad27e8991fdbd64fd4db58c0c89538b5f02959.tar.xz
* PC-Alpine: New configuration option "Aspell Dictionaries" allows a
user to choose the dictionary used to spell, in case the user communicates in more than one language. Examples of values for the variable are "en_US" or "de_DE", etc. Only the first 10 dictionaries are offered.
Diffstat (limited to 'pico/pico.h')
-rw-r--r--pico/pico.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/pico/pico.h b/pico/pico.h
index 0605f992..04ad126e 100644
--- a/pico/pico.h
+++ b/pico/pico.h
@@ -190,6 +190,10 @@ typedef struct pico_struct {
char *ctrlr_label; /* Label for ^R in keymenu */
char *alt_spell; /* Checker to use other than "spell" */
char **alt_ed; /* name of alternate editor or NULL */
+#ifdef _WINDOWS
+ char **dict; /* list of dictionaries to choose */
+ int chosen_dict; /* chosen default dictionary */
+#endif /* WINDOWS */
UCS *wordseps; /* word separator characters other than space */
int fillcolumn; /* where to wrap */
int menu_rows; /* number of rows in menu (0 or 2) */