diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-24 23:04:36 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-24 23:04:36 +0000 |
commit | 4502d03c03ab81e38efc29a83958d57f9d2a3a36 (patch) | |
tree | 4d1f336c65263eb62b5305a31942400fb06e0364 /term.c | |
parent | ac94c36809f5a1da03eaaeebcb3d23cc7d8de077 (diff) | |
download | mandoc-4502d03c03ab81e38efc29a83958d57f9d2a3a36.tar.gz |
Delete the unused flag TERMP_IGNDELIM
and the empty callback termp_igndelim_pre().
Sort the remaining termp flags.
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -429,7 +429,7 @@ term_word(struct termp *p, const char *word) else p->flags |= TERMP_NOSPACE; - p->flags &= ~(TERMP_SENTENCE | TERMP_IGNDELIM); + p->flags &= ~TERMP_SENTENCE; while ('\0' != *word) { if ('\\' != *word) { |