=================================================================== RCS file: /cvs/mandoc/Attic/strings.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -p -r1.22 -r1.23 --- mandoc/Attic/strings.c 2009/02/27 10:55:16 1.22 +++ mandoc/Attic/strings.c 2009/03/02 12:09:32 1.23 @@ -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")) @@ -718,6 +720,9 @@ mdoc_att2a(enum mdoc_att c) break; 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";