blob: 3264979622f15387cc633c09e4d5a2d20614b9a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#define MAXWLEN 64
#define MINWLEN 4
/* Tags whose contents are searched for hyphenation. */
char *taglist[] = {
"p",
"li",
/* A pointer array needs a sentinel value
in order to be enumerated through. */
"\0"
};
/* Words containing any of these characters
are skipped. */
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";
|