aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/macro.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-12 16:30:50 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-12 16:30:50 +0000
commit073b729fad16967c5cb97cb3aa314b058e3de113 (patch)
tree7226a621aa8e2d22ab5af821cfdf34cc7b017ba9 /macro.c
parent58ec1de730c493d7dac46e9e8c77b5551fcc8df3 (diff)
downloadmandoc-073b729fad16967c5cb97cb3aa314b058e3de113.tar.gz
mandoc-073b729fad16967c5cb97cb3aa314b058e3de113.tar.zst
mandoc-073b729fad16967c5cb97cb3aa314b058e3de113.zip
Added -nested (doesn't do anything).
Added .%C. .Cd is now callable. Added .Rv -std.
Diffstat (limited to 'macro.c')
-rw-r--r--macro.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/macro.c b/macro.c
index 5920d2ef..20aac15b 100644
--- a/macro.c
+++ b/macro.c
@@ -1,4 +1,4 @@
-/* $Id: macro.c,v 1.69 2009/03/12 06:38:22 kristaps Exp $ */
+/* $Id: macro.c,v 1.70 2009/03/12 16:30:50 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -89,7 +89,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ad */
{ macro_text, MDOC_PARSED }, /* An */
{ macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Ar */
- { macro_constant, 0 }, /* Cd */
+ { macro_constant, MDOC_CALLABLE }, /* Cd */
{ macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Cm */
{ macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Dv */
{ macro_text, MDOC_CALLABLE | MDOC_PARSED }, /* Er */
@@ -188,6 +188,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = {
{ macro_scoped_line, MDOC_CALLABLE | MDOC_PARSED }, /* Brq */
{ macro_constant_scoped, MDOC_CALLABLE | MDOC_PARSED | MDOC_EXPLICIT }, /* Bro */
{ macro_scoped_close, MDOC_EXPLICIT | MDOC_CALLABLE | MDOC_PARSED }, /* Brc */
+ { macro_constant, 0 }, /* %C */
};
const struct mdoc_macro * const mdoc_macros = __mdoc_macros;
@@ -1393,8 +1394,6 @@ macro_constant(MACRO_PROT_ARGS)
struct mdoc_arg *arg;
char *p;
- assert( ! (MDOC_CALLABLE & mdoc_macros[tok].flags));
-
arg = NULL;
for (;;) {