summaryrefslogtreecommitdiff
path: root/misc.c
diff options
context:
space:
mode:
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;
}