subckt.c: `A' device , no special translation when nodename starts with `v'

This commit is contained in:
h_vogt 2013-07-16 22:08:09 +02:00 committed by rlar
parent 503f5d5c26
commit 7911ed9eb9
1 changed files with 1 additions and 4 deletions

View File

@ -1011,10 +1011,7 @@ translate(struct line *deck, char *formal, char *actual, char *scname, char *sub
if (t) {
bxx_printf(&buffer, "%s ", t);
} else {
if (name[0] == 'v' || name[0] == 'V')
bxx_printf(&buffer, "v.%s.%s ", scname, name);
else
bxx_printf(&buffer, "%s.%s ", scname, name);
bxx_printf(&buffer, "%s.%s ", scname, name);
}
break;