diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-04-06 09:48:35 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-04-06 09:48:35 +0000 |
commit | e18fa78f8bbfb1391d37d59b51419e66155ddd7c (patch) | |
tree | 50f7ce0d1786ad48e292e1a0e924e97e0df7b2a5 | |
parent | c3934cee2eb1a2e278a41822c83057c79613eaf4 (diff) | |
download | mandoc-e18fa78f8bbfb1391d37d59b51419e66155ddd7c.tar.gz |
Removed forgotten printfs.
-rw-r--r-- | mdoc_action.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mdoc_action.c b/mdoc_action.c index 49d92b19..001e0ecd 100644 --- a/mdoc_action.c +++ b/mdoc_action.c @@ -344,19 +344,13 @@ post_nm(POST_ARGS) if (m->meta.name) return(1); - printf("bar\n"); - buf[0] = 0; if ( ! concat(m, m->last->child, buf, sizeof(buf))) return(0); - printf("foo\n"); - if (NULL == (m->meta.name = strdup(buf))) return(verr(m, EMALLOC)); - printf("baz\n"); - return(1); } |