X-Git-Url: https://git.cameronkatri.com/mandoc.git/blobdiff_plain/1b1e02d4acd11f96e061ac04ae243ab0589d2f8a..c6e959568733601f6b74e21b18a4243e63f53f3b:/strings.c?ds=inline diff --git a/strings.c b/strings.c index 896971a9..4910e308 100644 --- a/strings.c +++ b/strings.c @@ -1,4 +1,4 @@ -/* $Id: strings.c,v 1.22 2009/02/27 10:55:16 kristaps Exp $ */ +/* $Id: strings.c,v 1.23 2009/03/02 12:09:32 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -190,9 +190,9 @@ mdoc_atotime(const char *p) (void)memset(&tm, 0, sizeof(struct tm)); - if (xstrcmp(p, "$Mdocdate: February 27 2009 $")) + if (xstrcmp(p, "$Mdocdate: March 2 2009 $")) return(time(NULL)); - if ((pp = strptime(p, "$Mdocdate: February 27 2009 $", &tm)) && 0 == *pp) + if ((pp = strptime(p, "$Mdocdate: March 2 2009 $", &tm)) && 0 == *pp) return(mktime(&tm)); /* XXX - this matches "June 1999", which is wrong. */ if ((pp = strptime(p, "%b %d %Y", &tm)) && 0 == *pp) @@ -358,6 +358,8 @@ mdoc_atoatt(const char *p) return(ATT_v7); else if (0 == strcmp(p, "32v")) return(ATT_32v); + else if (0 == strcmp(p, "V")) + return(ATT_V); else if (0 == strcmp(p, "V.1")) return(ATT_V1); else if (0 == strcmp(p, "V.2")) @@ -719,6 +721,9 @@ mdoc_att2a(enum mdoc_att c) case(ATT_32v): p = "Version 32V AT&T UNIX"; break; + case(ATT_V): + p = "AT&T System V UNIX"; + break; case(ATT_V1): p = "AT&T System V.1 UNIX"; break;