]> git.cameronkatri.com Git - mandoc.git/commitdiff
Added `sp' support to libman.
authorKristaps Dzonsons <kristaps@bsd.lv>
Fri, 24 Jul 2009 20:22:24 +0000 (20:22 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Fri, 24 Jul 2009 20:22:24 +0000 (20:22 +0000)
Added `\c' to known escapes (only used in man, but still).

libman.h
man.c
man.h
man_action.c
man_macro.c
man_term.c
man_validate.c
mandoc.c

index af72cd967d9a3afab85a52aedc6b9a06b42a0c82..8edc15a393f86079804b6e04e6f2e909a74c198f 100644 (file)
--- a/libman.h
+++ b/libman.h
@@ -1,4 +1,4 @@
-/*     $Id: libman.h,v 1.14 2009/07/07 09:35:40 kristaps Exp $ */
+/*     $Id: libman.h,v 1.15 2009/07/24 20:22:24 kristaps Exp $ */
 /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -49,6 +49,7 @@ enum  merr {
        WNODATA,
        WNOTITLE,
        WESCAPE,
+       WNUMFMT,
        WERRMAX
 };
 
diff --git a/man.c b/man.c
index c27ddaf8002c4e527f5984907d2f21be24a31858..b39ae9e1d6934ab1178338c0a37ec78eb416faaa 100644 (file)
--- a/man.c
+++ b/man.c
@@ -1,4 +1,4 @@
-/*     $Id: man.c,v 1.27 2009/07/07 09:35:40 kristaps Exp $ */
+/*     $Id: man.c,v 1.28 2009/07/24 20:22:24 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -34,6 +34,7 @@ const char *const __man_merrnames[WERRMAX] = {
        "document has no body", /* WNODATA */
        "document has no title/section", /* WNOTITLE */
        "invalid escape sequence", /* WESCAPE */
+       "invalid number format", /* WNUMFMT */
 };
 
 const  char *const __man_macronames[MAN_MAX] = {                
@@ -42,7 +43,7 @@ const char *const __man_macronames[MAN_MAX] = {
        "IP",           "HP",           "SM",           "SB",
        "BI",           "IB",           "BR",           "RB",
        "R",            "B",            "I",            "IR",
-       "RI",           "na",           "i"
+       "RI",           "na",           "i",            "sp"
        };
 
 const  char * const *man_macronames = __man_macronames;
diff --git a/man.h b/man.h
index 85d000b3b6da00bf1d164587550aedef4708ebaf..ab2e0c513c1e9f2ecf5ede1dfa4f9279f0c6d992 100644 (file)
--- a/man.h
+++ b/man.h
@@ -1,4 +1,4 @@
-/*     $Id: man.h,v 1.15 2009/07/04 09:01:55 kristaps Exp $ */
+/*     $Id: man.h,v 1.16 2009/07/24 20:22:24 kristaps Exp $ */
 /*
  * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -42,7 +42,8 @@
 #define        MAN_RI           20
 #define        MAN_na           21
 #define        MAN_i            22
-#define        MAN_MAX          23
+#define        MAN_sp           23
+#define        MAN_MAX          24
 
 enum   man_type {
        MAN_TEXT,
index b9a78e5bd8d2dadc03a4cae8ee45963675a92098..e1a4b6c0ec848b8e4e0b167f55060fc216deacf1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_action.c,v 1.13 2009/06/18 10:53:58 kristaps Exp $ */
+/*     $Id: man_action.c,v 1.14 2009/07/24 20:22:24 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -59,6 +59,7 @@ const struct actions man_actions[MAN_MAX] = {
        { NULL }, /* RI */
        { NULL }, /* na */
        { NULL }, /* i */
+       { NULL }, /* sp */
 };
 
 
index e63657e1293106df22731e64885df1a38edc1f5b..8a480fe0ecddb2b706f2e11a9dcba64f17d6d132 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_macro.c,v 1.17 2009/06/18 10:53:58 kristaps Exp $ */
+/*     $Id: man_macro.c,v 1.18 2009/07/24 20:22:24 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -51,6 +51,7 @@ static        int man_flags[MAN_MAX] = {
        FL_NLINE, /* RI */
        0, /* na */
        FL_NLINE, /* i */
+       0, /* sp */
 };
 
 int
index 8b1c623696b473d4824176691f6b03b772055ca9..8223e9be2cb9a206e674215b3f068857500bc914 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_term.c,v 1.16 2009/06/18 20:46:19 kristaps Exp $ */
+/*     $Id: man_term.c,v 1.17 2009/07/24 20:22:24 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -81,6 +81,7 @@ static const struct termact termacts[MAN_MAX] = {
        { pre_RI, NULL }, /* RI */
        { NULL, NULL }, /* na */
        { pre_I, post_I }, /* i */
