diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-29 19:25:29 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2008-12-29 19:25:29 +0000 |
commit | 38b49bee113edcc4afc7b96453d5f3eb3ef7b965 (patch) | |
tree | dc7d400651ec5877058b59ae50ba1718f876eabe /mdoc.c | |
parent | f6c6b91bd1d5c314c866ec4cb71f4ff2573fc2f2 (diff) | |
download | mandoc-38b49bee113edcc4afc7b96453d5f3eb3ef7b965.tar.gz |
*** empty log message ***
Diffstat (limited to 'mdoc.c')
-rw-r--r-- | mdoc.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -114,7 +114,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { macro_text, MDOC_CALLABLE }, /* Ic */ { NULL, 0 }, /* In */ { macro_text, MDOC_CALLABLE }, /* Li */ - { NULL, 0 }, /* Nd */ + { macro_constant, 0 }, /* Nd */ { NULL, 0 }, /* Nm */ { NULL, 0 }, /* Op */ { NULL, 0 }, /* Ot */ @@ -173,8 +173,8 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { NULL, 0 }, /* So */ { macro_scoped_pline, MDOC_CALLABLE }, /* Sq */ { NULL, 0 }, /* Sm */ - { NULL, 0 }, /* Sx */ - { NULL, 0 }, /* Sy */ + { macro_text, MDOC_CALLABLE }, /* Sx */ + { macro_text, MDOC_CALLABLE }, /* Sy */ { macro_text, MDOC_CALLABLE }, /* Tn */ { macro_constant_delimited, 0 }, /* Ux */ { NULL, 0 }, /* Xc */ @@ -186,7 +186,7 @@ const struct mdoc_macro __mdoc_macros[MDOC_MAX] = { { NULL, 0 }, /* Bk */ { NULL, 0 }, /* Ek */ { macro_constant, 0 }, /* Bt */ - { NULL, 0 }, /* Hf */ + { macro_constant, 0 }, /* Hf */ { NULL, 0 }, /* Fr */ { macro_constant, 0 }, /* Ud */ }; |