diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-04-11 17:10:36 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-04-11 17:10:36 +0000 |
commit | 1b95341c3f6bb721edfdd84de159b61651136659 (patch) | |
tree | e6588e7ff9381a9e4f1ed1977679618a6ef4a548 /usr.bin/mandoc/roff.h | |
parent | 0fd0c4122540b8650b6a674c1deb83dea65d2d53 (diff) |
preserve comments before .Dd when converting mdoc(7) to man(7)
with mandoc -Tman; suggested by Thomas Klausner <wiz at NetBSD>
Diffstat (limited to 'usr.bin/mandoc/roff.h')
-rw-r--r-- | usr.bin/mandoc/roff.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/roff.h b/usr.bin/mandoc/roff.h index 2be8356de08..a13d9662bf1 100644 --- a/usr.bin/mandoc/roff.h +++ b/usr.bin/mandoc/roff.h @@ -1,4 +1,4 @@ -/* $OpenBSD: roff.h,v 1.40 2017/07/08 14:51:01 schwarze Exp $ */ +/* $OpenBSD: roff.h,v 1.41 2018/04/11 17:10:35 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -61,6 +61,7 @@ enum roff_type { ROFFT_TAIL, ROFFT_ELEM, ROFFT_TEXT, + ROFFT_COMMENT, ROFFT_TBL, ROFFT_EQN }; |