diff options
Diffstat (limited to 'win/config.h')
-rw-r--r-- | win/config.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/win/config.h b/win/config.h index 3264979..47fb9e8 100644 --- a/win/config.h +++ b/win/config.h @@ -12,9 +12,12 @@ char *taglist[] = { /* Words containing any of these characters are skipped. */ -char *skip = "&/-="; +char *skip = "&/-=~"; -/* Should the dictionary of hyphenation patterns be in -a location other than the one specified here, replace this -with the valid location. */ -char *dictfile = "C:/Users/Otho/tmp/hyp/win/hyph_en_US.dic"; +/* Inherit the directory at compile time. */ +const char *buildpath = BUILD_PATH; +const char *en = "hyph_en_US.dic"; +const char *es = "../ext/es/hyph_es.dic"; +enum { + pathbuf = 512, +}; |