+       { NULL, NULL }, /* sp */
 };
 
 static void              print_head(struct termp *, 
index 28701ae9ea8219e55a9f5b98dca3d813bb33a509..afeadd13bbbd95bdd668405c95779a47cccda747 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: man_validate.c,v 1.15 2009/07/04 09:01:55 kristaps Exp $ */
+/*     $Id: man_validate.c,v 1.16 2009/07/24 20:22:24 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -18,6 +18,8 @@
 
 #include <assert.h>
 #include <ctype.h>
+#include <errno.h>
+#include <limits.h>
 #include <stdarg.h>
 #include <stdlib.h>
 
@@ -33,19 +35,22 @@ struct      man_valid {
 };
 
 static int       check_eq0(POSTARGS);
+static int       check_eq1(POSTARGS);
 static int       check_ge1(POSTARGS);
 static int       check_ge2(POSTARGS);
 static int       check_le1(POSTARGS);
 static int       check_le2(POSTARGS);
 static int       check_le5(POSTARGS);
-static int       check_text(POSTARGS);
 static int       check_root(POSTARGS);
+static int       check_sp(POSTARGS);
+static int       check_text(POSTARGS);
 
-static v_post    posts_le1[] = { check_le1, NULL };
-static v_post    posts_le2[] = { check_le2, NULL };
-static v_post    posts_ge1[] = { check_ge1, NULL };
 static v_post    posts_eq0[] = { check_eq0, NULL };
+static v_post    posts_ge1[] = { check_ge1, NULL };
 static v_post    posts_ge2_le5[] = { check_ge2, check_le5, NULL };
+static v_post    posts_le1[] = { check_le1, NULL };
+static v_post    posts_le2[] = { check_le2, NULL };
+static v_post    posts_sp[] = { check_sp, NULL };
 
 static const struct man_valid man_valids[MAN_MAX] = {
        { posts_eq0 }, /* br */
@@ -71,6 +76,7 @@ static        const struct man_valid man_valids[MAN_MAX] = {
        { NULL }, /* RI */
        { posts_eq0 }, /* na */
        { NULL }, /* i */
+       { posts_sp }, /* sp */
 };
 
 
@@ -162,9 +168,38 @@ check_##name(POSTARGS) \
 }
 
 INEQ_DEFINE(0, ==, eq0)
+INEQ_DEFINE(1, ==, eq1)
 INEQ_DEFINE(1, >=, ge1)
 INEQ_DEFINE(2, >=, ge2)
 INEQ_DEFINE(1, <=, le1)
 INEQ_DEFINE(2, <=, le2)
 INEQ_DEFINE(5, <=, le5)
 
+
+static int
+check_sp(POSTARGS)
+{
+       long             lval;
+       char            *ep, *buf;
+
+       if (NULL == m->last->child)
+               return(1);
+       else if ( ! check_eq1(m, n))
+               return(0);
+
+       assert(MAN_TEXT == m->last->child->type);
+       buf = m->last->child->string;
+       assert(buf);
+       
+       /* From OpenBSD's strtol(3). */
+       errno = 0;
+       lval = strtol(buf, &ep, 10);
+       if (buf[0] == '\0' || *ep != '\0')
+               return(man_nerr(m, m->last->child, WNUMFMT));
+
+       if ((errno == ERANGE && (lval == LONG_MAX || lval == LONG_MIN)) ||
+                       (lval > INT_MAX || lval < 0))
+               return(man_nerr(m, m->last->child, WNUMFMT));
+
+       return(1);
+}
index 0a26c40a9dea28900bdbbe4128423a02da46ade6..7839c37d61645f61b4c49c7eb158b6f611cb3ffd 100644 (file)
--- a/mandoc.c
+++ b/mandoc.c
@@ -1,4 +1,4 @@
-/*     $Id: mandoc.c,v 1.2 2009/07/12 09:48:00 kristaps Exp $ */
+/*     $Id: mandoc.c,v 1.3 2009/07/24 20:22:24 kristaps Exp $ */
 /*
  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
  *
@@ -59,6 +59,8 @@ mandoc_special(const char *p)
                /* FALLTHROUGH */
        case (':'):
                /* FALLTHROUGH */
+       case ('c'):
+               return(2);
        case ('e'):
                return(2);
        case ('f'):