* mandoc: bugfix: indented paragraph macros need a space character before
@ 2020-02-20 22:56 schwarze
0 siblings, 0 replies; only message in thread
From: schwarze @ 2020-02-20 22:56 UTC (permalink / raw)
To: source
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 <schwarze@openbsd.org>
+ * Copyright (c) 2011-2020 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
@@ -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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2020-02-20 22:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-20 22:56 mandoc: bugfix: indented paragraph macros need a space character before schwarze
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).