Remove a false read when curr_line has
already been invalidated.
This commit is contained in:
parent
0f25c25c7e
commit
ae72677cc2
|
|
@ -7477,7 +7477,7 @@ static void inp_meas_current(struct card *deck)
|
|||
* line */
|
||||
if (s && s > v) {
|
||||
/* %i( may be part of the node definition in a XSPICE instance, so skip it here */
|
||||
if (*curr_line == 'a' && s[-1] == '%') {
|
||||
if (*v == 'a' && s[-1] == '%') {
|
||||
s++;
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue