]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_action.c
Made per-macro "now callable" COMPATIBILITY claims into a single "most macros callable".
[mandoc.git] / man_action.c
index 7f4f77890ecf39e85c9cae548b7bda28afe8065b..6c7b1e42efb3904538bc07d041b3d38506a5ea25 100644 (file)
@@ -1,27 +1,23 @@
-/* $Id: man_action.c,v 1.6 2009/03/27 14:56:15 kristaps Exp $ */
+/*     $Id: man_action.c,v 1.11 2009/06/10 20:18:43 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@openbsd.org>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
  * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
+ * purpose with or without fee is hereby granted, provided that the above
+ * copyright notice and this permission notice appear in all copies.
  *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
+ * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+ * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+ * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+ * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+ * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 #include <sys/utsname.h>
 
 #include <assert.h>
-#include <err.h>
 #include <errno.h>
-#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
@@ -62,6 +58,8 @@ const struct actions man_actions[MAN_MAX] = {
        { NULL }, /* IR */
        { NULL }, /* RI */
        { NULL }, /* br */
+       { NULL }, /* na */
+       { NULL }, /* i */
 };
 
 
@@ -111,7 +109,8 @@ post_TH(struct man *m)
        assert(n);
 
        if (NULL == (m->meta.title = strdup(n->string)))
-               return(man_verr(m, n->line, n->pos, "malloc"));
+               return(man_verr(m, n->line, n->pos, 
+                                       "memory exhausted"));
 
        /* TITLE ->MSEC<- DATE SOURCE VOL */
 
@@ -139,13 +138,15 @@ post_TH(struct man *m)
 
        if (n && (n = n->next))
                if (NULL == (m->meta.source = strdup(n->string)))
-                       return(man_verr(m, n->line, n->pos, "malloc"));
+                       return(man_verr(m, n->line, n->pos, 
+                                               "memory exhausted"));
 
        /* TITLE MSEC DATE SOURCE ->VOL<- */
 
        if (n && (n = n->next))
                if (NULL == (m->meta.vol = strdup(n->string)))
-                       return(man_verr(m, n->line, n->pos, "malloc"));
+                       return(man_verr(m, n->line, n->pos, 
+                                               "memory exhausted"));
 
        /* 
         * The end document shouldn't have the prologue macros as part