From 51c6eded14417b5f94b620b9e5acbbb635419aab Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Sun, 16 Feb 2025 01:11:32 +0100 Subject: [PATCH] (2) integrated @georgtree proc symbolParse --- src/xschem.tcl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xschem.tcl b/src/xschem.tcl index 10f92d1a..9dae3ee5 100644 --- a/src/xschem.tcl +++ b/src/xschem.tcl @@ -6047,10 +6047,10 @@ proc symbolParse {file} { while {[regexp -start $start $pattern $content -> name quotedValue unquotedValue]} { # Determine the value (quoted or unquoted) if {[string length $quotedValue] > 0} { - # outer quotes are not part of quotedValue, - # remove escaping of internal backslashes and doublequotes set value $quotedValue - dict append tokens $name [string map {\\\\ \\ \\\" \" } $value] + # outer quotes are removed from value, + # remove escaping of internal backslashes and doublequotes + dict append tokens $name [string map {\\\\ \\ \\\" \" } $value] } else { set value $unquotedValue dict append tokens $name $value