Bugfix: WHITESPACE was missing in front of the workspace name (Thanks Mirko)
This commit is contained in:
parent
316f62dfda
commit
f2dcc36333
|
@ -404,7 +404,7 @@ workspace:
|
||||||
|
|
||||||
optional_workspace_name:
|
optional_workspace_name:
|
||||||
/* empty */ { $<string>$ = NULL; }
|
/* empty */ { $<string>$ = NULL; }
|
||||||
| workspace_name { $<string>$ = $<string>1; }
|
| WHITESPACE workspace_name { $<string>$ = $<string>1; }
|
||||||
;
|
;
|
||||||
|
|
||||||
workspace_name:
|
workspace_name:
|
||||||
|
|
Loading…
Reference in New Issue