blob: 8d0cd9f15f180753f632a98a36d72fc2d8374fe7 (
plain) (
tree)
|
|
#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 = "/usr/local/share/hyphen/hyph_en_US.dic";
|