xschem selected_set command: return instance names properly quoted
This commit is contained in:
parent
da8a5c0c04
commit
0bb50ce7ff
|
|
@ -2972,7 +2972,7 @@ int xschem(ClientData clientdata, Tcl_Interp *interp, int argc, const char * arg
|
|||
for(n=0; n < xctx->lastsel; ++n) {
|
||||
if(xctx->sel_array[n].type == ELEMENT) {
|
||||
i = xctx->sel_array[n].n;
|
||||
Tcl_AppendResult(interp, /* "{", */ xctx->inst[i].instname, " ", /* "} ", */ NULL);
|
||||
Tcl_AppendResult(interp, "{", xctx->inst[i].instname, "} ", NULL);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue