From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (fantadrom.bsd.lv [local]) by fantadrom.bsd.lv (OpenSMTPD) with ESMTPA id 15b3b461 for ; Sat, 18 Aug 2018 10:14:02 -0500 (EST) Date: Sat, 18 Aug 2018 10:14:02 -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: end of sentence detection after .ME and .UE, useful for some GNU X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-Id: Log Message: ----------- end of sentence detection after .ME and .UE, useful for some GNU manuals Modified Files: -------------- mandoc: man_macro.c Revision Data ------------- Index: man_macro.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/man_macro.c,v retrieving revision 1.129 retrieving revision 1.130 diff -Lman_macro.c -Lman_macro.c -u -p -r1.129 -r1.130 --- man_macro.c +++ man_macro.c @@ -262,6 +262,8 @@ blk_close(MACRO_PROT_ARGS) if (buf[*pos] != '\0') { roff_word_alloc(man, line, ppos, buf + *pos); man->last->flags |= NODE_DELIMC; + if (mandoc_eos(man->last->string, strlen(man->last->string))) + man->last->flags |= NODE_EOS; } /* Move a trailing paragraph behind the block. */ -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv