Fix lexor parse of keywords declaration that includes '.'.

This commit is contained in:
Stephen Williams 2011-11-29 15:17:34 -08:00
parent eeca366092
commit 540e0ab2d1
1 changed files with 1 additions and 1 deletions

View File

@ -516,7 +516,7 @@ TU [munpf]
^{W}?`begin_keywords{W}? { BEGIN(PPBEGIN_KEYWORDS); }
<PPBEGIN_KEYWORDS>\"[a-zA-Z0-9 -]*\".* {
<PPBEGIN_KEYWORDS>\"[a-zA-Z0-9 -\.]*\".* {
keyword_mask_stack.push_front(lexor_keyword_mask);
char*word = yytext+1;