summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2013-12-24 23:04:30 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2013-12-24 23:04:30 +0000
commit46c6ff6f53cd364da09058ef22e7f198c0503a6c (patch)
tree705328b9e332332f01e0628673ff32c916b4c99a /usr.bin/mandoc/term.c
parentc7468fcccbc04157e4b62dd2620efdd73eadb963 (diff)
Delete the unused flag TERMP_IGNDELIM
and the empty callback termp_igndelim_pre(). Sort the remaining termp flags.
Diffstat (limited to 'usr.bin/mandoc/term.c')
-rw-r--r--usr.bin/mandoc/term.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/term.c b/usr.bin/mandoc/term.c
index 7f9340661a7..0a6a2232877 100644
--- a/usr.bin/mandoc/term.c
+++ b/usr.bin/mandoc/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.73 2013/12/23 02:19:57 schwarze Exp $ */
+/* $Id: term.c,v 1.74 2013/12/24 23:04:29 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2011, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -425,7 +425,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) {