source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mandoc: fix typo in TERMP_MULTICOL flag test; patch from florian@, found
@ 2017-07-28 14:26 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2017-07-28 14:26 UTC (permalink / raw)
  To: source

Log Message:
-----------
fix typo in TERMP_MULTICOL flag test;
patch from florian@, found with clang

Modified Files:
--------------
    mandoc:
        term.c

Revision Data
-------------
Index: term.c
===================================================================
RCS file: /home/cvs/mandoc/mandoc/term.c,v
retrieving revision 1.273
retrieving revision 1.274
diff -Lterm.c -Lterm.c -u -p -r1.273 -r1.274
--- term.c
+++ term.c
@@ -129,7 +129,7 @@ term_flushln(struct termp *p)
 	    p->maxrmargin - p->viscol - vbl : 0;
 	vis = vend = 0;
 
-	if ((p->flags && TERMP_MULTICOL) == 0)
+	if ((p->flags & TERMP_MULTICOL) == 0)
 		p->tcol->col = 0;
 	while (p->tcol->col < p->tcol->lastcol) {
 
--
 To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-07-28 14:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-28 14:26 mandoc: fix typo in TERMP_MULTICOL flag test; patch from florian@, found schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).