Corrected command option "select [more|less] cell <cellname>", which

was not recognizing the more|less option and therefore failing to
search for the instance <cellname>, rendering the command non-functional.
This commit is contained in:
Tim Edwards 2019-05-03 09:14:25 -04:00
parent 9ec23203fb
commit b8bfaa5066
1 changed files with 2 additions and 1 deletions

View File

@ -1349,7 +1349,8 @@ Okay:
* click" code.
*/
if ((cmd->tx_argc == 3) && (optionArgs == &cmd->tx_argv[2]))
if ((cmd->tx_argc == 3) && (optionArgs == &cmd->tx_argv[2]) &&
(more == FALSE) && (less == FALSE))
{
use = lastUse = scx.scx_use;
p.p_x = scx.scx_use->cu_xlo;