summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-10-05 22:21:20 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-10-05 22:21:20 +0000
commit42f5a4cc132dc305b6ded5b24570986d7e25a176 (patch)
tree8409bb7aae5d2485cf29ca8c6d82d3a9570a49fd
parent4c5f03bee2d18de118156e3a66459b0fd114dc31 (diff)
downloadmandoc-42f5a4cc132dc305b6ded5b24570986d7e25a176.tar.gz
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.
-rw-r--r--roff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/roff.c b/roff.c
index b1302e02..e91efc8e 100644
--- a/roff.c
+++ b/roff.c
@@ -74,8 +74,8 @@ enum rofft {
};
enum roffrule {
- ROFFRULE_ALLOW,
- ROFFRULE_DENY
+ ROFFRULE_DENY,
+ ROFFRULE_ALLOW
};
/*