diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-24 16:16:45 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-02-24 16:16:45 +0000 |
commit | 67f1948113ec6a04bab25fb2e4c0a6914ddc6c14 (patch) | |
tree | d21937a396c15f699ae0dfaeb53d43ac673946fb /macro.c | |
parent | 0a74490582c1c8f34566e9e4b5b980d88faa8da8 (diff) | |
download | mandoc-67f1948113ec6a04bab25fb2e4c0a6914ddc6c14.tar.gz |
Raft of mdocterm callbacks in place.
Fixed Fo/Fc handling in validate/mdocterm.
Diffstat (limited to 'macro.c')
-rw-r--r-- | macro.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -170,8 +170,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Xo */ /* XXX - .Fo supposed to be (but isn't) callable. */ { macro_scoped, MDOC_EXPLICIT }, /* Fo */ - /* XXX - .Fc supposed to be (but isn't) callable. */ - { macro_scoped_close, MDOC_EXPLICIT }, /* Fc */ + { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Fc */ { macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Oo */ { macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Oc */ { macro_scoped, MDOC_EXPLICIT }, /* Bk */ |