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:
parent
9ec23203fb
commit
b8bfaa5066
|
|
@ -1349,7 +1349,8 @@ Okay:
|
||||||
* click" code.
|
* 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;
|
use = lastUse = scx.scx_use;
|
||||||
p.p_x = scx.scx_use->cu_xlo;
|
p.p_x = scx.scx_use->cu_xlo;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue