]> git.cameronkatri.com Git - mandoc.git/blobdiff - man_argv.c
Correctly print `Lk' arguments in -Tascii. Issue raised by Aldis Berzoja.
[mandoc.git] / man_argv.c
index 279edf955879d54ad51b5b4679abd6c09ef61c2c..44b9a25c3a7856446e857675d9a6acd176cd6231 100644 (file)
@@ -1,6 +1,6 @@
-/*     $Id: man_argv.c,v 1.2 2010/01/01 17:14:28 kristaps Exp $ */
+/*     $Id: man_argv.c,v 1.4 2010/06/19 20:46:28 kristaps Exp $ */
 /*
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -24,6 +24,7 @@
 #include <stdlib.h>
 #include <string.h>
 
 #include <stdlib.h>
 #include <string.h>
 
+#include "mandoc.h"
 #include "libman.h"
 
 
 #include "libman.h"
 
 
@@ -57,7 +58,7 @@ man_args(struct man *m, int line, int *pos, char *buf, char **v)
                }
 
                if (0 == buf[*pos]) {
                }
 
                if (0 == buf[*pos]) {
-                       if ( ! man_pwarn(m, line, *pos, WTQUOTE))
+                       if ( ! man_pmsg(m, line, *pos, MANDOCERR_BADQUOTE))
                                return(ARGS_ERROR);
                        return(ARGS_QWORD);
                }
                                return(ARGS_ERROR);
                        return(ARGS_QWORD);
                }
@@ -71,7 +72,7 @@ man_args(struct man *m, int line, int *pos, char *buf, char **v)
                        (*pos)++;
 
                if (0 == buf[*pos])
                        (*pos)++;
 
                if (0 == buf[*pos])
-                       if ( ! man_pwarn(m, line, *pos, WTSPACE))
+                       if ( ! man_pmsg(m, line, *pos, MANDOCERR_EOLNSPACE))
                                return(ARGS_ERROR);
 
                return(ARGS_QWORD);
                                return(ARGS_ERROR);
 
                return(ARGS_QWORD);
@@ -95,7 +96,7 @@ man_args(struct man *m, int line, int *pos, char *buf, char **v)
                (*pos)++;
 
        if (0 == buf[*pos])
                (*pos)++;
 
        if (0 == buf[*pos])
-               if ( ! man_pwarn(m, line, *pos, WTSPACE))
+               if ( ! man_pmsg(m, line, *pos, MANDOCERR_EOLNSPACE))
                        return(ARGS_ERROR);
 
        return(ARGS_WORD);
                        return(ARGS_ERROR);
 
        return(ARGS_WORD);