diff options
| author | Simon Tatham <anakin@pobox.com> | 1999-11-07 16:14:23 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 1999-11-07 16:14:23 +0000 |
| commit | 18171f661f78e141d24c3990c5db4346213d440b (patch) | |
| tree | 3db6801ddc54bd721bb56310df555851409020ef /misc.c | |
| parent | 06bbfc1a23c38d623c88adffb681e89a367ab5c5 (diff) | |
| download | halibut-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.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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; } |