Allow line-continuations in name=value parameters.

Fixes https://gitlab.com/kicad/code/kicad/issues/13255
This commit is contained in:
Jeff Young 2022-12-23 20:04:43 +00:00
parent 00fe8f0f70
commit 981254543a
1 changed files with 2 additions and 0 deletions

View File

@ -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> {};