Fixed a bug causing pspp to crash when computed variables had no format
[pspp-builds.git] / src / ChangeLog
index 4f4f3eda7030852faeda9efff649717ca514e4f7..2c524f329c25d3d360cd15a3fa8eb38f603c971a 100644 (file)
@@ -1,3 +1,23 @@
+Fri Feb 20 14:37:41 WAST 2004 John Darrington <john@darrington.wattle.id.au>
+
+       * compute.c: Fixed a bug where the Format was not getting set for 
+         computed variables (thus causing a crash when SAVEing).
+
+       * Added a test to stop this bug ever coming back
+
+Wed Feb 18 22:21:35 2004  Ben Pfaff  <blp@gnu.org>
+
+       Got rid of approx.h.  In general, replaced all references to
+       approx_eq() by ==, approx_lt() by <, etc.  Other types of changes
+       noted below.
+
+       * Makefile.am: (pspp_SOURCES) Removed approx.h.
+
+       * data-out.c: (try_F) Replaced test for approx_eq(number, 0.0) by
+       test for mag < EPSILON.
+
+       * misc.h: Add definition of EPSILON.
+
 Wed Feb 18 21:32:44 2004  Ben Pfaff  <blp@gnu.org>
 
        * vfm.c: (procedure) Add check to prevent recursive call.