From 68125ea3cfb1ded56f189b94bad829e9ce8e2acf Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Mon, 23 Apr 2018 21:42:48 +0200 Subject: [PATCH] allow reading LTSPICE ascii raw files with 'load' command by discarding 'Offset:' --- src/frontend/rawfile.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/rawfile.c b/src/frontend/rawfile.c index 46639a84a..dfd8b4f4f 100644 --- a/src/frontend/rawfile.c +++ b/src/frontend/rawfile.c @@ -332,6 +332,8 @@ raw_read(char *name) { s = SKIP(buf); NONL(s); date = copy(s); + } else if (ciprefix("offset:", buf)) { + fprintf(cp_err, "Warning: Offset: is not supported\n"); } else if (ciprefix("plotname:", buf)) { s = SKIP(buf); NONL(s);