aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-12-24 23:04:36 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-12-24 23:04:36 +0000
commit319dd615ecf9bfbb4f80d4a40c14cfa67f905b04 (patch)
tree3615089281d4a071d3960b3ebbfc86475bce2a69 /term.c
parentd79f71b0fb34255f6f1577ffb09b4ce72dc775fd (diff)
downloadmandoc-319dd615ecf9bfbb4f80d4a40c14cfa67f905b04.tar.gz
mandoc-319dd615ecf9bfbb4f80d4a40c14cfa67f905b04.tar.zst
mandoc-319dd615ecf9bfbb4f80d4a40c14cfa67f905b04.zip
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/term.c b/term.c
index 3420c70c..2321aaac 100644
--- a/term.c
+++ b/term.c
@@ -1,4 +1,4 @@
-/* $Id: term.c,v 1.212 2013/12/23 02:20:09 schwarze Exp $ */
+/* $Id: term.c,v 1.213 2013/12/24 23:04:36 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2011, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -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) {