From 18171f661f78e141d24c3990c5db4346213d440b Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 7 Nov 1999 16:14:23 +0000 Subject: Added \q{...} for quoted text [originally from svn r274] --- misc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'misc.c') 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; } -- cgit v1.1