From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (mandoc.bsd.lv [local]) by mandoc.bsd.lv (OpenSMTPD) with ESMTPA id aabb3fad for ; Wed, 19 Feb 2020 19:29:47 -0500 (EST) Date: Wed, 19 Feb 2020 19:29:47 -0500 (EST) X-Mailinglist: mandoc-source Reply-To: source@mandoc.bsd.lv MIME-Version: 1.0 From: schwarze@mandoc.bsd.lv To: source@mandoc.bsd.lv Subject: mandoc: bugfix: .Tg must be ignored completely in these output modes X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: Log Message: ----------- bugfix: .Tg must be ignored completely in these output modes Modified Files: -------------- mandoc: mdoc_man.c mdoc_markdown.c Revision Data ------------- Index: mdoc_markdown.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/mdoc_markdown.c,v retrieving revision 1.32 retrieving revision 1.33 diff -Lmdoc_markdown.c -Lmdoc_markdown.c -u -p -r1.32 -r1.33 --- mdoc_markdown.c +++ mdoc_markdown.c @@ -226,7 +226,7 @@ static const struct md_act md_acts[MDOC_ { NULL, NULL, md_post_pc, NULL, NULL }, /* %Q */ { NULL, md_pre_Lk, md_post_pc, NULL, NULL }, /* %U */ { NULL, NULL, NULL, NULL, NULL }, /* Ta */ - { NULL, NULL, NULL, NULL, NULL }, /* Tg */ + { NULL, md_pre_skip, NULL, NULL, NULL }, /* Tg */ }; static const struct md_act *md_act(enum roff_tok); Index: mdoc_man.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/mdoc_man.c,v retrieving revision 1.133 retrieving revision 1.134 diff -Lmdoc_man.c -Lmdoc_man.c -u -p -r1.133 -r1.134 --- mdoc_man.c +++ mdoc_man.c @@ -262,7 +262,7 @@ static const struct mdoc_man_act mdoc_ma { NULL, NULL, post_percent, NULL, NULL }, /* %Q */ { NULL, NULL, post_percent, NULL, NULL }, /* %U */ { NULL, NULL, NULL, NULL, NULL }, /* Ta */ - { NULL, NULL, NULL, NULL, NULL }, /* Tg */ + { NULL, pre_skip, NULL, NULL, NULL }, /* Tg */ }; static const struct mdoc_man_act *mdoc_man_act(enum roff_tok); -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv