We normaly transition from GOTDEFS to STARTDEFS on whitespace, but
if that whitespace is followed by a comma, we want to treat it as part of a list and not transition.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -115,6 +115,11 @@ DEFVAR [a-z_]+
|
|||||||
%x INSTR
|
%x INSTR
|
||||||
|
|
||||||
%%
|
%%
|
||||||
|
<GOTDEFS>[[:blank:]]*,[[:blank:]]* {
|
||||||
|
LEXTRACE(", ");
|
||||||
|
return ',';
|
||||||
|
} /* return ',' */
|
||||||
|
|
||||||
<GOTDEFS>[[:blank:]]+ BEGIN STARTDEFS;
|
<GOTDEFS>[[:blank:]]+ BEGIN STARTDEFS;
|
||||||
|
|
||||||
<STARTDEFS>{DEFVAR} {
|
<STARTDEFS>{DEFVAR} {
|
||||||
|
Reference in New Issue
Block a user