Enable tc conversion also for L and C

Even is PSPICE manual does not mention this,
device model makers are using this option.
This commit is contained in:
Holger Vogt 2019-08-17 12:25:17 +02:00
parent 63b4cf05de
commit 6a1b6ced18
1 changed files with 1 additions and 1 deletions

View File

@ -7242,7 +7242,7 @@ pspice_compat(struct card *oldcard)
continue;
}
if (*cut_line == 'r') {
if (*cut_line == 'r' || *cut_line == 'l' || *cut_line == 'c') {
char *tctok = search_plain_identifier(cut_line, "tc");
if (tctok) {
char *tctok1 = strchr(tctok,'=');