From 3f55893987c4b80afb9eca819265bebeb51ee01a Mon Sep 17 00:00:00 2001 From: stefan schippers Date: Sat, 19 Aug 2023 13:54:43 +0200 Subject: [PATCH] revert format of [xschem pinlist ] to old (3.1.0) format: { {0} {PLUS} } { {1} {OUT} } { {2} {MINUS} } instead of {PLUS} {OUT} {MINUS} --- src/scheduler.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scheduler.c b/src/scheduler.c index bece3a87..ccce0017 100644 --- a/src/scheduler.c +++ b/src/scheduler.c @@ -2453,9 +2453,9 @@ int xschem(ClientData clientdata, Tcl_Interp *interp, int argc, const char * arg for(p=0;p 3 && argv[3][0]) { - Tcl_AppendResult(interp, "{", + Tcl_AppendResult(interp, "{ {", my_itoa(p), "} {", get_tok_value((xctx->inst[i].ptr+ xctx->sym)->rect[PINLAYER][p].prop_ptr, argv[3], 0), - "}", NULL); + "} }", NULL); } else { Tcl_AppendResult(interp, "{ {", my_itoa(p), "} {", (xctx->inst[i].ptr+ xctx->sym)->rect[PINLAYER][p].prop_ptr, "} }", NULL);