7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-04 23:05:30 +00:00

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

View File

@ -159,7 +159,9 @@ namespace SPICE_GRAMMAR
// TODO: Check if these `star<space>`s match Ngspice's
// behavior.
star<space>,
opt<plusContinuation>,
one<'='>,
opt<plusContinuation>,
star<space>,
paramValue> {};
struct dotSubcktParamValuePairs : list<dotSubcktParamValuePair, sep> {};