Corrected an error that was introduced in the August 3 commit and

which prevents the "Ctrl-P" key from raising the .params window;
the underlying error is that the original error in the "property"
command was a disagreement about where "argstart" is placed.  The
command was fixed to make the "property" command work correctly.
However, the solution made "argstart" wrong when using the command
"cellname property".  Now both uses are handled correctly.
This commit is contained in:
Tim Edwards 2024-09-25 21:26:41 -04:00
parent 427547c927
commit f3b08ad470
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
8.3.491
8.3.492

View File

@ -1296,7 +1296,7 @@ CmdCellname(w, cmd)
if (cellDef == (CellDef *) NULL)
TxError("Unknown cell %s\n", cellname);
else
CmdDoProperty(cellDef, cmd, 2 + ((dolist) ? 1 : 0));
CmdDoProperty(cellDef, cmd, 3 + ((dolist) ? 1 : 0));
break;
case IDX_DELETE: