allow reading LTSPICE ascii raw files with 'load' command
by discarding 'Offset:'
This commit is contained in:
parent
43a6339071
commit
68125ea3cf
|
|
@ -332,6 +332,8 @@ raw_read(char *name) {
|
||||||
s = SKIP(buf);
|
s = SKIP(buf);
|
||||||
NONL(s);
|
NONL(s);
|
||||||
date = copy(s);
|
date = copy(s);
|
||||||
|
} else if (ciprefix("offset:", buf)) {
|
||||||
|
fprintf(cp_err, "Warning: Offset: is not supported\n");
|
||||||
} else if (ciprefix("plotname:", buf)) {
|
} else if (ciprefix("plotname:", buf)) {
|
||||||
s = SKIP(buf);
|
s = SKIP(buf);
|
||||||
NONL(s);
|
NONL(s);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue