diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-30 13:43:53 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-30 13:43:53 +0000 |
commit | 66fbe2667c8cf108e8878d8fb7091f0659bc477c (patch) | |
tree | 6f9f386fcf6f30b7d3cd1bd82d883c5a7fce2b92 /mdoc.c | |
parent | 38b49bee113edcc4afc7b96453d5f3eb3ef7b965 (diff) | |
download | mandoc-66fbe2667c8cf108e8878d8fb7091f0659bc477c.tar.gz |
*** empty log message ***
Diffstat (limited to 'mdoc.c')
-rw-r--r-- | mdoc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -105,7 +105,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { macro_text, MDOC_CALLABLE }, /* Dv */ { macro_text, MDOC_CALLABLE }, /* Er */ { macro_text, MDOC_CALLABLE }, /* Ev */ - { NULL, 0 }, /* Ex */ + { macro_constant_argv, 0 }, /* Ex */ { macro_text, MDOC_CALLABLE }, /* Fa */ { NULL, 0 }, /* Fd */ { macro_text, MDOC_CALLABLE }, /* Fl */ @@ -119,7 +119,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { NULL, 0 }, /* Op */ { NULL, 0 }, /* Ot */ { macro_text, MDOC_CALLABLE }, /* Pa */ - { NULL, 0 }, /* Rv */ + { macro_constant_argv, 0 }, /* Rv */ { NULL, 0 }, /* St */ { macro_text, MDOC_CALLABLE }, /* Va */ { macro_text, MDOC_CALLABLE }, /* Vt */ |