summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>1999-11-07 16:14:23 +0000
committerSimon Tatham <anakin@pobox.com>1999-11-07 16:14:23 +0000
commit18171f661f78e141d24c3990c5db4346213d440b (patch)
tree3db6801ddc54bd721bb56310df555851409020ef /misc.c
parent06bbfc1a23c38d623c88adffb681e89a367ab5c5 (diff)
downloadhalibut-18171f661f78e141d24c3990c5db4346213d440b.zip
halibut-18171f661f78e141d24c3990c5db4346213d440b.tar.gz
halibut-18171f661f78e141d24c3990c5db4346213d440b.tar.bz2
halibut-18171f661f78e141d24c3990c5db4346213d440b.tar.xz
Added \q{...} for quoted text
[originally from svn r274]
Diffstat (limited to 'misc.c')
-rw-r--r--misc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/misc.c b/misc.c
index 97caf8d..c808670 100644
--- a/misc.c
+++ b/misc.c
@@ -143,9 +143,9 @@ void mark_attr_ends(paragraph *sourceform) {
sameattr(wp->type, w->type));
int after = (w->next && isattr(w->next->type) &&
sameattr(w->next->type, w->type));
- w->aux = (before ?
- (after ? attr_Always : attr_Last) :
- (after ? attr_First : attr_Only));
+ w->aux |= (before ?
+ (after ? attr_Always : attr_Last) :
+ (after ? attr_First : attr_Only));
}
wp = w;
}