subckt.c, finishLine(), #4/6 drop condition which is always true
This commit is contained in:
parent
f9e86cf1ee
commit
e54cc664da
|
|
@ -1382,9 +1382,8 @@ finishLine(struct bxx_buffer *t, char *src, char *scname)
|
||||||
i(hname) -> i(h.subckt.hname)
|
i(hname) -> i(h.subckt.hname)
|
||||||
i(bname) -> i(b.subckt.hname)
|
i(bname) -> i(b.subckt.hname)
|
||||||
*/
|
*/
|
||||||
if ((which == 'i' || which == 'I') &&
|
if (buf[0] == 'v' || buf[0] == 'V' || buf[0] == 'e' || buf[0] == 'h'
|
||||||
(buf[0] == 'v' || buf[0] == 'V' || buf[0] == 'e' || buf[0] == 'h'
|
|| buf[0] == 'b' || buf[0] == 'B') {
|
||||||
|| buf[0] == 'b' || buf[0] == 'B')) {
|
|
||||||
bxx_putc(t, buf[0]);
|
bxx_putc(t, buf[0]);
|
||||||
bxx_putc(t, '.');
|
bxx_putc(t, '.');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue