summaryrefslogtreecommitdiffstats
path: root/mlg.c
diff options
context:
space:
mode:
Diffstat (limited to 'mlg.c')
-rw-r--r--mlg.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/mlg.c b/mlg.c
index 2ba7101b..8be61e3e 100644
--- a/mlg.c
+++ b/mlg.c
@@ -447,6 +447,17 @@ mlg_roffspecial(void *arg, int tok, const char *start, char **more)
return(0);
break;
case (ROFF_Fn):
+ abort(); /* TODO */
+ break;
+ case (ROFF_Nm):
+ assert(*more);
+ if ( ! mlg_begintag(p, MD_NS_INLINE, tok, NULL, NULL))
+ return(0);
+ if ( ! ml_puts(p->mbuf, *more++, &p->pos))
+ return(0);
+ assert(NULL == *more);
+ if ( ! mlg_endtag(p, MD_NS_INLINE, tok))
+ return(0);
break;
case (ROFF_Ns):
p->flags |= ML_OVERRIDE_ONE;