diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-12 16:30:50 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-12 16:30:50 +0000 |
commit | 03f7a9976b388e476f2850c33f22cc63572f6a48 (patch) | |
tree | 212211aed9deabbdb3b4aabe5c95343e84e0bb28 /term.c | |
parent | dd35a6706a756677ff1c2734a6eb2fad8a6784fb (diff) | |
download | mandoc-03f7a9976b388e476f2850c33f22cc63572f6a48.tar.gz |
Added -nested (doesn't do anything).
Added .%C.
.Cd is now callable.
Added .Rv -std.
Diffstat (limited to 'term.c')
-rw-r--r-- | term.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -295,6 +295,7 @@ const struct termact __termacts[MDOC_MAX] = { { termp_brq_pre, termp_brq_post }, /* Brq */ { termp_brq_pre, termp_brq_post }, /* Bro */ { NULL, NULL }, /* Brc */ + { NULL, NULL }, /* %C */ }; const struct termact *termacts = __termacts; @@ -838,6 +839,7 @@ termp_rv_pre(DECL_ARGS) p->flags |= ttypes[TTYPE_FUNC_NAME]; word(p, *node->args->argv[i].value); p->flags &= ~ttypes[TTYPE_FUNC_NAME]; + p->flags |= TERMP_NOSPACE; word(p, "() function returns the value 0 if successful;"); word(p, "otherwise the value -1 is returned and the"); |