summaryrefslogtreecommitdiffstats
path: root/mdoc_macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-04-06 07:17:51 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-04-06 07:17:51 +0000
commit58e74b4a43bf6e0d03cc6ad02bc4a0c771fb95e8 (patch)
tree180fb7ed589fac753971d71f65d1850a57ea6dc8 /mdoc_macro.c
parent843605c51859edf6d798bd963d4dd6c5790732fe (diff)
downloadmandoc-58e74b4a43bf6e0d03cc6ad02bc4a0c771fb95e8.tar.gz
Fix mdoc bug found by Claus Assmann: `Pf' should be callable.
Diffstat (limited to 'mdoc_macro.c')
-rw-r--r--mdoc_macro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c
index 40f70354..8b38efde 100644
--- a/mdoc_macro.c
+++ b/mdoc_macro.c
@@ -139,7 +139,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ in_line_argn, MDOC_CALLABLE | MDOC_PARSED }, /* Nx */
{ in_line_argn, MDOC_CALLABLE | MDOC_PARSED }, /* Ox */
{ blk_exp_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Pc */
- { in_line_argn, MDOC_PARSED | MDOC_IGNDELIM }, /* Pf */
+ { in_line_argn, MDOC_CALLABLE | MDOC_PARSED | MDOC_IGNDELIM }, /* Pf */
{ blk_part_exp, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Po */
{ blk_part_imp, MDOC_CALLABLE | MDOC_PARSED }, /* Pq */
{ blk_exp_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Qc */