diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-08-19 09:14:50 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-08-19 09:14:50 +0000 |
commit | aade897081e194716754b33820106010e2b0ad04 (patch) | |
tree | 685ac08b6c3f40f0ad7b84d21f7c697a86909444 /man_term.c | |
parent | da55485ae1f9a11536b11b9af51a3964d20caa7b (diff) | |
download | mandoc-aade897081e194716754b33820106010e2b0ad04.tar.gz |
Added RS/RE macro pair (had to adjust closing rules, sec/ssec/rs/par).
Diffstat (limited to 'man_term.c')
-rw-r--r-- | man_term.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -100,6 +100,8 @@ static const struct termact termacts[MAN_MAX] = { { pre_nf, NULL }, /* nf */ { pre_fi, NULL }, /* fi */ { pre_r, NULL }, /* r */ + { NULL, NULL }, /* RE */ + { NULL, NULL }, /* RS */ }; #ifdef __linux__ |