]> git.cameronkatri.com Git - mandoc.git/commitdiff
ROFFRULE_ALLOW = 0, ROFFRULE_DENY = 1 was confusing,
authorIngo Schwarze <schwarze@openbsd.org>
Sat, 5 Oct 2013 22:21:20 +0000 (22:21 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Sat, 5 Oct 2013 22:21:20 +0000 (22:21 +0000)
so exchange the two entries in enum roffrule; no functional change;
from Christos Zoulas, NetBSD rev. 1.11, April 4, 2013.

roff.c

diff --git a/roff.c b/roff.c
index 73271616ce4d1d0f9a74d4d153e655b6d2fe321e..f92614c8730f43fa5335a2fc8ce3282935f5e75f 100644 (file)
--- a/roff.c
+++ b/roff.c
@@ -1,4 +1,4 @@
-/*     $Id: roff.c,v 1.182 2013/10/05 22:19:10 schwarze Exp $ */
+/*     $Id: roff.c,v 1.183 2013/10/05 22:21:20 schwarze Exp $ */
 /*
  * Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010, 2011, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -74,8 +74,8 @@ enum  rofft {
 };
 
 enum   roffrule {
-       ROFFRULE_ALLOW,
-       ROFFRULE_DENY
+       ROFFRULE_DENY,
+       ROFFRULE_ALLOW
 };
 
 /*