Allow more characters (in particular '_') in code model names.
Fixes https://gitlab.com/kicad/code/kicad/issues/13769
This commit is contained in:
parent
90e759e738
commit
ed5fb2769f
|
@ -97,7 +97,7 @@ namespace SPICE_GRAMMAR
|
||||||
sep,
|
sep,
|
||||||
sor<TAO_PEGTL_ISTRING( "nchan" ),
|
sor<TAO_PEGTL_ISTRING( "nchan" ),
|
||||||
TAO_PEGTL_ISTRING( "pchan" )>>,
|
TAO_PEGTL_ISTRING( "pchan" )>>,
|
||||||
plus<alpha>> {};
|
plus<not_at<garbageOrEolf>, any>> {};
|
||||||
|
|
||||||
struct vectorExpr : seq<one<'['>,
|
struct vectorExpr : seq<one<'['>,
|
||||||
star<not_one<']'>>,
|
star<not_one<']'>>,
|
||||||
|
|
Loading…
Reference in New Issue