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 216b87e7 for ; Thu, 20 Feb 2020 17:56:12 -0500 (EST) Date: Thu, 20 Feb 2020 17:56:12 -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: indented paragraph macros need a space character before X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Message-ID: Log Message: ----------- bugfix: indented paragraph macros need a space character before the width argument Modified Files: -------------- mandoc: mdoc_man.c Revision Data ------------- Index: mdoc_man.c =================================================================== RCS file: /home/cvs/mandoc/mandoc/mdoc_man.c,v retrieving revision 1.134 retrieving revision 1.135 diff -Lmdoc_man.c -Lmdoc_man.c -u -p -r1.134 -r1.135 --- mdoc_man.c +++ mdoc_man.c @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2011-2019 Ingo Schwarze + * Copyright (c) 2011-2020 Ingo Schwarze * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -583,9 +583,9 @@ print_width(const struct mdoc_bl *bl, co /* Set up the current list. */ if (chsz > sz && bl->type != LIST_tag) - print_block(".HP", 0); + print_block(".HP", MMAN_spc); else { - print_block(".TP", 0); + print_block(".TP", MMAN_spc); remain = sz + 2; } if (numeric) { -- To unsubscribe send an email to source+unsubscribe@mandoc.bsd.lv