Allow line-continuations in name=value parameters.
Fixes https://gitlab.com/kicad/code/kicad/issues/13255
This commit is contained in:
parent
00fe8f0f70
commit
981254543a
|
@ -159,7 +159,9 @@ namespace SPICE_GRAMMAR
|
||||||
// TODO: Check if these `star<space>`s match Ngspice's
|
// TODO: Check if these `star<space>`s match Ngspice's
|
||||||
// behavior.
|
// behavior.
|
||||||
star<space>,
|
star<space>,
|
||||||
|
opt<plusContinuation>,
|
||||||
one<'='>,
|
one<'='>,
|
||||||
|
opt<plusContinuation>,
|
||||||
star<space>,
|
star<space>,
|
||||||
paramValue> {};
|
paramValue> {};
|
||||||
struct dotSubcktParamValuePairs : list<dotSubcktParamValuePair, sep> {};
|
struct dotSubcktParamValuePairs : list<dotSubcktParamValuePair, sep> {};
|
||||||
|
|
Loading…
Reference in New Issue