diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-18 02:08:27 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2018-08-18 02:08:27 +0000 |
commit | 0dca371a35715658277a48885367f1eb97158c75 (patch) | |
tree | f0e4615581362ce6003973c6573dc0743f516feb /roff.h | |
parent | a55868d2cb7c07237689f307d3a55b33b257de09 (diff) | |
download | mandoc-0dca371a35715658277a48885367f1eb97158c75.tar.gz |
implement the GNU man-ext .SY/.YS (synopsis block) macro in man(7),
used in most manual pages of the groff package
Diffstat (limited to 'roff.h')
-rw-r--r-- | roff.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* $Id$ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> - * Copyright (c) 2013, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org> + * Copyright (c) 2013,2014,2015,2017,2018 Ingo Schwarze <schwarze@openbsd.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -464,6 +464,8 @@ enum roff_tok { MAN_PD, MAN_AT, MAN_in, + MAN_SY, + MAN_YS, MAN_OP, MAN_EX, MAN_EE, |