=================================================================== RCS file: /cvs/mandoc/Attic/strings.c,v retrieving revision 1.28 retrieving revision 1.29 diff -u -p -r1.28 -r1.29 --- mandoc/Attic/strings.c 2009/03/13 07:46:10 1.28 +++ mandoc/Attic/strings.c 2009/03/14 05:36:07 1.29 @@ -1,4 +1,4 @@ -/* $Id: strings.c,v 1.28 2009/03/13 07:46:10 kristaps Exp $ */ +/* $Id: strings.c,v 1.29 2009/03/14 05:36:07 kristaps Exp $ */ /* * Copyright (c) 2008 Kristaps Dzonsons * @@ -89,6 +89,8 @@ mdoc_isescape(const char *p) /* FALLTHROUGH */ case (' '): /* FALLTHROUGH */ + case ('|'): + /* FALLTHROUGH */ case ('&'): /* FALLTHROUGH */ case ('.'): @@ -204,9 +206,9 @@ mdoc_atotime(const char *p) (void)memset(&tm, 0, sizeof(struct tm)); - if (xstrcmp(p, "$Mdocdate: March 13 2009 $")) + if (xstrcmp(p, "$Mdocdate: March 14 2009 $")) return(time(NULL)); - if ((pp = strptime(p, "$Mdocdate: March 13 2009 $", &tm)) && 0 == *pp) + if ((pp = strptime(p, "$Mdocdate: March 14 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)