]> git.cameronkatri.com Git - mandoc.git/blobdiff - mdoc_strings.c
Fix which escapes are used to format \".
[mandoc.git] / mdoc_strings.c
index 2b669e29408e7418e9053b65e7f8b70b5aa214db..c05807f1b63247a938c2bce709b6dc8746782d78 100644 (file)
@@ -1,6 +1,6 @@
-/*     $Id: mdoc_strings.c,v 1.20 2010/05/15 08:54:04 schwarze Exp $ */
+/*     $Id: mdoc_strings.c,v 1.23 2010/06/19 20:46:28 kristaps Exp $ */
 /*
 /*
- * Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
+ * Copyright (c) 2008 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
@@ -26,6 +26,7 @@
 #include <string.h>
 #include <time.h>
 
 #include <string.h>
 #include <time.h>
 
+#include "mandoc.h"
 #include "libmdoc.h"
 
 static const char * const secnames[SEC__MAX] = {
 #include "libmdoc.h"
 
 static const char * const secnames[SEC__MAX] = {
@@ -97,7 +98,7 @@ mdoc_isdelim(const char *p)
 {
 
        if ('\0' == p[0])
 {
 
        if ('\0' == p[0])
-               return(0);
+               return(DELIM_NONE);
        if ('\0' == p[1])
                return(mdoc_iscdelim(p[0]));
 
        if ('\0' == p[1])
                return(mdoc_iscdelim(p[0]));