We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfd938b commit d0f6dabCopy full SHA for d0f6dab
VERSION
@@ -1 +1 @@
1
-8.3.466
+8.3.467
tcltk/toolkit.tcl
@@ -334,7 +334,9 @@ proc magic::generate_layout_add {subname subpins complist library} {
334
}
335
336
set outparts {}
337
- lappend outparts "magic::gencell $libdev $instname"
+ # Escape any brackets in the instance name, since it gets passed to "eval"
338
+ set minstname [string map {[ \\\[ ] \\\]} $instname]
339
+ lappend outparts "magic::gencell $libdev $minstname"
340
341
# Output all parameters. Parameters not used by the toolkit are
342
# ignored by the toolkit.
0 commit comments