diff options
author | 2017-04-14 18:24:15 +0000 | |
---|---|---|
committer | 2017-04-14 18:24:15 +0000 | |
commit | f6fe732f31aefc344ea03cc33ca7402406be1aa9 (patch) | |
tree | a17913f27dd376bdd4cf46ff0c2e02be24fbd7cf /usr.bin/mandoc/mdoc_man.c | |
parent | Do not make the colon after the .Lk link text italic. (diff) | |
download | wireguard-openbsd-f6fe732f31aefc344ea03cc33ca7402406be1aa9.tar.xz wireguard-openbsd-f6fe732f31aefc344ea03cc33ca7402406be1aa9.zip |
Do not make the colon after the .Lk link text italic.
I just pushed the same change to GNU troff.
Diffstat (limited to 'usr.bin/mandoc/mdoc_man.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_man.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_man.c b/usr.bin/mandoc/mdoc_man.c index 36f09ae60fd..59690aa9df5 100644 --- a/usr.bin/mandoc/mdoc_man.c +++ b/usr.bin/mandoc/mdoc_man.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mdoc_man.c,v 1.103 2017/03/04 21:41:13 schwarze Exp $ */ +/* $OpenBSD: mdoc_man.c,v 1.104 2017/04/14 18:24:15 schwarze Exp $ */ /* * Copyright (c) 2011-2017 Ingo Schwarze <schwarze@openbsd.org> * @@ -1472,8 +1472,8 @@ pre_lk(DECL_ARGS) print_word(descr->string); descr = descr->next; } - print_word(":"); font_pop(); + print_word(":"); } font_push('B'); |