From 0afe4d87d4aacfbbb2659129a1858a22d216a920 Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Fri, 21 Jul 2023 15:35:58 -0400 Subject: [PATCH] Corrected an error introduced by the code added recently for support of command logging, which caused the "select cell " command option to become invalid; this command option is used by the parameterized cell generator and makes it impossible to edit the parameterized cells. --- VERSION | 2 +- commands/CmdRS.c | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 5f915f90..8d1339e9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.415 +8.3.416 diff --git a/commands/CmdRS.c b/commands/CmdRS.c index 8e89fd91..c266faf2 100644 --- a/commands/CmdRS.c +++ b/commands/CmdRS.c @@ -1560,8 +1560,9 @@ Okay: * click" code. */ - if ((cmd->tx_argc == 3) && (optionArgs == &cmd->tx_argv[2]) && - (more == FALSE) && (less == FALSE)) + if (((cmd->tx_argc == 3) || (cmd->tx_argc == 6)) && + (optionArgs == &cmd->tx_argv[2]) && + (more == FALSE) && (less == FALSE)) { use = lastUse = scx.scx_use; p.p_x = scx.scx_use->cu_xlo; @@ -1569,7 +1570,7 @@ Okay: trans = GeoIdentityTransform; printPath = scx.scx_use->cu_id; } - else if (cmd->tx_argc == 3) + else if ((cmd->tx_argc == 3) || (cmd->tx_argc == 6)) { SearchContext scx2;