From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id r95MLKAe019042 for ; Sat, 5 Oct 2013 18:21:20 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id r95MLKHC020728; Sat, 5 Oct 2013 18:21:20 -0400 (EDT) Date: Sat, 5 Oct 2013 18:21:20 -0400 (EDT) Message-Id: <201310052221.r95MLKHC020728@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: ROFFRULE_ALLOW = 0, ROFFRULE_DENY = 1 was confusing, so exchange X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 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