diff options
author | 2013-08-05 14:32:56 +0000 | |
---|---|---|
committer | 2013-08-05 14:32:56 +0000 | |
commit | 4e32ec8f1667dc26d7d6d3ead88f7de774b551ef (patch) | |
tree | 0f5abaef4d414074ca198d3c04a4a98e7372543b /usr.bin/mandoc/mdoc_validate.c | |
parent | rpc.bootparamd(8) is needed on all hardware platforms for true diskless (diff) | |
download | wireguard-openbsd-4e32ec8f1667dc26d7d6d3ead88f7de774b551ef.tar.xz wireguard-openbsd-4e32ec8f1667dc26d7d6d3ead88f7de774b551ef.zip |
Put .%C before .%D in .Rs output
because that's the usual order in formal citations.
My patch that was accepted into groff by Werner Lemberg
uses the same order, so keep groff and mandoc consistent.
Committing now because jmc@ already starts to rely on the .%C macro,
see for example /usr/src/usr.bin/bdes/bdes.1 rev. 1.11.
Diffstat (limited to 'usr.bin/mandoc/mdoc_validate.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_validate.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mandoc/mdoc_validate.c b/usr.bin/mandoc/mdoc_validate.c index bbf4fa4b365..621eeefd56e 100644 --- a/usr.bin/mandoc/mdoc_validate.c +++ b/usr.bin/mandoc/mdoc_validate.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_validate.c,v 1.109 2012/11/17 00:25:20 schwarze Exp $ */ +/* $Id: mdoc_validate.c,v 1.110 2013/08/05 14:32:56 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010, 2011, 2012 Ingo Schwarze <schwarze@openbsd.org> @@ -315,9 +315,9 @@ static const enum mdoct rsord[RSORD_MAX] = { MDOC__U, MDOC__P, MDOC__Q, + MDOC__C, MDOC__D, - MDOC__O, - MDOC__C + MDOC__O }; static const char * const secnames[SEC__MAX] = { |