Browse Source

allow reading LTSPICE ascii raw files with 'load' command

by discarding 'Offset:'
pre-master-46
Holger Vogt 8 years ago
committed by rlar
parent
commit
68125ea3cf
  1. 2
      src/frontend/rawfile.c

2
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);

Loading…
Cancel
Save