Browse Source

MFB51: Revert previous fix to allow for a more comprehensive patch from Derick.

migration/RELEASE_1_0_0
Ilia Alshanetsky 21 years ago
parent
commit
736a05f959
  1. 8877
      ext/date/lib/parse_date.c
  2. 4
      ext/date/lib/parse_date.re

8877
ext/date/lib/parse_date.c
File diff suppressed because it is too large
View File

4
ext/date/lib/parse_date.re

@ -535,7 +535,7 @@ static long timelib_get_month(char **ptr)
static void timelib_eat_spaces(char **ptr)
{
while (**ptr == ' ' || **ptr == '\t') {
while (**ptr == ' ') {
++*ptr;
}
}
@ -736,7 +736,7 @@ std:
/*!re2c
any = [\000-\377];
space = [ \t]+;
space = [ ]+;
frac = "."[0-9]+;
ago = 'ago';

Loading…
Cancel
Save