summaryrefslogtreecommitdiffstats
path: root/roff.c
diff options
context:
space:
mode:
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/roff.c b/roff.c
index e79de28d..88f8f060 100644
--- a/roff.c
+++ b/roff.c
@@ -157,7 +157,7 @@ static void
roff_alloc1(struct roff *r)
{
- memset(r, 0, sizeof(struct roff));
+ /* Do nothing for now. */
}
@@ -301,9 +301,11 @@ static enum rofferr
roff_new_close(ROFF_ARGS)
{
+ /*
if ( ! (*r->msg)(MANDOCERR_NOSCOPE, r->data, ln, ppos, NULL))
return(ROFF_ERR);
- return(ROFF_IGN);
+ */
+ return(ROFF_CONT);
}