lexer: Rename LEX_ERROR_INTERACTIVE to LEX_ERROR_TERMINAL, change default
[pspp] / NEWS
1 PSPP NEWS -- history of user-visible changes.
2 Copyright (C) 1996-2000, 2008-2013 Free Software Foundation, Inc.
3 See the end for copying conditions.
4
5 Please send PSPP bug reports to bug-gnu-pspp@gnu.org.
6
7 Changes after 0.8.0:
8
9  * PSPPIRE graphical user interface improvements:
10
11    - Syntax windows now parse syntax in "auto" mode, which in practice
12      should mean that both "batch" and "interactive" syntax now works,
13      instead of just "interactive" syntax.
14
15  * Notable bug fixes:
16
17    - System files written by IBM SPSS 21 are now read without warnings.
18
19    - PSPPIRE should now more gracefully handle syntax files that contain
20      errors.
21
22 Changes from 0.6.2 to 0.8.0:
23
24  * New commands:
25
26    - ADD FILES
27    - CORRELATIONS
28    - DATAFILE ATTRIBUTES
29    - DATASET ACTIVATE
30    - DATASET CLOSE
31    - DATASET COPY
32    - DATASET DECLARE
33    - DATASET DISPLAY
34    - DATASET NAME
35    - LOGISTIC REGRESSION
36    - MATCH FILES
37    - MEANS
38    - MRSETS
39    - PRESERVE and RESTORE
40    - QUICK CLUSTER
41    - RELIABILITY
42    - ROC
43    - SAVE TRANSLATE to CSV and tab-delimited files
44    - UPDATE
45    - VARIABLE ATTRIBUTES
46
47  * Changes to existing commands:
48
49    - AUTORECODE has a new GROUP subcommand.
50
51    - CROSSTABS has been re-implemented to fix numerous bugs.
52
53    - EXAMINE: /MISSING=LISTWISE is now the default.
54
55    - DO REPEAT command has been reimplemented.  Now, when DO REPEAT
56      contains an INCLUDE or INSERT command, substitutions are not
57      applied to the included file.
58   
59    - FILE HANDLE has a new ENDS subcommand to select CR or CRLF new-lines.
60
61    - HOST has been updated to use more modern syntax.
62
63    - Most commands that work with data files now support a new
64      ENCODING subcommand.
65
66    - MISSING VALUES can now assign missing values to long string
67      variables.
68
69    - ONEWAY: the POSTHOC subcommand is now implemented.
70
71    - The following new subcommands to NPAR TESTS have been implemented:
72      COCHRAN, FRIEDMAN, JONCKHEERE-TERPSTRA, KENDALL, KRUSKAL-WALLIS, MANN-WHITNEY, 
73      MCNEMAR, SIGN, WILCOXON, and RUNS
74
75    - SET and SHOW no longer have ENDCMD, NULLINE, PROMPT, CPROMPT, and
76      DPROMPT subcommands.  The defaults are now fixed values.
77
78    - SHOW now has a JOURNAL subcommand, to show the location of the
79      journal file.
80
81    - VALUE LABELS can now assign value labels to long string
82      variables.
83
84  * Other language changes:
85
86    - The new DATASET commands replace the "scratch file" PSPP
87      extension, which is no longer supported.
88
89    - Strings may now include arbitrary Unicode code points specified
90      in hexadecimal, using the syntax U'hhhh'.  For example, Unicode
91      code point U+1D11E, the musical G clef character, may be
92      expressed as U'1D11E'.
93
94      See the "Tokens" section in the PSPP manual for more information.
95
96    - In previous versions of PSPP, in a string expressed in
97      hexadecimal with X'hh' syntax, the hexadecimal digits expressed
98      bytes in the locale encoding.  In this version of PSPP, X'hh'
99      syntax always expresses bytes in UTF-8 encoding.
100
101      See the "Tokens" section in the PSPP manual for more information.
102
103  * PSPPIRE graphical user interface improvements:
104
105    - Added support for non-ASCII characters in strings, labels and
106      variable names.
107
108    - A "Split Window" function is available, which makes it easier to
109      see different parts of a large data file.
110
111    - Data files can now be opened by specifing their name as the first
112      argument.  This means that on a properly configured desktop, double
113      clicking on an icon will open the file.
114
115    - Foreign formats, such as Gnumeric, OpenDocument and CSV can be imported
116      via using an "intelligent" application assistant dialog.
117
118  * Output changes:
119
120    - The new "cairo" output driver supports output in PostScript, PDF,
121      and SVG formats.  Its functionality is a superset of that of the
122      "postscript" driver, which has been removed.  You must have Cairo
123      and Pango installed to build the "cairo" driver.
124
125    - Charts are now produced with Cairo and Pango, instead of libplot.
126      Without them, the new graphing features will not work.  If you do
127      not have Cairo and Pango installed, you must run `configure' with
128      --without-cairo.
129
130    - The plain text output driver now properly supports multibyte UTF-8
131      characters, including double-width characters and combining
132      accents.
133
134    - Output to OpenDocument format is now supported.
135
136    - The HTML output is much improved.
137
138  * The "pspp" program has a new option --batch (or -b) that selects
139    "batch" syntax mode.  In previous versions of PSPP this syntax mode
140    was the default.  Now a new "auto" syntax mode is the default.  In
141    "auto" mode, PSPP interprets most syntax files correctly regardless
142    of their intended syntax mode.
143
144    See the "Syntax Variants" section in the PSPP manual for more
145    information.
146
147  * The "pspp" program has a new option --syntax-encoding that
148    specifies the encoding for syntax files listed on the command line,
149    as well as the default encoding for syntax files included with
150    INCLUDE or INSERT.  The default is to accept the system locale
151    encoding, UTF-8, UTF-16, or UTF-32, automatically detecting which
152    one the system file uses.
153
154    See the documentation for the INSERT command in the PSPP manual for
155    more information.
156
157  * Text data files that PRINT and WRITE creates now use the system
158    native line ends by default (CRLF on Windows, LF only elsewhere).
159    Use the new ENDS subcommand on FILE HANDLE to override the default.
160
161  * A new Perl module allows Perl programs to read and write PSPP
162    system files.
163
164  * A tutorial chapter has been added to the user manual.
165 \f
166 Changes from 0.6.1 to 0.6.2:
167
168   * New translations:
169
170     - Dutch, thanks to Harry Thijssen.
171
172     - Brazilian Portuguese, thanks to Michel Boaventura.
173
174     Thanks for translations are also due to the coordinators at
175     translationproject.org.
176
177   * Statistical bug fixes:
178
179     - REGRESSION: Report correct standard error of the estimate (bug
180       #25677).
181
182     - T-TEST: Report correct significance of paired sample T-test in
183       the common case (bug #26936) and corner cases.  Thanks to Mike
184       Griffiths and Matej Cepl for reporting these bugs.
185
186   * Build fixes and changes:
187
188     - Fix build with GTK+ 2.17.4 and later.
189
190     - Make running "make" after running "configure" with different
191       settings reliably rebuild version.c.
192
193     - Cygwin and MinGW build fixes.
194
195     - Fixes for building with recent gnulib.
196
197     - The Makefile now honors two new variables, PSPP_LDFLAGS and
198       PSPPIRE_LDFLAGS, that affect linking of the PSPP and PSPPIRE
199       binaries, respectively.  This makes building easier for some
200       packagers.
201
202     - Fixes for "configure --enable-relocatable" (bug #25508).
203
204   * Data file bug fixes and changes:
205
206     - Fix reading text data files that contain a mix of white space
207       and commas.  Now "a ,b" is treated as two fields containing "a"
208       and "b"; previously it was treated as three, with an empty field
209       in the middle.
210
211     - Fix writing corrupted .sav files on Windows.
212
213     - Fix writing variable labels longer than 252 bytes to save files.
214       Thanks to Robert Westlund for reporting this bug.
215
216     - Fix writing corrupted .por files (bug #26034).
217
218     - Fix reading .por files whose initial lines are not padded out
219       with spaces as expected.
220
221     - PSPP will no longer issue warnings about some .sav file records
222       or values that it does not understand.  These warnings were
223       harmless, but needlessly alarmed some users.
224
225     - Fix crash reading empty string fields from PostgreSQL databases.
226
227   * Bug fixes that affect PSPP and PSPPIRE:
228
229     - Users may now control precision of output statistics.  Instead
230       of hard coding the width and decimals of output numbers, respect
231       the default format in most instances.  Counts are now normally
232       displayed with the format of the weight variable, if any.
233
234     - Fix crash when an INSERT command specifies the name of a file
235       that does not exist (bug #24569).
236
237     - Fix crash when CROSSTABS specifies a long-string variable (bugs
238       #24557 and #26131).
239
240     - Fix crash drawing pie charts with many segments.
241
242     - Fix crash when NUMERIC specifies an invalid format.
243
244   * PSPPIRE bug fixes and changes:
245
246     - On Windows, write the output file to the user's home directory
247       instead of the current directory, to better match user
248       expectations.
249
250     - Some data editor fixes.
251
252   * Documentation:
253
254     - Fix typo in BINOMIAL section of user manual (bug #25892).
255
256 Changes from 0.6.0 to 0.6.1:
257
258   * Statistical bug fixes:
259
260     - Report correct standardized regression coefficients in linear
261       regression output (bug #23567).
262
263   * Bug fixes that affect PSPP and PSPPIRE:
264
265     - Avoid crash with pie charts (bug #24014).
266
267     - Don't append % to count totals (bug #24003).
268
269     - Don't crash on bad input (bug #24031).
270
271     - Don't crash if "end data." is not left aligned (bug #24115).
272
273     - Change default workspace value to 64 MB, to avoid unnecessary
274       disk accesses on modern machines.
275
276   * PSPPIRE bug fixes:
277
278     - Add ".sav" or ".por" suffix to filename when saving with Save_As
279       (bug #23137).
280
281     - Make it possible to reopen the output window on Windows (bug
282       #24033).
283
284     - A POSIX regular expression library is now included and used
285       automatically if the host does not have one or has one that is
286       inadequate.
287
288   * Build fixes and changes:
289
290     - Work around bug in GSL that prevented build with recent GCC
291       versions without manually adding -fgnu89-inline to CFLAGS.
292
293     - Also warn about missing prerequisites as we encounter them (bug
294       #24445).
295
296     - Distribute necessary files to allow users working from the
297       distributed tarball to configure with --enable-gui-tools.
298
299     - Append $(EXEEXT_FOR_BUILD) to output file name when building
300       q2c, fixing build problems on Windows.
301
302     - GSL 1.8 or later is now required.
303
304     - Build errors with --enable-relocatable were fixed.
305
306   * The German translations were removed, since native German speakers
307     found them too poor to be useful.
308
309 Changes from 0.4.0 to 0.6.0:
310
311   * The PSPP license is now version 3 or later of the GNU General
312     Public License.  Previously, it was version 2 or later.
313
314   * PSPP now has a graphical interface, called PSPPIRE.  This
315     interface allows you to enter data and variable definitions
316     interactively.  Commands may be executed in syntax form, or by
317     using the interactive dialog boxes available from the dropdown
318     menus.
319
320   * A few sample syntax files are now included in the `examples'
321     directory.
322
323   * Numerous major and minor bugs have been fixed.
324
325   Build changes:
326
327     * The INSTALL file now reflects the details of how to install
328       PSPP.  It is a tailored version of the generic installation
329       instructions, instead of a verbatim copy.
330
331     * iconv, which is ordinarily installed as part of a Unix-like
332       system, is now required.  If you don't have it already, you can
333       install GNU libiconv (http://www.gnu.org/software/libiconv/).
334
335     * libxml2 and zlib are new optional dependencies.  They are
336       required to use PSPP's support for reading Gnumeric files.
337
338   Statistical procedure changes:
339
340     * REGRESSION is a new procedure for fitting linear models to data
341       via least-squares estimation.
342
343     * NPAR TESTS is a new procedure for non-parametric tests.  In this
344       release, it supports binomial and chi-square tests.
345
346     * RANK is a new procedure to rank variables.  It supports numerous
347       forms of ranking.
348
349     * FREQUENCIES can now output histograms and pie charts.  These
350       features were present in earlier releases, but not documented.
351
352   User interface changes:
353
354     * In many situations where PSPP once terminated with a fatal
355       error, PSPP now recovers and continues execution.
356
357     * PSPP is now able to start up and run even if it cannot find its
358       configuration files.
359
360     * Journaling of interactive commands to a disk file is now
361       implemented.  By default, journaling is enabled, to a file named
362       `pspp.jnl' in the current directory.  SET JOURNAL may be used to
363       control journaling.
364
365     * The use of `+' between syntax file names on the command line to
366       prevent the dictionary from being cleared between their
367       executions is no longer supported.  All syntax files are now
368       executed as if `+' had been specified.
369
370     * The -d/--define and -u/--undef command line options are no
371       longer supported.  Instead, use /usr/bin/env or shell primitives
372       to define or clear environment variables before invoking PSPP.
373
374     * If a syntax file named named `rc' is found in a configuration
375       directory (such as $HOME/.pspp), it is executed before any
376       syntax file specified on the command line.  The -r or
377       --no-statrc command line option may be used to disable this
378       behavior.
379
380   Output changes:
381
382     * Output configuration options have changed.  Please refer to the
383       manual for a full description of the available options.
384
385       In consequence, you will need to reinstall your "devices" file.
386       "make install" will do this for you.
387
388     * Most error messages are now written to PSPP output files by
389       default.  SET ERROR can be used to disable this behavior.
390
391     * When invoked interactively, PSPP now by default produces output
392       on the terminal, piping it through the "more" program.
393       Previously, by default output was written only to file
394       pspp.list.  On most terminals, the page length used for output
395       automatically adapts to the terminal size, even if the terminal
396       is resized.
397
398     * ASCII driver:
399
400       - This driver now supports charts in output.  Charts are written
401         as separate files that the main output file refers to.  By
402         default, charts are written in PNG format to files named
403         pspp-1.png, pspp-2.png, and so on.
404
405       - Configurations are provided that use VT100 (and xterm)
406         line-drawing characters in tables.  The option "-o list-vt100"
407         requests use of this device for output to pspp.list.
408
409     * PostScript driver:
410
411       - The default paper size is now determined using the PAPERSIZE
412         environment variable, or the LC_PAPER locale category on
413         systems that support it.  If these are not set, the default is
414         now A4, instead of US letter.  To make US letter the default,
415         set PAPERSIZE to "letter" in your environment.
416
417       - Font metrics are now read from AFM files, instead of
418         Groff-format metrics files.  PostScript fonts can now be
419         embedded in output.
420
421         In consequence, you will need to install an AFM file for each
422         font used in PostScript output.  "make install" will install
423         AFM files for the standard PostScript fonts, including the
424         ones that the PostScript driver uses by default.
425
426       - Standard paper sizes no longer need to be specified through a
427         configuration file.  The "papersize" configuration file is no
428         longer needed, or supported.
429
430       - The PostScript prologue is no longer obtained from the
431         "ps-prologue" configuration file.  This configuration file is
432         no longer needed, or supported.
433
434     * HTML driver:
435
436       - The HTML prologue is no longer obtained from the
437         "html-prologue" configuration file.  This configuration file
438         is no longer needed, or supported.
439
440   Command language changes:
441
442     * The following commands are new:
443
444       - GET DATA, which currently supports reading Gnumeric files and
445         text data files.  It will be extended later to read other
446         types of foreign data.
447
448       - CD, to change the current directory.
449
450       - INSERT, to execute a syntax file.
451
452       - DELETE VARIABLES, to remove variables from the active file
453         dictionary.
454
455       - ADD DOCUMENT, to add text to active file documents.
456
457       - CLOSE FILE HANDLE (a PSPP extension; see below).
458
459       - XEXPORT, a PSPP extension that is a transformation equivalent
460         to EXPORT.
461
462     * The following functions for transformation expressions are new:
463
464       - DATEDIFF, for computing the difference of two dates.
465
466       - DATESUM, for advancing a date by a specified duration.
467
468       - VALUELABEL, to obtain the value label for a value.
469
470     * PSPP now supports very long string variables (over 255 bytes
471       long).
472
473     * MATCH FILES now supports the FIRST and LAST subcommands.
474
475     * Previous versions of PSPP prohibited using commands to both read and
476       write a single file at the same time.  Now, PSPP allows this, and
477       the new version of the file atomically replaces the old version.
478
479     * The following commands are no longer available.  They will be
480       re-implemented in a later release:
481
482       - CLEAR TRANSFORMATIONS
483
484       - MATRIX DATA
485
486       - REPEATING DATA
487
488     * The PROCESS IF command, which was deprecated, has been removed.
489       You may replace any usage of it by SELECT IF following
490       TEMPORARY, which has the same effect.
491
492     * The output format for variables created by VECTOR may now be
493       specified as part of the VECTOR syntax.
494
495   "Scratch files", a new PSPP extension:
496
497     A scratch file, like a system file, consists of a dictionary and
498     any number of cases.  Small scratch files are stored in memory;
499     one that grows too large is written to disk.  By default, any file
500     handle whose name begins with # is assumed to refer to a scratch
501     file.
502
503     Scratch files can be used just about anywhere a system or portable
504     file can be used.  Also, portable files are now allowed in most
505     places that system files were allowed in previous PSPP version.
506
507     A new CLOSE FILE HANDLE command allows the storage associated with
508     scratch files to be freed.  It also allows file handles to be
509     reassigned to new files.
510
511     For more information on scratch files, refer to the "File Handles"
512     section in the PSPP manual.  For specifics of what commands now
513     allow what kinds of files to be specified, refer to the
514     documentation on those particular commands.
515
516   Data access changes:
517
518     * Binary formats and IBM/360 formats, including ASCII/EBCDIC
519       translation, are now supported.  Use FILE HANDLE to specify the
520       format of these files.
521
522     * Little-endian, big-endian, and VAX-endian formats are now
523       supported for integer binary formats when reading and writing
524       data files.  The new RIB and WIB subcommands on the SET command
525       control endianness of integer data.  The default is the host's
526       native endianness.
527
528     * IEEE 754, VAX, and IBM hexadecimal formats are now supported for
529       floating point binary formats when reading and writing data
530       files.  The new RRB and WRB subcommands on the SET command
531       control the floating point format.  The default is the host's
532       native floating point format.
533
534     * DATA LIST now supports the SKIP subcommand, to skip records at
535       the beginning of a file.  For compatibility, DATA LIST now
536       treats N format as F format for FREE and LIST format input.
537
538     * The SAVE and XSAVE commands now support the UNSELECTED,
539       PERMISSIONS, NAMES, and MAP subcommands.
540
541     * The EXPORT command has been re-implemented to obtain better
542       results.  Support for the UNSELECTED, DIGITS, and TYPE
543       subcommands has been added.
544
545     * For compatibility, PRINT now inserts a space at the beginning of
546       every output line, even lines that would otherwise be blank,
547       when OUTFILE is specified.  (The behavior of WRITE is
548       unchanged.)
549
550     * For compatibility, PRINT EJECT now inserts the digit `1' at the
551       beginning of each line that should begin a new page.
552
553     * For compatibility, WRITE now outputs the system-missing value as
554       a field filled with spaces.  Binary formats are an exception.
555       (The behavior of PRINT is unchanged.)
556
557   Documentation:
558
559     * Input and output format descriptions have been rewritten.  They
560       now precisely describe what is accepted on input and written on
561       output.
562
563     * The descriptions of the PSPP system and portable file formats
564       have been extensively revised and improved.
565
566   For developers, the build system now requires Autoconf 2.60 and
567   Automake 1.10.
568 \f
569 Changes from 0.3.0 to 0.4.0:
570
571   Changes in build dependencies:
572
573     * The GNU Scientific Library (libgsl), version 1.6 or later, is
574       now required.
575
576     * libplot from GNU plotutils is optional.  Without it, the new
577       graphing features will not work.  If you do not have it
578       installed, you must run `configure' with --without-libplot.
579
580     * libgmp2 is no longer a dependency.
581
582   Newly implemented commands and statistical features:
583
584     * EXAMINE, including its graphing features.
585
586     * FREQUENCIES now supports percentiles.
587
588     * ONEWAY.
589
590     * PERMISSIONS.
591
592     * SHOW.
593
594     * SORT CASES now sorts stably, that is, two cases with equal sort
595       criteria will be in the same relative order before and after the
596       sort.
597
598     * T-TEST (re-written).
599
600     * DATE and USE.  These commands are parsed but otherwise ignored,
601       to enhance compatibility with certain command files that invoke
602       them unnecessarily.
603
604     * VARIABLE WIDTH, VARIABLE ALIGNMENT, and VARIABLE LEVEL.  These
605       currently have no effect on PSPP output, but their values are
606       written to and read from system files and thus may affect
607       third-party software.
608
609     * SET EPOCH implemented.
610
611     * DATA LIST FREE and DATA LIST LIST now support arbitrary field
612       delimiters.
613
614     * FILE HANDLE now supports custom tab widths.
615
616   Long variable names (and other identifiers) are now supported.  Up
617   to the first 64 bytes of each identifier is significant.  PSPP now
618   reads and writes system files compatible with SPSS version 12.
619
620   New --algorithm and --syntax command line options allow
621   SPSS-compatible or enhanced modes to be selected.
622
623   Support for transformation expressions has been rewritten and
624   significantly improved.  Refer to the manual for details.
625
626   Calculation of moments (mean, standard deviation, kurtosis,
627   skewness) has been rewritten and should now be more accurate.  In
628   --algorithm=enhanced mode moments may be more accurate than SPSS in
629   some cases.
630
631   Numerous bugs have been fixed, too many to mention here.  Many new
632   tests have been added, leading to the discovery and fixing of many
633   of these bugs.
634
635   The ASCII output driver can now squeeze multiple blank lines into
636   single blank lines.
637
638   Much of the code has been rewritten and refactored.  It is now much
639   cleaner.
640
641   The FILE TYPE and REPEATING DATA commands have been disabled for
642   this release because their implementations were deemed too buggy to
643   be useful.  They will be fixed and replaced in a future release.
644
645   New pspp-mode for Emacs (in pspp-mode.el).
646
647   Added rudimentary command-line completion for interactive input.
648
649   lib/julcal and lib/dcdflib are no longer used, so they have been
650   removed.
651
652   For developers, the build system now requires Autoconf 2.58 and
653   Automake 1.7.  The included gettext has been updated to version
654   0.12.1.
655
656   Some reports state that Texinfo 4.8, the latest version, may be
657   necessary to successfully format the documentation on some systems.
658
659 Version 0.3.0 changes since 0.2.3:
660
661   Bugs fixed:
662
663     * Using alphanumeric variables in functions under AGGREGATE
664       segfaulted.  Fixed.
665
666     * Under certain circumstances, the final case would be omitted
667       from the results of an AGGREGATE operation.  Fixed.
668
669     * Undefined behavior was invoked by referencing a freed pointer
670       under certain circumstances.  Fixed.
671
672     * A wrong record size was displayed when paging the active file to
673       disk.  Fixed.
674
675     * Not having enough temporary space for sorting caused a core
676       dump.  Fixed.
677
678     * Syntax errors in function descriptions on AGGREGATE caused core
679       dumps.  Fixed.
680
681     * A null pointer was dereferenced, causing a core dump, when
682       PERCENTILES was specified on FREQUENCIES.  This fixes the
683       problem, but PSPP still doesn't calculate percentiles.
684
685     * SORT always sorted in ascending order.  Fixed.
686
687     * Some minor memory leaks in the expression parser were removed.
688
689     * Many assertions fixed for strict ANSI C compliance.
690
691   New features:
692
693     * SET ECHO ON now implemented, but turned off by default.
694
695     * PRINT specifier supported on END REPEAT.
696
697   Other:
698
699     * System libgmp2 library is used if installed instead of
700       unconditionally using the included libgmp2 subset.
701
702     * Extensive code cleanup, which continues.
703
704     * Added CORRELATIONS command parser, but not implemented.
705
706 Version 0.2.3 changes since 0.2.2:
707
708   Bugs fixed:
709
710     * SPLIT FILE with a string variable caused a core dump.  Fixed.
711
712     * Nested INCLUDEs didn't work.  Fixed.
713
714     * The MATCH FILES procedure set the values of variables not present
715       to 0.  It should have been SYSMIS.  This is now fixed.
716
717     * The REMARK command was too aggressive about skipping lines.  It
718       didn't like being the last command in a file.
719
720     * Comment parsing wasn't consistent with the rest of the code in its
721       idea of where one command ends and another starts.  This meant
722       that sometimes commands would be mysteriously ignored.  Thanks to
723       Dr. Dirk Melcher <BZN-mdksh@t-online.de> for reporting this bug.
724
725     * The TABLE subcommand on MATCH FILES worked only erratically at
726       best.  This fixes it.  Thanks to Dr. Dirk Melcher
727       <BZN-mdksh@t-online.de> for reporting this bug.
728
729     * VARIABLE LABELS rejected a slash before the first variable
730       specification, contradicting the documentation.  Thanks to Walter
731       M. Gray <graywm@northernc.on.ca> for reporting this bug.
732
733     * Because of an incorrect optimization in memory allocation,
734       CROSSTABS sometimes segfaulted when asked to output multiple
735       tables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
736       reporting this bug.
737
738     * CROSSTABS didn't display value labels for column and row
739       variables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
740       reporting this bug.
741
742     * WRITE didn't write line ends.  Fixed.  Thanks to Dr. Dirk Melcher
743       <BZN-mdksh@t-online.de> for reporting this bug.
744
745     * The TABLE subcommand on MATCH FILES worked only erratically at
746       best.  This fixes it.  Thanks to Dr. Dirk Melcher
747       <BZN-mdksh@t-online.de> for reporting this bug.
748
749     * VARIABLE LABELS rejected a slash before the first variable
750       specification, contradicting the documentation.  Thanks to Walter
751       M. Gray <graywm@northernc.on.ca> for reporting this bug.
752
753     * Because of an incorrect optimization in memory allocation,
754       CROSSTABS sometimes segfaulted when asked to output multiple
755       tables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
756       reporting this bug.
757
758     * CROSSTABS didn't display value labels for column and row
759       variables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
760       reporting this bug.
761
762     * WRITE didn't write line ends.  Fixed.  Thanks to Dr. Dirk Melcher
763       <BZN-mdksh@t-online.de> for reporting this bug.
764
765     * MATCH FILES corrupted memory and dumped core on some syntax
766       errors.  Fixed.
767
768     * MATCH FILES should set numeric values not available to the
769       system-missing value, not to 0.  Thanks to Dr. Dirk Melcher
770       <BZN-mdksh@t-online.de> for reporting this bug.
771
772     * KEEP didn't work properly on the SAVE procedure.  Fixed.  Thanks
773       to Ralf Geschke <ralf@kuerbis.org> for reporting this bug.
774
775     * Memory leak fix.
776
777     * Some systems didn't like the way open_file was coded.  Thanks to
778       Hankin <hankin@rogue.consultco.com> for pointing this out.
779
780     * The SAVE procedure didn't save long string variables properly.
781       Fixed by this patch.  Thanks to Hankin
782       <hankin@rogue.consultco.com> for this patch.
783
784     * Minor documentation fixes for MATCH FILES.
785
786 Version 0.2.2 changes since 0.2.1:
787
788   Bugs fixed:
789
790     * Fix behavior of PRINT SPACE for negative arguments.
791
792     * Fix reading some unusual system files.
793
794     * Fix LIST problems with very long variables.  Thanks to Hankin
795       <hankin@dunno.com> for this bug report.
796
797     * Fix problems with some string format specifiers.
798
799     * Fix use of $CASENUM in expressions.  Thanks to Dirk Melcher
800       <BZN-mdksh@t-online.de> for reporting this bug.
801
802     * Additional DATA LIST FREE and DATA LIST LIST fixes.  Thanks to
803       Hankin <hankin@dunno.com> again on this one.
804
805     * Sometimes you may encounter a PSPP script that has to be
806       interpreted in interactive mode.  Now you can use the -i flag to
807       do this.
808
809     * Warnings for egcs 1.1.1 cleaned up.  (However you'll get lots of
810       `unused variable' warnings under gcc 2.7.2.3, fixing this will
811       take more effort.)
812
813     * Tests fixed.
814
815     * The files in gmp need the internationalization directory in
816       their include path.  Thanks to OKUJI Yoshinori
817       <okuji@kuicr.kyoto-u.ac.jp> for pointing this out.
818
819 Version 0.2.1 changes since 0.2.0:
820
821   Bugs fixed:
822
823     * Remember to include examples/ directory in distribution :-)
824
825     * Fixed gmp compile problems for some non-i386 architectures.
826       Thanks to Hans Olav Eggestad <olav@jordforsk.nlh.no> and others
827       for reporting this.
828
829     * DATA LIST FREE and DATA LIST LIST parsing of input files is now
830       matches the documented behavior exactly, and error messages are
831       more helpful.  Thanks to Mark H. Wood <mwood@IUPUI.Edu>.
832
833 Version 0.2.0 changes since 0.1.0:
834
835   Procedures now implemented:
836     * CROSSTABS.  Please see documentation for caveats.
837
838   Transformations and utilities now implemented:
839     * AGGREGATE
840     * APPLY DICTIONARY
841     * CLEAR TRANSFORMATIONS
842     * DISPLAY (all subcommands).
843     * ERASE
844     * FLIP
845     * EXPORT
846     * HOST
847     * IMPORT
848     * MATCH FILES
849     * MATRIX DATA
850     * NEW FILE
851     * REPEATING DATA
852
853   Support for input and output through pipes: "|command" and
854   "command|" filenames; support for special filenames "-", "stdin",
855   "stdout", "stderr".
856
857   New command-line features:
858     * New option --testing-mode: Invoke heuristics to assist testing.
859     * New option --safer, -s: Don't allow certain unsafe operations.
860     * New option --command=CMD, -c CMD: Perform literal command CMD.
861     * rc file ~/.pspp/rc is executed before any other files.
862     * Now multiple syntax files can be specified.
863
864   Operator LAG is now implemented.
865
866   Added missing FILE subcommand to REREAD.
867
868   Table output manager completely rewritten.
869
870   Device configuration file syntax changed.  You will need to
871   reinstall your `devices' file.
872
873   New output driver for HTML.
874
875   PostScript driver and prologue simplified.
876
877   Many bugs fixed.  General source-code cleanup.
878
879   Added Texinfo documentation for:
880     * PSPP system file format
881     * PSPP portable file format
882     * How to write input for q2c parser generator
883     * HTML driver
884
885   PSPP language is now fully documented.  Please report any
886   inaccuracies or omissions in the documentation.
887
888 Changes for version 0.1.0:
889
890   First public release.  For changes from unreleased development
891   versions, please see ONEWS.
892 \f
893 ----------------------------------------------------------------------
894 Copyright information:
895
896    Permission is granted to anyone to make or distribute verbatim
897    copies of this document as received, in any medium, provided that
898    the copyright notice and this permission notice are preserved, thus
899    giving the recipient permission to redistribute in turn.
900
901    Permission is granted to distribute modified versions of this
902    document, or of portions of it, under the above conditions,
903    provided also that they carry prominent notices stating who last
904    changed them.
905 \f
906 Local variables:
907 version-control: never
908 mode: indented-text
909 end: