zoom was broken

This commit is contained in:
dwarning 2009-01-02 13:45:14 +00:00
parent 9a76299a78
commit e0ad9b13a4
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@
* adms/ekv/amsva/ekv.va: EPFL-EKV version 2.63, replacement of the long channel
version with a code according to the official manual (revision II) available
at http://legwww.epfl.ch/ekv, contribution of Ivan Riis Nielsen 11/2006.
* /src/frontend/wdisp/windisp.c, 398: windows zoom was broken - %le for double
seems not more ignored, changed to more suitable %e
2009-01-01 Dietmar Warning
* configure.in, include/missing_math.h, src/math/misc/isnan.c: POSIX conform

View File

@ -395,7 +395,7 @@ LRESULT CALLBACK PlotWindowProc( HWND hwnd,
"setplot %s; %s xlimit %1.20e %1.20e ylimit %1.20e %1.20e; setplot $curplot\n",
buf2, gr->commandline, fx0, fxe, fy0, fye);
} else {
(void) sprintf(buf, "%s xlimit %le %le ylimit %le %le\n",
(void) sprintf(buf, "%s xlimit %e %e ylimit %e %e\n",
gr->commandline, fx0, fxe, fy0, fye);
}