Allow more characters (in particular '_') in code model names.

Fixes https://gitlab.com/kicad/code/kicad/issues/13769
This commit is contained in:
Jeff Young 2023-02-03 23:49:19 +00:00
parent 90e759e738
commit ed5fb2769f
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ namespace SPICE_GRAMMAR
sep,
sor<TAO_PEGTL_ISTRING( "nchan" ),
TAO_PEGTL_ISTRING( "pchan" )>>,
plus<alpha>> {};
plus<not_at<garbageOrEolf>, any>> {};
struct vectorExpr : seq<one<'['>,
star<not_one<']'>>,