* mdocml: ROFFRULE_ALLOW = 0, ROFFRULE_DENY = 1 was confusing, so exchange
@ 2013-10-05 22:21 schwarze
0 siblings, 0 replies; only message in thread
From: schwarze @ 2013-10-05 22:21 UTC (permalink / raw)
To: source
Log Message:
-----------
ROFFRULE_ALLOW = 0, ROFFRULE_DENY = 1 was confusing,
so exchange the two entries in enum roffrule; no functional change;
from Christos Zoulas, NetBSD rev. 1.11, April 4, 2013.
Modified Files:
--------------
mdocml:
roff.c
Revision Data
-------------
Index: roff.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/roff.c,v
retrieving revision 1.182
retrieving revision 1.183
diff -Lroff.c -Lroff.c -u -p -r1.182 -r1.183
--- roff.c
+++ roff.c
@@ -74,8 +74,8 @@ enum rofft {
};
enum roffrule {
- ROFFRULE_ALLOW,
- ROFFRULE_DENY
+ ROFFRULE_DENY,
+ ROFFRULE_ALLOW
};
/*
--
To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2013-10-05 22:21 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-10-05 22:21 mdocml: ROFFRULE_ALLOW = 0, ROFFRULE_DENY = 1 was confusing, so exchange 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).