Browse Source

Revert Dericks accidental commit :-)

Add an Id tag so we can see at a glance who is to blame.
migration/unlabaled-1.1.2
Wez Furlong 24 years ago
parent
commit
6bc7e97161
  1. 10
      ext/standard/parsedate.y

10
ext/standard/parsedate.y

@ -8,6 +8,8 @@
** This code is in the public domain and has no copyright.
*/
/* $Id$ */
#include "php.h"
#ifdef PHP_WIN32
@ -205,26 +207,18 @@ spec : /* NULL */
item : time {
yyHaveTime++;
printf ("TIME");
}
| zone {
yyHaveZone++;
printf ("ZONE");
}
| date {
yyHaveDate++;
printf ("DATE");
}
| day {
yyHaveDay++;
printf ("DAY");
}
| rel {
yyHaveRel++;
printf ("REL");
}
| number {
printf ("NUMBER");
}
;

Loading…
Cancel
Save