blob: 69c5f26f685ac1ab9cc68c396152d00198c2f844 (
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 = "&/-=~";
|