grammar: Fix token stripping.

This commit is contained in:
Michal Krol 2009-09-08 10:57:39 +02:00
parent d06069f305
commit b837f6c372

View file

@ -3226,11 +3226,15 @@ grammar_fast_check (grammar id,
case SL_PP_IDENTIFIER:
case SL_PP_NUMBER:
*dst++ = *src++;
break;
default:
src++;
}
}
/* The end of stream token. */
*dst = *src;
}
}