From 981254543a8328768318fb978db76c68bbf898b9 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 23 Dec 2022 20:04:43 +0000 Subject: [PATCH] Allow line-continuations in name=value parameters. Fixes https://gitlab.com/kicad/code/kicad/issues/13255 --- eeschema/sim/spice_grammar.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/eeschema/sim/spice_grammar.h b/eeschema/sim/spice_grammar.h index 48b936ae79..57b24ce98e 100644 --- a/eeschema/sim/spice_grammar.h +++ b/eeschema/sim/spice_grammar.h @@ -159,7 +159,9 @@ namespace SPICE_GRAMMAR // TODO: Check if these `star`s match Ngspice's // behavior. star, + opt, one<'='>, + opt, star, paramValue> {}; struct dotSubcktParamValuePairs : list {};