summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--mdoc_action.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/mdoc_action.c b/mdoc_action.c
index 9f8035b3..26b1940b 100644
--- a/mdoc_action.c
+++ b/mdoc_action.c
@@ -1,4 +1,4 @@
-/* $Id: mdoc_action.c,v 1.6 2009/04/06 08:53:12 kristaps Exp $ */
+/* $Id: mdoc_action.c,v 1.7 2009/04/06 09:48:35 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
*
@@ -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);
}