]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_macro.c
Fixed STRUCTURE repeat (schwarze@openbsd.org).
[mandoc.git] / man_macro.c
index 88902dc46d6289457aedc1b22d3bf2794f30f339..e63657e1293106df22731e64885df1a38edc1f5b 100644 (file)
@@ -1,6 +1,6 @@
-/*     $Id: man_macro.c,v 1.14 2009/04/12 19:45:26 kristaps Exp $ */
+/*     $Id: man_macro.c,v 1.17 2009/06/18 10:53:58 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
@@ -28,7 +28,7 @@ static        int              man_args(struct man *, int,
                                int *, char *, char **);
 
 static int man_flags[MAN_MAX] = {
-       0, /* __ */
+       0, /* br */
        0, /* TH */
        0, /* SH */
        0, /* SS */
@@ -49,7 +49,6 @@ static        int man_flags[MAN_MAX] = {
        FL_NLINE, /* I */
        FL_NLINE, /* IR */
        FL_NLINE, /* RI */
-       0, /* br */
        0, /* na */
        FL_NLINE, /* i */
 };
@@ -83,16 +82,14 @@ man_macro(struct man *man, int tok, int line,
 
        if (n == man->last && (FL_NLINE & man_flags[tok])) {
                if (MAN_NLINE & man->flags) 
-                       return(man_verr(man, line, ppos, 
-                               "next-line scope already open"));
+                       return(man_perr(man, line, ppos, WLNSCOPE));
                man->flags |= MAN_NLINE;
                return(1);
        }
 
        if (FL_TLINE & man_flags[tok]) {
                if (MAN_NLINE & man->flags) 
-                       return(man_verr(man, line, ppos, 
-                               "next-line scope already open"));
+                       return(man_perr(man, line, ppos, WLNSCOPE));
                man->flags |= MAN_NLINE;
                return(1);
        }
@@ -187,7 +184,7 @@ man_args(struct man *m, int line,
                if (buf[*pos])
                        return(1);
 
-               if ( ! man_vwarn(m, line, *pos, "trailing spaces"))
+               if ( ! man_pwarn(m, line, *pos, WTSPACE))
                        return(-1);
 
                return(1);
@@ -205,7 +202,7 @@ man_args(struct man *m, int line,
                (*pos)++;
 
        if (0 == buf[*pos]) {
-               if ( ! man_vwarn(m, line, *pos, "unterminated quote"))
+               if ( ! man_pwarn(m, line, *pos, WTQUOTE))
                        return(-1);
                return(1);
        }
@@ -220,7 +217,7 @@ man_args(struct man *m, int line,
        if (buf[*pos])
                return(1);
 
-       if ( ! man_vwarn(m, line, *pos, "trailing spaces"))
+       if ( ! man_pwarn(m, line, *pos, WTSPACE))
                return(-1);
        return(1);
 }