From 6a1b6ced18b0618582e8551d3aa9f57fdade564c Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 17 Aug 2019 12:25:17 +0200 Subject: [PATCH] Enable tc conversion also for L and C Even is PSPICE manual does not mention this, device model makers are using this option. --- src/frontend/inpcom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index 53edbc786..f6190ef99 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -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,'=');