Browse Source

bugfix in com_meas()

pre-master-46
h_vogt 16 years ago
parent
commit
8cee489660
  1. 3
      ChangeLog
  2. 2
      src/frontend/measure.c

3
ChangeLog

@ -1,3 +1,6 @@
2009-12-22 Holger Vogt
* measure.c: bugfix (%f replaced by %e)
2009-12-21 Holger Vogt
* com_measure2.com, measure.c: add vectors to the meas command.
inpcom.c: no parsing of ternary function in .control section (not

2
src/frontend/measure.c

@ -115,7 +115,7 @@ com_meas(wordlist *wl) {
return;
}
sprintf(newvec, "%s = %f\0", outvar, result);
sprintf(newvec, "%s = %e\0", outvar, result);
wl_let = alloc(struct wordlist);
wl_let->wl_next = NULL;
wl_let->wl_word = copy(newvec);

Loading…
Cancel
Save