diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2020-02-20 22:55:11 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2020-02-20 22:55:11 +0000 |
commit | 92e4994bc67d1f9fbf05c66e5ee08d54af092986 (patch) | |
tree | 95a19188789107f67b380f4e6241ed1329a86a7e /usr.bin/mandoc | |
parent | bdaa62ec963226ed1d9d98833a2a8fe50b4bc79d (diff) |
bugfix: indented paragraph macros need a space character
before the width argument
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/mdoc_man.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/mandoc/mdoc_man.c b/usr.bin/mandoc/mdoc_man.c index 1e6ce2e8941..7fde52b78cc 100644 --- a/usr.bin/mandoc/mdoc_man.c +++ b/usr.bin/mandoc/mdoc_man.c @@ -1,6 +1,6 @@ -/* $OpenBSD: mdoc_man.c,v 1.132 2020/02/20 00:29:10 schwarze Exp $ */ +/* $OpenBSD: mdoc_man.c,v 1.133 2020/02/20 22:55:10 schwarze Exp $ */ /* - * 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 @@ -581,9 +581,9 @@ print_width(const struct mdoc_bl *bl, const struct roff_node *child) /* 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) { |