From d8a4f9821e965f611fa6a0a8964673f0c7b633fb Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Thu, 16 Feb 2023 12:19:21 +0000 Subject: [PATCH] Smarten regex to accept ':' in signal names. (In fact, just accept anything up to the closing paren.) Fixes https://gitlab.com/kicad/code/kicad/issues/13942 --- eeschema/sim/sim_plot_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sim/sim_plot_frame.cpp b/eeschema/sim/sim_plot_frame.cpp index be56f29b15..c9d8185c9a 100644 --- a/eeschema/sim/sim_plot_frame.cpp +++ b/eeschema/sim/sim_plot_frame.cpp @@ -1130,7 +1130,7 @@ void SIM_PLOT_FRAME::updateMeasurement( int aRow ) " *" "([a-zA-Z]+)" " +" - "([a-zA-Z])\\([a-zA-Z0-9_]+\\)" ) ); + "([a-zA-Z])\\([^\\)]+\\)" ) ); m_workbookModified = true;