diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2012-07-11 16:55:30 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2012-07-11 16:55:30 +0000 |
commit | fe26b978edadb50ff2cd57df674b60c4dae810ce (patch) | |
tree | c91c1b5a55adf06633d6df8721225ed7378319c6 /usr.bin/mandoc/mdoc_term.c | |
parent | 9c7fd97e2271d92e7b9291b1706c2713f6484585 (diff) |
fix position and formatting of %U
Diffstat (limited to 'usr.bin/mandoc/mdoc_term.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_term.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/mdoc_term.c b/usr.bin/mandoc/mdoc_term.c index ca3cfe56912..8a0f571d9c7 100644 --- a/usr.bin/mandoc/mdoc_term.c +++ b/usr.bin/mandoc/mdoc_term.c @@ -1,4 +1,4 @@ -/* $Id: mdoc_term.c,v 1.144 2012/07/10 14:35:57 schwarze Exp $ */ +/* $Id: mdoc_term.c,v 1.145 2012/07/11 16:55:29 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2010, 2012 Ingo Schwarze <schwarze@openbsd.org> @@ -238,7 +238,7 @@ static const struct termact termacts[MDOC_MAX] = { { NULL, termp____post }, /* %Q */ { termp_sp_pre, NULL }, /* br */ { termp_sp_pre, NULL }, /* sp */ - { termp_under_pre, termp____post }, /* %U */ + { NULL, termp____post }, /* %U */ { NULL, NULL }, /* Ta */ }; |