* groff-font.c (font_msg): Use err_vmsg() instead of incorrectly
[pspp-builds.git] / src / ChangeLog
1 Mon Oct 24 21:35:08 2005  Ben Pfaff  <blp@gnu.org>
2
3         * groff-font.c (font_msg): Use err_vmsg() instead of incorrectly
4         trying to pass a va_list to tmsg().  Thanks to Jason Stover for
5         reporting this bug.
6
7 Mon Oct 24 21:24:15 2005  Ben Pfaff  <blp@gnu.org>
8
9         Work to get rid of GCC 4.0 warnings, part 2.
10
11         In many files, change `unsigned char' to `char'.  This often
12         requires adding casts to <ctype.h> functions.
13
14         * data-in.c: (parse_A) Use buf_copy_rpad().
15
16         * str.c: (str_copy_buf_trunc) New function.
17
18         * value-labels.c: (value_to_string) Fix mistaken use of strncpy(),
19         by rewriting.
20
21 Mon Oct 24 13:42:32 WST 2005 John Darrington <john@darrington.wattle.id.au>
22
23         Moved some definitions to make it easier to abstract a dictionary 
24         from the rest of PSPP.
25
26         * format-prs.c lex-def.[ch]:  New files.
27
28         * Makefile.am lexer.[ch] dictionary.c vars-atr.c vfm.c algorithm.c 
29           format.c:  Moved some functions between modules.
30         
31 Sun Oct 23 19:28:08 2005  Ben Pfaff  <blp@gnu.org>
32
33         Work to get rid of GCC 4.0 warnings, part 1.
34         
35         In many files, change count parameters to parse_variables(),
36         etc. from `int' to `size_t'.  Also change related variables and
37         struct members.  Also change messages as needed (e.g. %d to %u
38         with cast to unsigned).  Also change arithmetic as necessary
39         (e.g. n >= m - 1 to n + 1 >= m). 
40
41         * crosstabs.q: (crs_custom_tables) Check for size_t overflow in
42         multiplication.
43
44         * q2c.c: (dump_declarations) Generate code for size_t instead of
45         int.
46         
47 Thu Oct 20 18:18:40 2005  Ben Pfaff  <blp@gnu.org>
48
49         * output.c: (outp_read_devices) Fix message.
50
51 Sat Sep 17 11:13:13 2005  Ben Pfaff  <blp@gnu.org>
52
53         * matrix-data.c: (cmd_matrix_data) Change type of variable whose
54         address is passed to dict_get_vars() from size_t to int to match
55         John's change below.
56
57         * modify-vars.c: (validate_var_modification) Ditto.
58
59 Mon Sep 12 19:26:06 WST 2005 John Darrington <john@darrington.wattle.id.au>
60
61         * dictionary.[ch]  Changed cnt from size_t* to int* since that's
62         what it's called as, and on  x86_64 machines they're different sizes.
63         
64         * str.c: (ds_vprintf) Copied va_list args so they can be re-used
65         
66 Sun Aug 21 00:12:24 2005  Ben Pfaff  <blp@gnu.org>
67
68         * lexer.c: (lex_sbc_only_once) New function.
69         (lex_sbc_missing) New function.
70
71 Sun Aug 21 00:00:47 2005  Ben Pfaff  <blp@gnu.org>
72
73         * case.h: (case_str) Make it return `unsigned char'.
74
75 Sat Aug 20 23:56:14 2005  Ben Pfaff  <blp@gnu.org>
76
77         Revamp SAVE, XSAVE, EXPORT.  Add (or at least parse) all the
78         subcommands that we didn't support.  Fix bug 13911.  Fix bug
79         reported by Adam Pierson (COMPRESSED and other subcommands didn't
80         work on SAVE).  Refactor all related code.
81         
82         * command.def: Add XEXPORT command.
83
84         * dictionary.c: (dict_delete_scratch_vars) New function.
85
86         * get.c: (cmd_get) Fix parsing.
87         (struct save_trns) Removed.
88         (cmd_save_internal) Removed.
89         (cmd_save) Removed.
90         (do_write_case) Removed.
91         (save_write_case_func) Removed.
92         (save_trns_proc) Removed.
93         (save_trns_free) Removed.
94         (trim_dictionary) Removed.
95         (struct export_proc) Removed.
96         (cmd_export) Rewrote.
97         (export_write_case_func) Removed.
98         (export_proc_free) Removed.
99         (enum writer_type) New enum.
100         (enum command_type) New enum.
101         (struct any_writer) New struct.
102         (any_writer_destroy) New function.
103         (parse_write_command) New function.
104         (any_writer_write_case) New function.
105         (parse_output_proc) New function.
106         (output_proc) New function.
107         (cmd_save) Rewrote.
108         (cmd_xsave) Rewrote.
109         (struct output_trns) New struct.
110         (parse_output_trns) New function.
111         (output_trns_proc) New function.
112         (output_trns_free) New function.
113         (cmd_xsave) Rewrote.
114         (cmd_xexport) New function.
115         (parse_dict_trim) New function.
116         (struct mtf_proc) Change `by_cnt' member type to `int'.
117         (cmd_import) Rewrote.
118
119         * pfm-write.c: (struct pfm_writer) Add `digits' member.
120         (pfm_writer_default_options) New function.
121         (pfm_open_writer) Add `opts' argument and handle options.
122         (write_float) Write only as many digits as `digits' member says.
123         (format_trig_double) Limit base-10 precision to LDBL_DIG.
124
125         * pfm-write.h: (enum pfm_type) Moved here from pfm-read.h.
126         (struct pfm_write_options) New struct.
127
128         * sfm-write.c: (sfm_writer_default_options) New function.
129         (sfm_open_writer) Remove `compress', `omit_long_names' args.  Add
130         `opts' argument.  Implement options.
131
132         * sfm-write.h: (struct sfm_write_options) New struct.
133
134         * expressions/helpers.c: (copy_string) Make `old' arg `unsigned
135         char *' instead of `char *'.
136         
137 Sat Aug  6 21:29:15 2005  Ben Pfaff  <blp@gnu.org>
138
139         * factor_stats.c: Needed <config.h> included earlier.
140
141         * percentiles.c: Needed to include <config.h>.
142
143         * val.h: Don't include "config.h".
144
145 Sat Aug  6 21:26:27 2005  Ben Pfaff  <blp@gnu.org>
146
147         Clean up treatment of missing values by moving all the code into
148         one place.  All references to the missing value function were
149         updated, but only major changes are detailed below.
150
151         * Makefile.am: Add missing-values.c, missing-values.h to sources.
152
153         * apply-dict.c: (cmd_apply_dictionary) Use mv_resize().
154
155         * dictionary.c: (dict_create_var) Initialize `miss' member with
156         mv_init().
157         (dict_clone_var) Copy `miss' member with mv_copy().
158         
159         * get.c: (mtf_merge_dictionary) Use mv_copy().
160
161         * missing-values.c: New file.
162         
163         * missing-values.h: New file.
164
165         * mis-val.c: Rewrite.  New version implements updated semantics.
166
167         * pfm-read.c: (read_variables) Rewrite missing value handling.
168
169         * pfm-write.c: (write_variables) Rewrite missing value handling.
170
171         * sfm-read.c: (read_variables) Rewrite missing value handling.
172
173         * sfm-write.c: (write_variable) Rewrite missing value handling.
174
175         * sfmP.h: Include "magic.h" to get definition of
176         second_lowest_value.
177
178         * sysfile-info.c: (describe_variable) Rewrite missing value
179         handling.
180
181         * val.h: Include "magic.h" to get definition of
182         second_lowest_value.
183
184         * var.h: Include "missing-values.h".  Drop MISSING_* enums.
185         (struct variable) Remove `miss_type', `missing'.  Add `miss'.
186
187         * vars-atr.c: (is_num_user_missing) Removed--use
188         mv_is_num_user_missing().
189         (is_str_user_missing) Removed--use mv_is_str_user_missing().
190         (is_system_missing) Removed--use mv_is_value_system_missing().
191         (is_missing) Removed--use mv_is_value_missing().
192         (is_user_missing) Removed--use mv_is_value_user_missing().
193         
194 Sun Jul 31 14:09:57 2005  Ben Pfaff  <blp@gnu.org>
195
196         Adopt use of gnulib for portability.
197
198         * Make.build: Add $(top_srcdir)/gl and $(top_builddir)/gl to
199         include path.
200
201         * Makefile.am: Remove bool.h, stat.h and change getline.[ch] to
202         getl.[ch] in pspp_SOURCES.  Remove libmisc, add libgl in
203         pspp_LDADD.
204
205         * In many source files, added an explicit inclusion of gettext.h
206         and definition of _ macro.  These are no longer in pref.h because
207         it interfered with definitions in a few gnulib source files.
208
209         * In many source files, changed #include "bool.h" to #include
210         <stdbool.h>, which is provided by gnulib.
211
212         * alloc.c: Removed functions defined in gnulib:
213         (xmalloc) Removed.
214         (xcalloc) Removed.
215         (xrealloc) Removed.
216         (xstrdup) Removed.
217         (out_of_memory) Redefined as wrapper for xalloc_die().
218
219         * alloc.h: Replace prototypes by #include "xalloc.h".
220
221         * casefile.c: Use full_read() and full_write() from gnulib instead
222         of our home-grown versions.
223         (full_read) Removed.
224         (full_write) Removed.
225
226         * getline.c: Renamed getl.c.
227
228         * getline.h: Renamed getl.h, updated all references.
229
230         * filename.c: (fn_readlink) Change to wrapper around xreadlink()
231         from gnulib.
232
233         * glob.c: Just #include <time.h> instead of the crazy rigmarole
234         here before.
235         (init_glob) Call set_program_name() to initial gnulib progname
236         module.
237
238         * html.c: (postopen) Use getlogin_r(), gethostname() from gnulib.
239
240         * permissions.c: Use "stat-macros.h" from gnulib.
241
242         * postscript.c: Just #include <time.h> instead of the crazy
243         rigmarole here before.
244
245         * q2c.c: (main) Make generated code #include "gettext.h".
246
247         * str.h: Get rid of most explicit declarations of standard
248         functions, in favor of including gnulib header files.
249
250         * expressions/evaluate.c: Ditto.
251
252         * expressions/operations.h.pl: Make generated code #include
253         <stdbool.h>, not "bool.h".
254
255 Sat Jul 30 23:13:17 2005  Ben Pfaff  <blp@gnu.org>
256
257         * expressions/parse.c: (validate_function_args) Fix two msg() bugs
258         found by -Wformat.
259
260 Sat Jul 30 23:10:01 2005  Ben Pfaff  <blp@gnu.org>
261
262         * expressions/evaluate.c: (expr_debug_print_postfix) Don't pass
263         null pointer to printf for %.*s.
264
265 Sat Jul 30 23:05:33 2005  Ben Pfaff  <blp@gnu.org>
266
267         * vars-atr.c: (var_is_valid_name) Fix three msg() bugs found by
268         -Wformat.
269
270 Sat Jul 30 22:58:33 2005  Ben Pfaff  <blp@gnu.org>
271
272         * rank.q: (parse_rank_function) Fix msg() bug found by -Wformat.
273
274 Sat Jul 30 22:56:12 2005  Ben Pfaff  <blp@gnu.org>
275
276         * postscript.c: (postopen) Cast `char' to `unsigned char' before
277         passing to isspace().
278
279 Sat Jul 30 22:52:09 2005  Ben Pfaff  <blp@gnu.org>
280
281         * pfm-read.c: (read_variables) Fix msg() bug found by -Wformat.
282
283 Sat Jul 30 22:50:57 2005  Ben Pfaff  <blp@gnu.org>
284
285         * histogram.c: Include <config.h>.
286
287 Sat Jul 30 22:48:50 2005  Ben Pfaff  <blp@gnu.org>
288
289         * get.c: (cmd_match_files) Fix msg() bug found by -Wformat.
290
291 Sat Jul 30 22:46:10 2005  Ben Pfaff  <blp@gnu.org>
292
293         * format.c: (check_common_specifier) Fix msg() bug found by
294         -Wformat.
295         (check_output_specifier) Ditto.
296
297 Sat Jul 30 22:43:57 2005  Ben Pfaff  <blp@gnu.org>
298
299         * file-handle.q: (cmd_file_handle) Fix msg() bug found by
300         -Wformat.
301
302 Sat Jul 30 22:41:44 2005  Ben Pfaff  <blp@gnu.org>
303
304         * data-in.c: (parse_Z) [WORDS_BIGENDIAN] Don't declare buf[], to
305         avoid "unused variable" warning.
306
307 Sat Jul 30 22:38:46 2005  Ben Pfaff  <blp@gnu.org>
308
309         * command.c: (find_word) Cast `char' to `unsigned char' before
310         passing to isspace().
311
312 Sat Jul 30 22:36:29 2005  Ben Pfaff  <blp@gnu.org>
313
314         * case.c: (case_compare) Implement as delegating to
315         case_compare_2dict().
316
317 Sat Jul 30 22:34:18 2005  Ben Pfaff  <blp@gnu.org>
318
319         * algorithm.c: Inclusion of <alloca.h> is unneeded.
320
321 Sat Jul 30 22:01:32 2005  Ben Pfaff  <blp@gnu.org>
322
323         * Make.build: Don't append -ansi to AM_CFLAGS for GCC.  Using
324         -ansi changes the behavior of header files significantly.  It
325         causes __STRICT_ANSI__ to be defined, and some headers interpret
326         that as cause to e.g. not use `long long' or __attribute__.  The
327         former example is bad when off_t is supposed to be `long long',
328         and the latter prevents -Wformat from working.
329
330 Sun Jul 24 20:26:59 2005  Ben Pfaff  <blp@gnu.org>
331
332         Get rid of dependency on libgmp by writing our own routine for
333         floating-point base conversion.
334
335         * pfm-write.c: (write_float) Rewrote.
336         (write_int) Rewrote.
337         (pow30_nonnegative) New function.
338         (pow30) New function.
339         (trig_to_char) New function.
340         (format_trig_digits) New function.
341         (recurse_format_trig_int) New function.
342         (format_trig_int) New function.
343         (should_round_up) New function.
344         (try_round_up) New function.
345         (format_trig_double) New function.
346
347 Sun Jul 24 18:49:20 2005  Ben Pfaff  <blp@gnu.org>
348
349         * data-in.c: (parse_numeric) Allow "1+23" even for F format, for
350         compatibility.
351
352 Sun Jul 24 18:47:37 2005  Ben Pfaff  <blp@gnu.org>
353
354         * pfm-read.c: (read_version_data) Read and ignore author field.
355
356 Wed Jul  6 20:44:27 2005  Ben Pfaff  <blp@gnu.org>
357
358         * get.c: (mtf_processing) Don't assume that
359         mtf_compare_BY_values() always returns -1, 0, or 1.  Actually, it
360         returns a negative, zero, or positive result.  Fixes MATCH FILES
361         bug on Mac OS X reported by "Marshall DeBerry" <mdb@radix.net>.
362
363 Mon Jul  4 18:01:15 2005  Ben Pfaff  <blp@gnu.org>
364
365         * flip.c: [HAVE_SYS_TYPES_H] Really include <sys/types.h>.  The
366         preprocessor test for sys/types.h was accidentally inverted.  This
367         was bug 12789.
368
369 Sun Jul  3 22:47:39 2005  Ben Pfaff  <blp@gnu.org>
370
371         * get.c: (cmd_match_files) Fix memory leak on `by' and on
372         `vfm_source'.
373
374         * getline.c: [HAVE_LIBREADLINE] (read_console) Fix memory leak on
375         `line'.
376
377         * vfm.c: (close_active_file) Remove unnecessary test.
378
379 Sun Jul  3 21:45:32 2005  Ben Pfaff  <blp@gnu.org>
380
381         Fix NDEBUG compile errors.
382
383         * hash.h: Needed explicit #include <assert.h>.
384
385         * linked-list.c: (ll_next) First arg is UNUSED when NDEBUG is
386         defined.
387
388 Sun Jun 12 23:44:38 2005  Ben Pfaff  <blp@gnu.org>
389
390         Implement embedding for PostScript driver.  Fixes bug 12970.
391
392         * ascii.c: Fix compiler warnings.
393
394         * html.c: Ditto.
395
396         * chart.h: Add `file' member.
397
398         * output.h: (struct outp_class) initialise_chart, finalise_chart
399         should take outp_driver *, not outp_class *.  Update all
400         references.
401
402         * plot-chart.c: (chart_create) Fix segfault when there are no
403         output drivers at all.
404         (chart_submit) Call d->class->finalise_chart.
405
406         * postscript.c: (ps_open_page) Set cp_y to 0.
407         (ps_submit) New function.
408         (ps_chart_initialise) Implement.
409         (ps_chart_finalise) Implement.
410         (static var postscript_class) Add ps_submit.
411         (static var epsf_class) Add ps_submit.
412         
413
414 Sun Jun 12 14:54:40 2005  Ben Pfaff  <blp@gnu.org>
415
416         Did some more work on bug 12859 and then realized that a *good*
417         solution would require some fundamental restructuring.  For now,
418         I'm marking REPEATING DATA unimplemented, and then we can revisit
419         it post-0.4.0.
420         
421         * command.def: Make REPEATING DATA unimplemented.
422
423         * data-list.c: (cmd_repeating_data) Assume inline file is 80
424         characters wide.
425         (realize_value) Revert previous changes; no longer needed.
426         Updated all callers.
427
428         * error.c: (err_hcf) Set nfile_loc, mfile_loc to 0 after freeing
429         file_loc, to avoid bad references later.
430
431         * str.c: Fix typo.
432
433 Tue Jun  7 00:14:09 2005  Ben Pfaff  <blp@gnu.org>
434
435         Make some code tolerant of reentry.  Should not be needed if other
436         code is correct but it is good to be generally tolerant.
437         
438         * error.c: (err_hcf) Set file_loc to null after free().
439
440         * output.c: (outp_done) Similar changes.
441
442         * str.c: (ds_destroy) Ditto.
443         
444 Tue Jun  7 00:10:20 2005  Ben Pfaff  <blp@gnu.org>
445
446         Continue work on bug 12859, plus some code cleanup.
447         
448         * data-list.c: (cmd_repeating_data) Replace `seen' bitmap by
449         boolean variables.  Don't try to compute starts_end, cont_end for
450         inline file.  Calculate length only after parsing variable
451         specifications.  Add proper transformation to list.
452         (realize_value) If the rpd_num_or_var has no value, return new
453         DEFAULT_MEMBER argument (for use with inline file).
454         (repeating_data_trns_proc) Pass default values.
455
456         * dfm-read.c: (dfm_close_reader) Only skip data if *not* still
457         open, and only if we actually started reading data.
458
459 Sun Jun  5 18:39:36 2005  Ben Pfaff  <blp@gnu.org>
460
461         Fix bug 11894.
462         
463         * output.c: (outp_read_devices) Fix message.
464
465 Fri May 27 12:34:43 WST 2005 John Darrington <john@darrington.wattle.id.au>
466         
467         * sort-prs.[ch] (newfiles), aggregate.c, sort.[ch]: Separated the guts 
468         of the sort algorithm from the parser for the SORT command.
469         
470         * rank.q: Added the parser for the RANK command.
471         
472 Thu May 26 12:29:21 2005  Ben Pfaff  <blp@gnu.org>
473
474         Fix bug 13192.
475
476         * sort.c: (sort_parse_criteria) Only set *saw_direction if
477         saw_direction is non-null.  Thanks to John Darrington for
478         reporting this bug.
479
480 Tue May 24 21:52:55 2005  Ben Pfaff  <blp@gnu.org>
481
482         * get.c: (mtf_processing) Handle case of a lookup table as the
483         active file.  Thanks to John Darrington for reporting this bug.
484
485 Wed May 25 10:27:02 WST 2005 John Darrington <john@darrington.wattle.id.au>
486         
487         * alloc.c alloc.h: (xcalloc) changed signature to imitate the
488         POSIX  calloc function.
489         
490         * crosstabs.q get.c vars-prs.c: Updated calls to xcalloc to
491         reflect new signature.
492
493         * sfm-read.c: Now much more robust in the face of badly formed
494         system files.
495
496 Mon May 23 11:57:31 WST 2005 John Darrington <john@darrington.wattle.id.au>
497
498         *sfm-read.c: Fixed some bugs regarding long string continuation
499         records, which the previous fix uncovered.
500
501 Sat May 21 12:48:34 WST 2005 John Darrington <john@darrington.wattle.id.au>
502
503         * sfm-read.c, sfmP.h:  Allow reading of system files when the 
504         case_size value in the header is -1.  Also changed some Errors to 
505         Warnings when reading system files.
506
507 Tue May 17 21:00:57 2005  Ben Pfaff  <blp@gnu.org>
508
509         * data-list.c: (data_list_trns_free) Don't free the argument
510         because cancel_transformations() will do that itself.
511         (data_list_source_destroy) Destroy the argument to
512         data_list_trns_free(), because it no longer does so itself.
513
514 Tue May 17 18:29:35 2005  Ben Pfaff  <blp@gnu.org>
515
516         * data-out.c: (format_and_round) Don't output leading `-' if value
517         rounds to zero.
518
519 Tue May 17 00:06:43 2005  Ben Pfaff  <blp@gnu.org>
520
521         Fix bug 11119.
522
523         * som.c: (output_encodings) If some cell in the table won't fit
524         with the horizontal or vertical headers, cancel those headers.
525
526         * som.h: (struct som_table_class) Add fits_width, fits_length,
527         set_headers members.
528
529         * tab.c: (tabi_fits_width) New function.
530         (tabi_fits_length) New function.
531         (tabi_set_headers) New function.
532         (global var tab_table_class) Add the new functions as appropriate
533         members.
534         
535 Mon May 16 22:34:06 2005  Ben Pfaff  <blp@gnu.org>
536
537         Fix rest of bug 13054.
538
539         * format.def: Fix EDATE, SDATE, ADATE, JDATE, QYR, MOYR, WKYR,
540         DATETIME, TIME system/portable file values.
541
542 Mon May 16 22:31:15 2005  Ben Pfaff  <blp@gnu.org>
543
544         * data-list.c: (parse_free) Use make_input_format().
545         
546         * data-out.c: (num_to_string) Use make_output_format().
547
548         * dictionary.c: (dict_create_var) Ditto.
549
550         * format.c: (global var f8_2) New var.
551         (make_input_format) New function.
552         (make_output_format) New function.
553
554         * get.c: (cmd_match_files) Use make_output_format().
555
556         * list.q: (cmd_list) Ditto.
557
558         * matrix-data.c: Ditto.
559
560         * sfm-read.c: (parse_format_spec) Check output specifier
561         thoroughly.
562
563         * tab.c: (tab_float) Use make_output_format().
564
565 Sun May 15 23:38:10 2005  Ben Pfaff  <blp@gnu.org>
566
567         Fix more of bug 13054.
568         
569         * format.def: FMT_A should allow 255-character output.  FMT_AHEX
570         should allow 510-character input and output.
571
572         * data-out.c: (num_to_string) Get rid of NEW_STYLE option.
573         (convert_E) Handle non-finite values.
574         (try_F) Rewrite.
575         (format_and_round) New function.
576         (convert_infinite) New function used by try_F() and convert_E().
577
578 Sun May 15 23:36:55 2005  Ben Pfaff  <blp@gnu.org>
579
580         Regularize string and buffer function names so that they make some
581         kind of sense.
582
583         * str.c: (mm_reverse) Rename buf_reverse().  Update all
584         references.
585         (mm_find_reverse) Rename buf_find_reverse().  Update all
586         references.
587         (mm_case_compare) Rename buf_compare_case().  Update all
588         references.
589         (st_compare_pad) Rename buf_compare_rpad().  Update all
590         references.
591         (str_compare_rpad) New function.
592         (st_bare_pad_copy) Rename buf_copy_str_rpad().  Update all
593         references.
594         (buf_copy_str_lpad) New function.
595         (st_bare_pad_len_copy) Rename buf_copy_rpad().  Update all
596         references.
597         (st_pad_copy) Rename str_copy_rpad().  Update all references.
598         (st_trim_copy) Rename str_copy_trunc().  Update all references.
599         (st_uppercase) Renamed str_uppercase().  Update all references.
600         
601 Sat May 14 08:22:26 WST 2005 John Darrington <john@darrington.wattle.id.au>
602
603         * dfm-read.c: Fixed polarity of test in dfm-close-reader.  Closes 
604         Bug #13082
605
606 Tue May 10 20:08:18 2005  Ben Pfaff  <blp@gnu.org>
607
608         * data-in.c: (data_in) Add assertion to check input specifier.
609
610         * data-out.c: (data_out) Add assertion to check output specifier.
611
612 Tue May 10 19:56:35 2005  Ben Pfaff  <blp@gnu.org>
613
614         Start to fix bug 13054.
615
616         * format.c: (check_input_specifier) Improve error message.
617         (check_input_specifier) Check F, COMMA, and DOLLAR formats for
618         valid decimal places.
619         (check_output_specifier) Ditto (but different criteria).
620         (convert_fmt_ItoO) Assert valid input and output specifiers.
621         Also, if input specifier has *any* decimal places, make the output
622         specifier 1 place wider.
623
624 Mon May  9 07:14:29 WST 2005 John Darrington <john@darrington.wattle.id.au>
625
626         * sysfile-info.c: Fixed bug [# 13024 ]
627
628 Sun May  8 13:52:12 2005  Ben Pfaff  <blp@gnu.org>
629
630         "Fix" bug 13021 by disabling FILE TYPE.  Eventually, we should
631         actually implement it.
632
633         * command.c: (FILE_TYPE_okay) Always return 1.
634
635         * command.def: Change FILE TYPE, END FILE TYPE into UNIMPL.
636
637         * file-type.c: Add prototypes to get rid of warnings.
638
639 Sun May  8 08:08:07 WST 2005 John Darrington <john@darrington.wattle.id.au>
640
641         * barchart.c box-whisker.c cartesian.c piechart.c plot-hist.c: Fixed 
642         more ISO/IEC 9899:1990 conformance issues.
643
644 Wed May  4 23:54:02 2005  Ben Pfaff  <blp@gnu.org>
645
646         Fix bug 12948.  See also new test in
647         tests/bugs/match-file-scratch.sh.
648         
649         * get.c: (mtf_merge_dictionary) Don't compact dictionary because
650         that deletes scratch variables that someone else might be using,
651         and because we can't reassign our sources' value indexes.
652         Instead, simply don't copy scratch variables into the master
653         dictionary.
654
655         * dictionary.c: (dict_compact_values) Delete variables from the
656         dictionary passed in, not from default_dict (!).
657
658 Tue May  3 22:25:17 2005  Ben Pfaff  <blp@gnu.org>
659
660         Improve hash.c comments, error-checking.
661         
662         * hash.c: (struct hsh_table) [NDEBUG] Add hash_ordered member.
663         (hsh_create) size == 0 should *not* return NULL!  Set
664         hash_ordered.
665         (hsh_clear) Set hash_ordered.
666         (locate_matching_entry) Check hash_ordered.
667         (hsh_rehash) Rename rehash().  Add assertion.  Set hash_ordered.
668         (hsh_data) Set hash_ordered.  Add const-ness to return value and
669         update all callers.
670         (hsh_sort) Ditto.       
671
672 Wed May  4 08:50:11 WST 2005 John Darrington <john@darrington.wattle.id.au>
673
674         * casefile.c: Removed unnecessary #include <valgrind/valgrind.h>
675
676 Tue May  3 19:14:48 WST 2005 John Darrington <john@darrington.wattle.id.au>
677
678         * copyleft.c: Updated copyright date.
679
680         * Makefile.am: Removed erroneous explicit "-lplot"
681
682         * examine.q oneway.q: Made these files conform to ISO/IEC 9899:1990
683
684 Tue May  3 16:20:31 WST 2005 John Darrington <john@darrington.wattle.id.au>
685
686         * command.c command.def: Added description string for unimplemented commands.
687
688         * oneway.q: Sorted the hash tables before shipping out the results. Closes 
689         bug [#12931].
690
691 Mon May  2 23:45:01 2005  Ben Pfaff  <blp@gnu.org>
692
693         Code improvements.
694         
695         * data-list.c:  (parse_fixed) Use lex_end_of_command().
696         (parse_free) Ditto.
697         (cmd_repeating_data) Set cont_end.num in right situations.
698         (parse_repeating_data) Remove redundant test.
699
700 Mon May  2 23:37:19 2005  Ben Pfaff  <blp@gnu.org>
701
702         Partial fix for bug 12859.
703         
704         * data-list.c: (cmd_data_list) Add transformation properly in
705         vfm_source == NULL case.
706
707 Mon May  2 23:27:28 2005  Ben Pfaff  <blp@gnu.org>
708
709         * lexer.c: (lex_error) Improve error messages.
710
711 Mon May  2 22:28:17 2005  Ben Pfaff  <blp@gnu.org>
712
713         * get.c: (cmd_match_files) Check token type before trying to match
714         tokid.  Fixes bug 12923.
715
716 Mon May  2 22:16:51 2005  Ben Pfaff  <blp@gnu.org>
717
718         * flip.c: [HAVE_SYS_TYPES_H] Include <sys/types.h>.  Fixes bug
719         12789.
720
721 Mon May  2 22:02:52 2005  Ben Pfaff  <blp@gnu.org>
722
723         * expressions/generate.pl: (get_token) Make use of /g
724         backward-compatible with Perl 5.6.1.
725
726 Sun May  1 23:00:19 2005  Ben Pfaff  <blp@gnu.org>
727
728         * var-display.c: (cmd_variable_alignment) Fix memory leak.
729         (cmd_variable_level) Ditto.
730
731 Sun May  1 22:49:04 2005  Ben Pfaff  <blp@gnu.org>
732
733         Hash table had buggy deletion function.  The fix required changing
734         other functions to do probing in the required order.
735
736         * hash.c: (locate_matching_entry) Rewrite and change interface.
737         (hsh_rehash) Rewrite to use locate_matching_entry().
738         (hsh_probe) Ditto.
739         (hsh_find) Ditto.
740         (hsh_delete) Ditto.  Also, fix stupid bugs.
741
742 Sun May  1 22:24:58 2005  Ben Pfaff  <blp@gnu.org>
743
744         * dictionary.c: (dict_clone) Properly copy vectors.
745
746 Sun May  1 22:07:58 2005  Ben Pfaff  <blp@gnu.org>
747
748         New implementation of long variable names.  Each variable has a
749         "normal" name, which may be up to 64 bytes long and which is used
750         for all normal operations.  Variables may have a "short" name,
751         which is limited to 8 bytes and used only for system and portable
752         file input and output.
753         
754         Make tokid case-preserving.  Update most uses of tokid to treat it
755         case-insensitively.
756
757         Update many commands to deal with long variable names.
758
759         * autorecode.c: (cmd_autorecode) Use strcasecmp() instead of strcmp().
760
761         * command.c: (cmd_parse) Ditto.
762         (match_strings) Use toupper() before comparing characters.
763         (conflicting_3char_prefixes) Use mm_case_compare() instead of
764         memcmp().
765         (cmd_match_words) Ditto.
766
767         * compute.c: (lvalue_parse) Use st_trim_copy() instead of
768         strncpy().
769
770         * count.c: (struct cnt_var_info) Change n[] to fit long var name.
771         Use st_trim_copy() instead of strcpy().
772
773         * data-in.c: (parse_enum) Use mm_case_compare() instead of
774         memcmp().
775
776         * data-list.c: (struct dls_var_spec) Change name[] to fit long var
777         name.
778         (parse_free) Use st_trim_copy() instead of strcpy().
779
780         * descript.c: (struct dsc_var) Change z_name[] to fit long var
781         name.
782         (try_name) Use strcasecmp() instead of strcmp().
783         (generate_z_varname) Use st_trim_copy() instead of strcpy().
784         (descriptives_compare_dsc_vars) Use strcasecmp() instead of
785         strcmp().
786
787         * dictionary.c: (struct dictionary) Removed `long_name_tab'
788         member.
789         (compare_long_names) Removed.
790         (hash_long_name) Removed.
791         (dict_create) Don't initialize `long_name_tab' member.
792         (dict_clone) Copy short names into new dictionary. 
793         (dict_clear) Don't clear `long_name_tab' member.
794         (dict_get_varname_block) Removed.
795         (dict_add_longvar_entry) Removed.
796         (free_nte) Removed.
797         (dict_destroy) Don't destroy `long_name_tab' member.
798         (dict_create_var_from_short) Removed.
799         (dict_create_var_x) Removed.
800         (dict_create_var) Get rid of longname handling.
801         Clear short name.
802         (dict_clone_var) Get rid of longname parameter and longname
803         handling.
804         (dict_lookup_var) Get rid of longname handling.
805         (dict_reorder_var) New function.
806         (dict_rename_var) Clear short name.
807         (dict_rename_vars) Get rid of longname handling.  Clear short
808         names.
809         (dict_create_vector) Support long vector names.
810         (dict_lookup_vector) Use strcasecmp() instead of strcmp().
811         (quasi_base27) Removed.
812         (make_short_name) Removed.
813         (compare_strings) New function.
814         (hash_string) New function.
815         (dict_assign_short_names) New function.
816
817         * file-handle.q: (get_handle_with_name) Use strcasecmp() instead
818         of strcmp().
819         (get_handle_for_filename) Support long handle names.
820
821         * file-type.c: (struct col_spec) Make `name' fit long var names.
822         (cmd_file_type) Use strcasecmp() instead of strcmp().
823
824         * flip.c: (make_new_var) Rewrite.
825         (flip_sink_write) Use st_trim_copy() instead of strncpy().
826
827         * format.c: (parse_format_specifier_name) Use mm_case_compare()
828         instead of memcmp().
829
830         * get.c: (cmd_save_internal) Rephrase.
831         (rename_variables) Drop test for identical variable name.
832         (struct mtf_proc) Change `first', `last' to fit long var name.
833
834         * hash.c: (hsh_hash_case_string) New function for case-insensitive
835         string hashing.
836
837         * lexer.c: (restore_token) Use st_trim_copy() instead of
838         strncpy().
839         (lex_get) Don't uppercase string when copying into tokid.
840         (lex_put_back_id) Use st_trim_copy() instead of
841         strncpy().
842
843         * list.q: (determine_layout) Consider length of variable names in
844         choosing vertical layout.
845
846         * matrix-data.c: (cmd_matrix_data) Use strcasecmp() instead of
847         strcmp().
848         (string_to_content_type) Ditto.
849
850         * modify-vars.c: (compare_variables_given_ordering) Ditto.
851         (struct var_renaming) Change `new_name' to fit long var name.
852         (compare_var_renaming_by_new_name) Use strcasecmp() instead of
853         strcmp().
854
855         * pfm-read.c: (read_variables) Disallow system variables in system
856         files.
857         (write_variables) Call dict_assign_short_names() and use
858         short_name[] members.
859
860         * repeat.c: (internal_cmd_do_repeat) Use strcasecmp() instead of
861         strcmp().
862
863         * sfm-read.c: (sfm_open_reader) Rewrite code for long variable
864         map.  Reorder variables into same order as long variable map.
865         (read_variables) Set short name.
866
867         * sfm-write.c: (sfm_open_writer) Call dict_assign_short_names().
868         (write_variable) Use st_bare_pad_copy().
869         (write_longvar_table) Rewrite.
870
871         * str.c: (mm_case_compare) New function.
872
873         * sysfile-info.c: (compare_vectors_by_name) Use strcasecmp()
874         instead of strcmp().
875
876         * t-test.q: (tts_custom_groups) Remove redundant test.
877         (tts_custom_pairs) Ditto.
878
879         * var.h: (struct variable) Change `name' to fit long var names.
880         Remove `longname'.  Add `short_name' member.  Reorder some
881         variables.
882         (struct name_table_entry) Removed.
883         (struct vector) Change `name' to fit long vector names.
884
885         * vars-atr.c: (var_is_valid_name) Allow long var names.
886         (compare_var_names) Use strcasecmp() instead of strcmp().
887         (compare_var_ptr_names) Ditto.
888         (hash_var_name) Use hsh_hash_case_string().
889         (hash_var_ptr_name) Ditto.
890         (var_set_short_name) New function.
891         (var_clear_short_name) New function.
892         (var_set_short_name_suffix) New function.
893
894         * vars-prs.c: (parse_DATA_LIST_vars) Support long names.
895         Use strcasecmp() instead of strcmp().
896         (struct array_var_set) Removed `longname_tab'.
897         (array_var_set_lookup_var_idx) Drop longname_tab support.
898         (array_var_set_destroy) Don't destroy `longname_tab'.
899         (var_set_create_from_array) Don't create `longname_tab'.
900
901         * vector.c: (cmd_vector) Use strcasecmp() instead of strcmp().
902         Support long names.
903
904         * expressions/parse.c: (word_matches) Use mm_case_compare()
905         instead of memcmp().
906         (compare_strings) New function.
907         (lookup_function) Use compare_strings() instead of strcmp().
908         
909 Sun May  1 22:07:43 2005  Ben Pfaff  <blp@gnu.org>
910
911         * algorithm.c: (move_element) New function.
912
913 Sun May  1 22:05:35 2005  Ben Pfaff  <blp@gnu.org>
914
915         * aggregate.c: (parse_aggregate_functions) Always initialize
916         destvar.
917
918 Sun May  1 22:03:47 2005  Ben Pfaff  <blp@gnu.org>
919
920         * aggregate.c: (cmd_aggregate) Use dict_clone_var_assert().
921
922         * dictionary.c: (dict_clone) Ditto.
923         (dict_clone_var_assert) New function.
924
925         * get.c: (mtf_merge_dictionary) Use dict_clone_var_assert().
926
927 Sun May  1 15:05:54 WST 2005 John Darrington <john@darrington.wattle.id.au>
928
929         * error.c: Added a string for the compiler version to the
930         request_bug_report_and_abort function.
931
932         * groff_font.c, font.c: Removed manpage(1) style references from 
933         comments, because RMS frowns upon them.
934
935 Thu Apr 28 18:52:06 2005  Ben Pfaff  <blp@gnu.org>
936
937         * expressions/parse.c: Improve previous fix for bug 12858 (LAG).
938
939 Fri Apr 29 09:28:00 WST 2005 John Darrington <john@darrington.wattle.id.au>
940
941         * expressions/parse.c: Added handler for OP_LAG_Vn and OP_LAG_Vs.  
942         Fixed bug [#12858] .
943
944 Wed Apr 27 12:42:34 WST 2005 John Darrington <john@darrington.wattle.id.au>
945
946         * loop.c recode.c repeat.c: Fixed a couple of instances of SHORT_NAME_LEN 
947         which should be LONG_NAME_LEN
948
949 Wed Apr 27 07:43:50 WST 2005 John Darrington <john@darrington.wattle.id.au>
950
951         * command.def echo.c:  Added the ECHO command.
952
953 Mon Apr 25 22:55:59 2005  Ben Pfaff  <blp@gnu.org>
954
955         Finish fixing MATCH FILES (bug 11677).
956
957         * get.c: (trim_dictionary) Rewrite in terms of drop_variables(),
958         keep_variables(), rename_variables().
959         (drop_variables) New function.
960         (keep_variables) New function.
961         (struct mtf_file) Rename `in' to `in_name'.  Add `in_var'.
962         (cmd_match_files) Deal with in_var.  Use drop_variables(),
963         keep_variables().  When IN is specified, require BY.  Set master
964         variables after master dictionary is complete.  Add IN variables
965         after master dictionary is complete.
966         (mtf_free_file) Free `in_name'.
967         (mtf_delete_file_in_place) Set in_var value to 0.
968         (mtf_read_nonactive_records)  Rephrase.
969         (mtf_processing) Support IN.  Rephrase.  Fix bugs.
970         (mtf_merge_dictionary) Don't set master variables; we do that
971         later now.
972         (get_master) Don't insist that there's a master variable.
973         
974 Mon Apr 25 22:55:22 2005  Ben Pfaff  <blp@gnu.org>
975
976         Kluge to make some variable renaming sort of work.
977         Needs real fix.
978
979         * dictionary.c: (dict_rename_var) Call dict_add_longvar_entry().
980
981 Mon Apr 25 22:52:28 2005  Ben Pfaff  <blp@gnu.org>
982
983         Add functions for comparing sets of variables between cases.
984         Use the functions.
985
986         * case.c: (case_compare) New function.
987         (case_compare_2dict) New function.
988         
989         * aggregate.c: (struct agr_proc) Remove `prev_break' member.  Add
990         `break_case'.
991         (cmd_aggregate) Nullify break_case.  Don't call
992         initialize_aggregate_info().
993         (agr_destroy) Destroy break_case.
994         (aggregate_single_case) Rewrite.  Use case_compare().
995         (dump_aggregate_info) Copy from break_case into output.
996         (initialize_aggregate_info) Copy break_case from input.
997
998         * get.c: (mtf_compare_BY_values) Use case_compare_2dict().
999
1000         * vfm.c: (equal_splits) Use case_compare().
1001
1002 Sat Apr 23 17:01:04 WST 2005 John Darrington <john@darrington.wattle.id.au>
1003
1004         * dictionary.c vars-prs.c sfm-write.c: Fixed some memory leaks
1005
1006 Sun Apr 17 23:08:15 2005  Ben Pfaff  <blp@gnu.org>
1007
1008         Start work on fixing MATCH FILES.
1009
1010         * get.c: (enum operation) Remove OP_MATCH.
1011         (trim_dictionary) Change return value to bool.  Don't support
1012         OP_MATCH.
1013         (struct mtf_file) Remove `first', `last' members.
1014         (struct mtf_proc) Add `first', `last' members.  Change mtf_case
1015         from `struct ccase *' to `struct ccase'.  Remove `by' member.
1016         (cmd_match_files) Essentially rewrite.
1017         (mtf_free) Don't free `by' member.  Destroy `mtf_case' member.
1018         (mtf_read_nonactive_records) mtf_ parameter is not unused.
1019         (mtf_processing) Ditto.  Also rephrase some code.
1020         (mtf_merge_dictionary) Rewrite for easy comprehension.  
1021
1022 Sun Apr 17 23:06:00 2005  Ben Pfaff  <blp@gnu.org>
1023
1024         * matrix-data.c: (wr_output_data) [DEBUGGING] Fix compilation
1025         error.
1026
1027         * q2c.c: (dump_token) [DEBUGGING] Fix compilation error.
1028         
1029 Thu Apr 14 2005 John Darrington
1030
1031         * var-display.c: New file.
1032
1033         * format.h var.h sfm-read.c sfm-write.c dictionary.c :  Added 
1034           display_width, measure and alignment parameters to variables.
1035
1036         * aggregate.c command.def compute.c count.c data-list.c descript.c
1037           dictionary.c dictionary.h expr-prs.c file-type.c flip.c get.c 
1038           lexer.c lexer.h loop.c modify-vars.c pfm-read.c recode.c repeat.c 
1039           sfm-read.c sfm-write.c sfm-write.h sfmP.h val-labs.c val.h var.h 
1040           vars-prs.c vector.c :  
1041               - Replaced literal constants representing maximum variable name 
1042                 length with macro definitions. 
1043               - Added support for long variable names.
1044               - Changed lexer such that it no longer makes tokens upper
1045                 case, but relies upon case insensitive behaviour of commands.
1046
1047 Mon Apr  4 22:27:34 2005  Ben Pfaff  <blp@gnu.org>
1048
1049         * aggregate.c: (parse_aggregate_functions) If dict_create_var()
1050         fails, don't dereference the resulting null pointer (bug 12427).
1051         Also, fix double free error.
1052
1053 Sat Mar 19 23:06:02 2005  Ben Pfaff  <blp@gnu.org>
1054
1055         * aggregate.c: (parse_aggregate_functions) Fix N_NO_VARS format.
1056         (accumulate_aggregate_info) Set int1 to 1 for SUM.
1057         (dump_aggregate_info) Only make SUM non-missing if there was at
1058         least one variate.
1059
1060 Sat Mar 19 14:48:19 2005  Ben Pfaff  <blp@gnu.org>
1061
1062         * aggregate.c: (dump_aggregate_info) Properly test whether the
1063         destination variable is numeric, when making the result
1064         system-missing for columnwise missing values.
1065
1066 Mon Mar 14 21:52:34 2005  Ben Pfaff  <blp@gnu.org>
1067
1068         * misc.h: Remove GCC specializations.
1069
1070 Mon Mar 14 21:07:23 2005  Ben Pfaff  <blp@gnu.org>
1071
1072         Make sort stable (bug 12313).
1073         
1074         * sort.c: Don't need to include some headers anymore.
1075         (static var min_buffers) New variable.
1076         (static var max_buffers) New variable.
1077         (static var allow_internal_sort) New variable.
1078         (cmd_sort_cases) Add test mode.
1079         (sort_execute) Rephrase.
1080         (do_internal_sort) Don't try internal sorting if
1081         allow_internal_sort is set.
1082         (struct external_sort) Renamed `initial_runs' to `runs' and
1083         updated all references.
1084         (macro MIN_BUFFER_TOTAL_SIZE_RECS) Removed.
1085         (macro MIN_BUFFER_SIZE_BYTES) Removed.
1086         (macro MIN_BUFFER_SIZE_RECS) Removed.
1087         (compare_initial_runs) Removed.
1088         (struct record_run) Add member `idx'.
1089         (write_initial_runs) Pass increasing values to process_case() as
1090         index.
1091         (process_case) Add `idx' parameter and use it to initialize new
1092         `idx' member.
1093         (allocate_cases) Limit allocated buffers to max_buffers.
1094         (compare_record_run) Use new `idx' member for last resort
1095         comparison, for stability.
1096         (end_run) Call casefile_sleep() on irs->casefile, to prevent
1097         running out of file descriptors.
1098         (struct merge_state) Removed.
1099         (merge) Don't need to allocate cases.  Always use MAX_MERGE_ORDER
1100         unless we have fewer runs left.  Always merge consecutive runs,
1101         for stability.  Return the final run.
1102         (mod) Removed.
1103         (choose_merge) New function.
1104         (merge_once) Rewritten.
1105
1106 Mon Mar 14 21:05:42 2005  Ben Pfaff  <blp@gnu.org>
1107
1108         * cmdline.c: (static var testing_mode) Move into
1109         parse_command_line().
1110         
1111 Mon Mar 14 21:05:13 2005  Ben Pfaff  <blp@gnu.org>
1112
1113         * algorithm.c: (remove_range) New function.
1114         (remove_element) New function.
1115
1116         * dictionary.c: (dict_delete_var) Use remove_element().
1117
1118         * flip.c: (cmd_flip) Ditto.
1119
1120 Sun Mar 13 22:52:05 2005  Ben Pfaff  <blp@gnu.org>
1121
1122         * file-handle.q: (struct file_handle) `open_mode' should not be
1123         const.
1124         
1125 Sun Mar 13 22:40:54 2005  Ben Pfaff  <blp@gnu.org>
1126
1127         First phase of making SORT CASES stable (bug 12313).
1128
1129         * sort.c: (struct indexed_case) New structure.
1130         (do_internal_sort) Rewrite to make internal sorting stable.
1131         (compare_case_dblptrs) Removed.
1132         (compare_indexed_cases) New function.
1133
1134 Sun Mar 13 22:38:40 2005  Ben Pfaff  <blp@gnu.org>
1135
1136         Clean-ups.
1137
1138         * casefile.c: (casereader_read_xfer_assert) New function.
1139
1140         * dictionary.c: (dict_compact_case) New function.
1141
1142         * flip.c: (struct flip_pgm) New member idx_to_fv.
1143         (cmd_flip) Initialize idx_to_fv member.
1144         (destroy_flip_pgm) Free idx_to_fv member.
1145         (flip_sink_write) Use struct flip_pgm member instead of case_sink
1146         member.
1147         (flip_sink_write) Ditto.
1148
1149         * vfm.c: (write_case) Use dict_compact_case() instead of
1150         compact_case().
1151         (compact_case) Removed.
1152         (storage_source_create) Removed `dict' parameter.  All references
1153         updated.
1154
1155         * vfm.h: (struct case_source) Removed `value_cnt' member.  All
1156         references removed.
1157         (struct case_sink) Removed `dict', `idx_to_fv' members.  All
1158         references removed.
1159
1160 Sun Mar 13 22:35:55 2005  Ben Pfaff  <blp@gnu.org>
1161
1162         More AGGREGATE fixes.
1163
1164         * aggregate.c: (accumulate_aggregate_info) Implement NMISS and
1165         NUMISS for strings.  Fix FOUT, POUT, FGT, FLT, FIN, FOUT for
1166         strings.
1167         (initialize_aggregate_info) Fix initialization for MIN, MAX for
1168         strings.
1169
1170 Sat Mar 12 23:26:21 2005  Ben Pfaff  <blp@gnu.org>
1171
1172         Start work on testing and debugging AGGREGATE.
1173
1174         * aggregate.c: (cmd_aggregate) Use discrete bool variables instead
1175         of a bit-map.  Require proper subcommand ordering.  Make OUTFILE
1176         subcommand mandatory.
1177         (parse_aggregate_functions) Check that PIN, POUT, FIN, FOUT
1178         functions' arguments are in the correct order and swap them if
1179         not.
1180         (accumulate_aggregate_info) Make SUM include weights.  Add various
1181         string functions.
1182         (dump_aggregate_info) Add various string functions.
1183         (initialize_aggregate_info) Initialize int1 for MIN, MAX.
1184
1185         * sort.c: (sort_parse_criteria) Add parameter for returning
1186         whether any directions were specified.  All callers updated.
1187
1188 Sun Mar 13 14:54:27 WST 2005 John Darrington <john@darrington.wattle.id.au>
1189
1190         * t-test.q: Fixed erroneous logic in compare_group_binary.
1191
1192 Sat Mar 12 13:29:21 2005  Ben Pfaff  <blp@gnu.org>
1193
1194         * split-file.c: (cmd_split_file) Ignore LAYERED and SEPARATE
1195         keywords (bug 11628).
1196
1197 Sat Mar 12 13:17:12 2005  Ben Pfaff  <blp@gnu.org>
1198
1199         * vfm.c: (procedure_with_splits) Fix bug 11492: end_func() must be
1200         called *before* close_active_file().
1201
1202 Sat Mar 12 12:20:57 2005  Ben Pfaff  <blp@gnu.org>
1203
1204         * file-handle.q: (struct file_handle) Change open_mode from
1205         character pointer to 3-char array, for safety.  Updated all
1206         references.
1207
1208 Sat Mar 12 12:15:49 2005  Ben Pfaff  <blp@gnu.org>
1209
1210         Thanks to Ben Kujala <bkujala@oregonchildcare.org> for reporting
1211         these bugs.
1212         
1213         * pfm-read.c: (read_header) Improve error message for many cases
1214         in which the input is not actually a portable file.
1215
1216         * file-handle.q: (fh_open) When we give an error message, actually
1217         return NULL.
1218
1219 Fri Mar 11 11:50:30 2005  Ben Pfaff  <blp@gnu.org>
1220
1221         * format.c: (check_common_specifier) New function for checks
1222         common to check_input_specifier() and check_output_specifier().
1223         (check_input_specifier) Use check_common_specifier().
1224         (check_output_specifier) Use check_common_specifier().
1225         (check_string_specifier) Removed.
1226         (check_specifier_type) New function.
1227         (check_specifier_width) New function.
1228         (get_format_var_width) Fix bug.
1229
1230         * formats.c: (internal_cmd_formats) Only accept numeric variables.
1231
1232         * lexer.c: (check_id) Rename lex_id_to_token(), make public,
1233         update all references.  Make case-insensitive.
1234
1235         * pfm-read.c: Essentially rewrite the whole file.  Now much
1236         cleaner.
1237
1238         * print.c: (check_string_width) New function.
1239         (fixed_parse_compatible) Use check_string_width(),
1240         check_specifier_type().
1241         (dump_fmt_list) Ditto.
1242
1243         * str.c: (st_trim_copy) New function.
1244         (st_uppercase) New function.
1245
1246         * vars-atr.c: (var_is_valid_name) New function.
1247         
1248         * expressions/parse.c: (type_coercion_core) Use
1249         check_specifier_type().
1250         
1251 Fri Mar 11 11:31:24 2005  Ben Pfaff  <blp@gnu.org>
1252
1253         * expressions/evaluate.c: (cmd_debug_evaluate) Fix memory leaks.
1254
1255         * expressions/parse.c: (no_match) Ditto.
1256
1257 Wed Mar  9 09:54:27 2005  Ben Pfaff  <blp@gnu.org>
1258
1259         * Makefile.am: (pspp_LDADD) Add libgsl-extras.a.
1260
1261         * expressions/helpers.c: (struct func_params) Removed.
1262         (generalized_idf) Removed.
1263         (cdf_beta) Removed.
1264         (idf_beta) Removed.
1265         (idf_fdist) Use gslextras_cdf_beta_Pinv() instead of idf_beta().
1266
1267         * expressions/operations.def: Implement IDF.BETA, CDF.BINOM,
1268         CDF.GEOM, CDF.HYPER, CDF.NEGBIN, CDF.POISSON using gsl-extras.
1269         Implement SIG.F, which I had overlooked previously.
1270
1271 Tue Mar  8 12:47:53 WST 2005 John Darrington <john@darrington.wattle.id.au>
1272
1273         * command.c command.def glob.[ch] cmdline.c: Made DEBUG cmds
1274         available only in testing mode.
1275
1276 Sun Mar  6 23:25:40 2005  Ben Pfaff  <blp@gnu.org>
1277
1278         * data-in.c: Use `bool' throughout, where relevant.
1279
1280 Sun Mar  6 19:52:22 2005  Ben Pfaff  <blp@gnu.org>
1281
1282         DATA LIST with free-field formats should not have implied decimal
1283         places (bug 12035).  Also clean up data-in.c a bit.
1284
1285         * data-in.h: (enum) Add DI_IMPLIED_DECIMALS.
1286
1287         * data-in.c: (apply_implied_decimals) New function.
1288         (parse_numeric) Don't adjust exponent if DI_IMPLIED_DECIMALS not
1289         set.  Also, get rid of gotos.
1290         (parse_Z) Use apply_implied_decimals() if the field doesn't
1291         contain a decimal point.
1292         (parse_N) Use apply_implied_decimals().
1293         (parse_IB) Ditto.
1294         (parse_PIB) Ditto.
1295         (parse_P) Ditto.
1296         (parse_PK) Ditto.
1297         (to_roman) Removed.
1298         (parse_enum) New function.
1299         (macro CHAR_IS_ROMAN) Removed.
1300         (macro ROMAN_VALUE) Removed.
1301         (parse_month) Use parse_enum().
1302         (parse_weekday) Use parse_enum().
1303         (parse_DATETIME) Use long for weekday.
1304
1305         * data-list.c: (read_from_data_list_fixed) Use
1306         DI_IMPLIED_DECIMALS.
1307
1308 Sun Mar  6 17:07:20 2005  Ben Pfaff  <blp@gnu.org>
1309
1310         When the lexer sees something like `-5' in the input, it has to
1311         decide whether it's a negative numeric constant token or a '-'
1312         token followed by a positive numeric constant token.  It always
1313         decides on the former, and then the parser can call
1314         lex_negative_to_dash() if it wants the latter.  However, this
1315         doesn't work for the case of `-0', because negative zero is
1316         (portably) indistinguishable from positive zero.  So now we divide
1317         T_NUM into two tokens, T_POS_NUM and T_NEG_NUM, to make the
1318         distinction clear.  This requires a little bit of extra effort,
1319         because there were several references to T_NUM in the code base.
1320         
1321         * lexer.c: (lex_get) Use T_NEG_NUM and T_POS_NUM to distinguish
1322         positive and negative numeric constants.
1323         (lex_double_p) Renamed lex_is_number().  Changed return type to
1324         bool.  Updated all relevant references to T_NUM to instead use
1325         this function.
1326         (lex_double) Renamed lex_number().  All references updated.
1327         (lex_integer_p) Renamed lex_is_integer().  Changed return type to
1328         bool.  All references updated.
1329         (lex_token_representation) Understand T_NEG_NUM and T_POS_NUM.
1330         (lex_negative_to_dash) Ditto.
1331         (dump_token) Ditto.
1332         
1333         * lexer.h: (enum) Add T_POS_NUM, T_NEG_NUM.  Remove T_NUM.
1334
1335 Sun Mar  6 22:09:20 2005  Ben Pfaff  <blp@gnu.org>
1336
1337         * expressions/operations.def: (NUMBER) Use DI_IMPLIED_DECIMALS.
1338
1339 Sun Mar  6 19:33:24 2005  Ben Pfaff  <blp@gnu.org>
1340
1341         * expressions/operations.def: (VEC_ELEM_NUM) Treat user-missing
1342         values as system-missing.
1343
1344         * expressions/parse.c: (parse_vector_element) Fix order of
1345         arguments in call to expr_allocate_binary().
1346
1347 Sun Mar  6 17:51:05 2005  Ben Pfaff  <blp@gnu.org>
1348
1349         * expressions/optimize.c: (optimize_tree) Fix optimization bug for
1350         x**2.
1351
1352         * expressions/parse.c: (type_coercion_core) Set *node to NULL on
1353         failure, as indicated by function comment.
1354         (parse_binary_operators) Always return NULL on type_coercion()
1355         failure.  Should have been doing this anyway, but bug in
1356         type_coercion_core() filtered through.
1357         (parse_add) Fix typo in user message.
1358         (parse_primary) Understand T_NEG_NUM and T_POS_NUM.
1359
1360 Sun Mar  6 10:47:13 2005  Ben Pfaff  <blp@gnu.org>
1361
1362         * expressions/operations.def: Add VALUE function.
1363
1364         * expressions/parse.c: (parse_function) Need an unary composite
1365         node for variables in A TO B, not a variable node.  Use
1366         allocate_unary_variable().
1367         (parse_primary) Use allocate_unary_variable().
1368         (allocate_unary_variable) New function.
1369
1370 Thu Mar  3 23:53:32 2005  Ben Pfaff  <blp@gnu.org>
1371
1372         * expressions/PSPP_expressions.pm: Renamed it back to generate.pl
1373         but fixed the real problem that was preventing the build from a
1374         separate directory.  I liked it my way better ;-)
1375         
1376 Thu Mar  3 23:17:51 2005  Ben Pfaff  <blp@gnu.org>
1377
1378         * expressions/parse.c: (expr_parse) Fix parameter type.  Thanks to
1379         John Darrington <john@darrington.wattle.id.au> for reporting this
1380         bug.
1381
1382 Thu Mar  3 22:10:25 WST 2005 John Darrington <john@darrington.wattle.id.au>
1383
1384         * expressions/Makefile.am expressions/evaluate.h.pl
1385           expressions/evaluate.inc.pl expressions/operations.h.pl
1386           expressions/optimize.inc.pl expressions/parse.inc.p:
1387
1388           Renamed generate.pl to PSPP_expressions.pm and adjusted *.pl
1389           to suit. 
1390
1391           Fixed everything so that it can be built from an arbitrary
1392           directory.
1393         
1394 Thu Mar  3 22:08:35 WST 2005 John Darrington <john@darrington.wattle.id.au>
1395
1396         * Makefile.am : Fixed up CLEANFILES target.
1397
1398 Mon Feb 28 23:49:56 2005  Ben Pfaff  <blp@gnu.org>
1399
1400         * str.h: Changed `struct len_string' to `struct fixed_string', a
1401         more accurate name.  Updated all references.
1402
1403 Mon Feb 28 23:35:30 2005  Ben Pfaff  <blp@gnu.org>
1404
1405         Redo calendar support.  Should now be bug-for-bug compatible.
1406         
1407         * calendar.c: New file.
1408
1409         * calendar.h: New file.
1410
1411         * data-in.c: Use new calendar functions.
1412         (parse_sign) Change sense of return value.
1413         (calendar_error) New function.
1414         (ymd_to_ofs) New function.
1415         (ymd_to_date) New function.
1416         (parse_DATE) Use new function.
1417         (parse_ADATE) Ditto.
1418         (parse_EDATE) Ditto.
1419         (parse_SDATE) Ditto.
1420         (parse_JDATE) Ditto.
1421         (parse_QYR) Ditto.
1422         (parse_MOYR) Ditto.
1423         (parse_WKYR) Ditto.
1424         (parse_TIME) Ditto.
1425         (parse_DTIME) Ditto.
1426         (parse_DATETIME) Ditto.
1427
1428         * data-out.c: (convert_date) Use new calendar functions.
1429
1430         * error.c: (err_vmsg) Changed interface to be more sensible.
1431         Updated all callers.
1432         (dump_message) Don't double new-lines (why did we do this
1433         anyway?).
1434
1435 Mon Feb 28 23:30:25 2005  Ben Pfaff  <blp@gnu.org>
1436
1437         * sfmP.h: (macro flt64) Moved here from pref.h.orig.
1438         (macro FLT64_MAX) Moved here from pref.h.orig.
1439
1440 Mon Feb 28 23:28:01 2005  Ben Pfaff  <blp@gnu.org>
1441
1442         * set.q: Support SET EPOCH.
1443         (static var set_epoch) New var.
1444         (aux_stc_custom_epoch) New function.
1445         (stc_custom_epoch) New function.
1446         (get_epoch) New function.
1447         (stc_custom_pager) [USE_INTERNAL_PAGER] Fix bug.
1448
1449         * format.c: Make it possible just to check whether a specifier is
1450         valid without emitting an error message.
1451         (parse_format_specifier_name) Change interface, update all
1452         callers.
1453         (check_input_specifier) Ditto.
1454         (check_output_specifier) Ditto.
1455         (parse_format_specifier) Ditto.
1456
1457 Mon Feb 28 23:24:08 2005  Ben Pfaff  <blp@gnu.org>
1458
1459         * command.def: Add DEBUG POOL.
1460
1461         * pool.c: (pool_destroy) Fix bug in deleting this pool from its
1462         parent.
1463         (pool_clear) Properly account for size of pool gizmo.
1464         (pool_realloc) Ditto.
1465         (pool_clone) New function.
1466
1467         * pool.h: Mark our allocation functions MALLOC_LIKE.
1468
1469 Mon Feb 28 23:21:26 2005  Ben Pfaff  <blp@gnu.org>
1470
1471         * Makefile.am: Move many definitions into new top-level
1472         Make.build.  Add expressions to SUBDIRS.  Add calendar.c,
1473         calendar.h.  Remove expr-evl.c, expr-opt.c expr-prs.c, expr.h,
1474         exprP.h, expr.def.
1475
1476         * case.c: (case_resize) New function.
1477         (case_swap) New function.
1478
1479         * casefile.c: Include mkfile.h.
1480
1481 Fri Feb 25 21:11:35 WST 2005 John Darrington <john@darrington.wattle.id.au>
1482
1483         * sfm-read.c: Fixed a buglet which caused a crash when trying
1484         to read a non-existent file.
1485
1486 Sun Feb 13 16:11:13 2005  Ben Pfaff  <blp@gnu.org>
1487
1488         Fix bug 11955.
1489
1490         * aggregate.c: (parse_aggregate_functions) Code cleanup.
1491         Important part: get rid of spurious copying of function->format to
1492         destvar->print and destvar->write.
1493
1494 Fri Feb 11 00:08:36 2005  Ben Pfaff  <blp@gnu.org>
1495
1496         Fix bug 11916, which was confusing a variable's `index' member
1497         with the variable's position in a var_set.  Although these are
1498         usually the same, they are not for array `var_set's.
1499         
1500         Took advantage of this bug as an opportunity to clean up and
1501         rewrite parse_var_set_vars().
1502
1503         * vars-prs.c: (parse_vs_variable_idx) New function.
1504         (parse_vs_variable) Reimplement in terms of
1505         parse_vs_variable_idx().
1506         (parse_var_idx_class) New function.
1507         (add_variable) New function.
1508         (add_variables) New function.
1509         (parse_var_set_vars) Rewritten.
1510         (struct var_set) Change `lookup_var' member that returns a
1511         variable into `lookup_var_idx' member that returns an int.
1512         Updated the var set implementations in obvious corresponding ways.
1513         Used compare_var_ptr_names(), hash_var_ptr_name() just added.
1514         
1515 Fri Feb 11 00:06:03 2005  Ben Pfaff  <blp@gnu.org>
1516
1517         Use our global variable compare & hash functions and give them
1518         better names.  Add similar functions for dealing with double
1519         pointers to variables.
1520         
1521         * vars-atr.c: (compare_variables) Renamed compare_var_names().
1522         (hash_variable) Renamed hash_var_name().
1523         (compare_var_ptr_names) New function.
1524         (hash_var_ptr_name) New function.
1525         
1526         * t-test.q: (cmd_t_test) Use global compare_var_names(),
1527         hash_var_name().
1528         (compare_var_name) Removed.
1529         (hash_var_name) Removed.
1530
1531 Fri Feb 11 00:04:39 2005  Ben Pfaff  <blp@gnu.org>
1532
1533         Fix dictionary bug.
1534         
1535         * dictionary.c: (compare_variable_dblptrs) Rename
1536         compare_var_ptrs() and fix it to properly dereference the double
1537         pointers.
1538
1539 Mon Feb  7 09:58:15 WST 2005 John Darrington <john@darrington.wattle.id.au>
1540
1541         crosstabs.q examine.q oneway.q q2c.c:  Added a q2c feature to 
1542         declare subcommands as mandatory.  Closed bug #11843
1543
1544 Sat Feb  5 20:35:10 WST 2005 John Darrington <john@darrington.wattle.id.au>
1545         
1546         * getline.c command.[ch] command.def:  Added (very rudimentary)
1547         support for line  completion when in interactive mode.  Partially 
1548         addresses bug #11693
1549         
1550 Mon Jan 31 09:52:51 WST 2005 John Darrington <john@darrington.wattle.id.au>
1551
1552         * examine.q factor_stats.c oneway.q output.c pfm-read.c: Fixed some
1553         problems revealed by valgrind.
1554
1555
1556 Wed Jan 26 11:44:11 WST 2005 John Darrington <john@darrington.wattle.id.au>
1557
1558         * set.q: Affixed a fix to the previous fix such that we'll be OK now
1559         whether or not PAGER is set.
1560
1561 Wed Jan 26 09:25:54 WST 2005 John Darrington <john@darrington.wattle.id.au>
1562
1563         * set.q: Copied the string produced by getenv("PAGER") thus avoiding
1564         "invalid free" errors.  Hopefully fixes bug #11722
1565
1566         * compute.c expr-prs.c: Check that lvalues are populated before 
1567         attempting to destroy them.  Closes bug #11676
1568
1569 Tue Jan 25 21:01:43 WST 2005 John Darrington <john@darrington.wattle.id.au>
1570
1571         * aggregate.c: Initialised the complete agr_proc structure.
1572         Closes bug #11675
1573
1574
1575 Sun Jan 23 23:02:21 2005  Ben Pfaff  <blp@gnu.org>
1576
1577         * print.c: (print_trns_free) Close the dfm writer if there is one,
1578         fixing a memory leak.
1579
1580 Mon Jan 24 12:24:36 WST 2005 John Darrington <john@darrington.wattle.id.au>
1581
1582         * glob.c oneway.q q2c.c t-test.q vfm.c: Still *more* memory leaks 
1583         fixed.
1584
1585
1586 Fri Jan 21 19:54:14 WST 2005 John Darrington <john@darrington.wattle.id.au>
1587
1588         * linked-list.[ch] Added
1589
1590         * examine.q file-handle.[hq] font.h glob.c groff-font.c postscript.c 
1591           set.q:    Yet more memory leaks
1592
1593 Tue Jan 18 23:12:40 WST 2005 John Darrington <john@darrington.wattle.id.au>
1594
1595         * t-test.q examine.q : More memory leaks fixed.
1596
1597 Tue Jan 18 19:26:59 WST 2005 John Darrington <john@darrington.wattle.id.au>
1598
1599         * examine.q  factor_stats.[ch] get.c pfm-read.c: Plugged numerous
1600         memory leaks.
1601
1602 Mon Jan 10 14:43:45 WST 2005 John Darrington <john@darrington.wattle.id.au>
1603
1604         * ascii.c cartesian.c casefile.c chart.h devind.c 
1605           examine.q frequencies.q
1606           html.c output.h piechart.c plot-chart.c plot-hist.c
1607
1608           Integrated the chart rendering into the output stream
1609           (currently only works for html).
1610           
1611           Removed gratuitous use of ifndef NO_CHARTS, and replaced with
1612           dummy-chart.c for compiling without charts.
1613
1614         * mkfile.[ch] Created.  
1615
1616         * som.[ch] tab.[ch]: Changed name of som_table to som_entity
1617         Added type element so we can tell if it's a chart or a table.
1618
1619         * chart.h examine.q piechart.c plot-chart.c plot-hist.c: changed the 
1620         API of charts to be more like that of tables.
1621
1622 Thu Jan 13 21:00:02 WST 2005 John Darrington <john@darrington.wattle.id.au>
1623
1624         * casefile.c main.c: Moved the SIGINT handler from casefile.c to
1625         main.c. Removed the handler for SIGQUIT.
1626
1627 Mon Jan 10 14:43:45 WST 2005 John Darrington <john@darrington.wattle.id.au>
1628
1629         * casefile.c: Added a signal handler to delete temp files on 
1630         SIGINT and SIGQUIT
1631
1632         * permissions.c Inhibited the PERMISSIONS command when SAFER is on.
1633
1634         * command.def Added a lot more unimplemented commands.
1635
1636         * copyleft.[ch] cmdline.c Moved legal information to copyleft.c
1637
1638 Sat Jan  8 23:58:34 2005  Ben Pfaff  <blp@gnu.org>
1639
1640         * sort.c: (compare_initial_runs) Needed additional level of
1641         dereferencing.
1642         (merge_once) Fix plenty of stupid mistakes.
1643
1644 Sat Jan  8 23:55:27 2005  Ben Pfaff  <blp@gnu.org>
1645
1646         * casefile.c: (casefile_sleep) Need to flush_buffer() after
1647         calling casefile_to_disk() or we will lose the last block in the
1648         file if the casefile started out as disk-based.
1649         (casefile_get_reader) Initialize reader->destructive to 0.
1650         (cmd_debug_casefile) Add new test pattern.
1651         (test_casefile) Define new test pattern to make sure
1652         casefile_sleep() works properly.
1653
1654 Fri Jan  7 08:00:05 WST 2005 John Darrington <john@darrington.wattle.id.au>
1655
1656         * Makefile.am chart.[ch]  histogram.[ch] piechart.c (Modified);
1657           plot-hist.c plot-chart.c (Added) Reorganised these files in an
1658           attempt to seperate the creation and processing of charts from their
1659           actuall renedering.
1660
1661         * examine.q frequencies.q generated charts conditional upon the NO_CHARTS
1662           macro.
1663
1664 Thu Jan  6 18:48:58 WST 2005 John Darrington <john@darrington.wattle.id.au>
1665
1666         * main.c Added a signal handler for SIGFPE
1667
1668         * sort.c Somewhat more robust fix to the previous entry.
1669
1670 Wed Jan  5 21:23:31 2005  Ben Pfaff  <blp@gnu.org>
1671
1672         * sort.c: (merge) Fix assertion for proper Huffman merge pattern:
1673         0 == 1 modulo 1.  See Knuth 5.4.9 (vol. 3, 2nd ed.,
1674         pp. 361).  Thanks to John Darrington <john@cellform.com.au> for
1675         reporting the bug.
1676
1677 Wed Jan  5 22:42:26 WST 2005 John Darrington <john@darrington.wattle.id.au>
1678
1679         * case.h Fixed bug # 11307
1680         
1681 Wed Jan  5 08:30:48 WST 2005 John Darrington <john@darrington.wattle.id.au>
1682
1683         * val-labs.c Fixed bug which caused a crash if VALUE LABELS had
1684         a trailing slash.
1685
1686 Mon Jan  3 17:44:37 2005  Ben Pfaff  <blp@gnu.org>
1687
1688         * pfm-read.c: (read_variables) Remove direct manipulation of
1689         v->aux, which is no longer needed.  Fixes bug 11483.
1690
1691 Sat Jan  1 19:01:16 WST 2005 John Darrington <john@darrington.wattle.id.au>
1692
1693         * data-list.c Fixed a bug in parsing delimiters.
1694
1695         * group.c vars-atr.c Fixed buglet in hash/compare functions for alpha
1696         values.
1697
1698         * percentiles.c Properly handled calculation of Tukey hinges where
1699         the number of data is small.
1700
1701         * oneway.q Used the generic value_to_string function for independent
1702         variable instead of trying to do it ourselves.
1703
1704         * box-whisker.c Fixed a buglet which caused a crash if the number of
1705         data was zero
1706
1707
1708 Fri Dec 31 16:47:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
1709
1710         * examine.q box-whisker.c chart.h Implemented boxplots in EXAMINE
1711
1712         * percentiles.c Fixed some bugs when calculating percentiles when
1713         there's a small number of cases.
1714
1715 Wed Dec 29 08:18:08 WST 2004 John Darrington <john@darrington.wattle.id.au>
1716
1717         * percentiles.[ch] Added. Calculates percentiles and Tukey hinges
1718
1719         * examine.q factor_stats.[ch]  Added calculation of percentiles
1720
1721 Fri Dec 24 15:09:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
1722
1723         * t-test.q Fixed bug #11227 Made t-test work when the independent
1724         variable is alpha
1725
1726 Sat Dec 11 11:43:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
1727
1728         * factor_stats.c Fixed calculation of trimmed mean under various
1729         special conditions.
1730
1731 Sat Dec  4 17:14:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
1732
1733         * histogram.c chart.[ch] factor_stats.c frequencies.q
1734
1735         Added code to calculate sensible histogram ranges and limits.
1736
1737 Thu Dec  2 13:37:43 WST 2004 John Darrington <john@darrington.wattle.id.au>
1738
1739         * chart.h Updated to reflect many API changes.
1740
1741         * cartesian.c chart.c Moved the definitions of chart_write_{xy}scale from 
1742         cartesian.c and into chart.c
1743
1744         * factorstats.[ch] Added the histogram calculations
1745
1746         * casefile.c Removed an unused variable.
1747
1748         * frequencies.q examine.q histogram.c  Reworked the API for 
1749         histograms.
1750
1751         * piechart.c  Revised the API for piecharts.
1752
1753         * var.h  Moved the definitions of freq_tab and freq out of var.h
1754         and into frequencies.q where they belong.
1755         
1756 Tue Nov 30 21:10:20 2004  Ben Pfaff  <blp@gnu.org>
1757
1758         * flip.c: (flip_file) Check for off_t separately from fseeko(),
1759         using AC_TYPE_OFF_T.
1760
1761 Tue Nov 30 08:47:41 2004  Ben Pfaff  <blp@gnu.org>
1762
1763         * flip.c: (flip_file) If fseeko() is not available, use long int
1764         for off_t.  Thanks to "Marshall DeBerry" <mdb@radix.net> for
1765         reporting the problem.
1766
1767 Mon Nov 29 12:20:59 WST 2004 John Darrington <john@darrington.wattle.id.au>
1768
1769         * examine.q factor_stats.[ch] Changed stderr to se_mean to avoid
1770         conflict with stdio.
1771
1772 Sun Nov 21 10:32:41 WST 2004 John Darrington <john@darrington.wattle.id.au>
1773
1774         * var-labs.c (var_to_string) Now returns null if the variable is null
1775
1776         * value-labels.c (value_to_string) Made it return null if either the 
1777         value or the variable is null.
1778
1779         * hash.c (hsh_clear) Fixed a buglet.
1780
1781         * examine.q  factor_stats.[ch] Largely  rewrote, because I'd started 
1782         with  the wrong model.
1783
1784         * casefile.[ch] Added a function to return the casereader.case_idx 
1785         member
1786
1787         * examine.q  Implemented the extreme values results.
1788
1789 John Darrington <john@darrington.wattle.id.au>
1790
1791         * settings.h set.c glob.[ch] frequencies.q q2c.c error.c lexer.[ch] 
1792           output.[ch] getline.c 
1793
1794           Plugged some memory leaks
1795
1796 Mon Nov 15 23:47:40 2004  Ben Pfaff  <blp@gnu.org>
1797
1798         Adopt GSL random number generators, paving the way for providing
1799         the complete suite of random number generators on expressions.
1800         
1801         * Makefile.am: Remove random.c, random.h.
1802
1803         * random.c: Removed.
1804
1805         * random.h: Removed.
1806
1807         * algorithm.c: (algo_default_random) Use GSL functions.
1808
1809         * casefile.c: (test_casefile) Use GSL RNG functions.
1810
1811         * expr-evl.c: (expr_evaluate) Use GSL RNG functions for OP_NORMAL,
1812         OP_UNIFORM.
1813
1814         * sample.c: (cmd_sample) Use GSL RNG functions.
1815         (sample_trns_proc) Ditto.
1816
1817         * set.q: (static var set_seed) Removed.
1818         (static var seed_flag) Removed.
1819         (static var rng) New variable.
1820         (aux_stc_custom_seed) No seed value anymore, don't print anything.
1821         (stc_custom_seed) Use new seed functions.
1822         (seed_is_set) Removed.
1823         (get_rng) New function that composes the entire external
1824         interface.
1825         (set_rng) New function.
1826         (random_seed) New function.
1827
1828 Mon Nov 15 22:08:25 2004  Ben Pfaff  <blp@gnu.org>
1829
1830         * expr-evl.c: (expr_evaluate) Fix XDATE.JDAY formula.  Thanks to
1831         John Darrington <john@darrington.wattle.id.au> for reporting this
1832         bug.
1833
1834 Tue Nov 16 13:19:18 WST 2004 John Darrington <john@darrington.wattle.id.au>
1835
1836         * permissions.c command.def Added the PERMISSIONS command
1837
1838 Mon Nov 15 01:33:32 2004  Ben Pfaff  <blp@gnu.org>
1839
1840         * q2c.c: (dump_header) Don't try to emit #includes at very top of
1841         output file because that will precede #include <config.h>, which
1842         is bad.
1843         (main) Add needed headers to /* (header) */ code.
1844
1845 Mon Nov 15 01:21:36 2004  Ben Pfaff  <blp@gnu.org>
1846
1847         Instead of making system or portable file readers responsible for
1848         dropping and reordering variables, make them read full cases and
1849         let the caller take care of any changes.
1850
1851         * get.c: New "case map" structure to handle this.  Use for GET,
1852         IMPORT, MATCH FILES.  Essentially rewrite the whole file.
1853
1854         * pfm-read.c: (pfm_read_case) Read into provided case.  Signature
1855         changed appropriately.
1856
1857         * sfm-read.c: (sfm_read_case) Ditto.
1858
1859 Mon Nov 15 00:47:45 2004  Ben Pfaff  <blp@gnu.org>
1860
1861         Decided that case_serialize() and case_unserialize() were too
1862         abstract.  Also we need a couple more functions to avoid excessive
1863         copying for data in/out fast paths.
1864
1865         * case.c: (case_serial_size) Removed.
1866         (case_serialize) Rename case_to_values() and make its argument
1867         explicitly an array of union values.
1868         (case_unserialize) Rename case_from_values() and make its argument
1869         explicitly an array of union values.
1870         (case_data_all) New function.
1871         (case_data_all_rw) New function.
1872
1873         * casefile.c: (struct casefile) Change buffer from array of
1874         unsigned char to array of union value for better accuracy.
1875         Redefine buffer_used and buffer_size in terms of values, not
1876         bytes.  Remove case_size because it is now redundant with
1877         value_cnt.  Fix up all references to these members.
1878
1879 Mon Nov 15 00:45:46 2004  Ben Pfaff  <blp@gnu.org>
1880
1881         * barchart.c: (struct subcat) Make `label' member const to silence
1882         GCC warning with -Wwrite-strings.
1883
1884         * cartesian.c: (struct dataset) Ditto.
1885
1886         * case.c: Don't re-define NDEBUG if already defined.
1887         Add lots of comments.
1888
1889         * str.c: Fix includes.
1890
1891         * crosstabs.q: Fix includes.
1892
1893         * examine.q: Fix includes.  Fix GCC warning about unused
1894         variables.
1895         
1896         * frequencies.q: (stat macro) Removed and replaced where used by
1897         its expansion.
1898
1899         * list.q: Fix includes.
1900
1901         * oneway.q: Fix includes.
1902
1903         * piechart.c: Fix includes.  Only define M_PI if not already
1904         defined.
1905
1906         * sfm-read.c: (bswap) New function.
1907         (bswap_int32) Write in terms of bswap.
1908         (bswap_flt64) Ditto.
1909
1910         * str.c: (ds_data) Add external definition here, needed because
1911         str.h has only an `extern inline' version.
1912
1913         * value-labels.c: Fix includes.
1914
1915 Mon Nov 15 00:40:55 2004  Ben Pfaff  <blp@gnu.org>
1916
1917         Instead of providing a system or portable file writer with a raw
1918         case in the format needed for output, provide it with a regular
1919         case.  The writer takes care of any needed translation.
1920
1921         * aggregate.c: Adopt new scheme for AGGREGATE.
1922         (struct agr_proc) sfm_agr_case member removed.
1923         (write_case_to_sfm) Removed because the new interface is easier to
1924         use.
1925
1926         * get.c: Adopt new scheme for SAVE, XSAVE, EXPORT.
1927
1928         * pfm-write.c: Implement new scheme.
1929
1930         * sfm-write.c: Ditto.
1931
1932 Mon Nov 15 00:32:24 2004  Ben Pfaff  <blp@gnu.org>
1933
1934         Instead of treating `struct file_handle' as a class to subclass
1935         into data files, system files, and portable files, instead use it
1936         as a helper that coordinates access.  Now it is opaque, too.
1937
1938         This means that most references to a struct file_handle are now
1939         changed into references to one of struct dfm_reader, struct
1940         dfm_writer, struct sfm_reader, struct sfm_writer, struct
1941         pfm_reader, or struct pfm_writer, according to what's being read
1942         or written.
1943
1944         Most related changes are only worth summarizing briefly.
1945
1946         * dictionary.c: (dict_clear) Destroy aux data in deleted
1947         variables.
1948         (dict_clear_aux) New function.
1949         (dict_create_var) Initialize aux, aux_dtor.
1950         (dict_delete_var) Destroy aux data in deleted variable.
1951
1952         * file-handle.h: (struct fh_ext_class) Removed.
1953         (struct file_handle) Removed.
1954         (fh_init_files) Removed.
1955
1956         * file-handle.q: Changed references to a handle's `private' member
1957         to direct references.
1958         (struct private_file_handle) Renamed file_handle.
1959         Add next, open_cnt, type, open_mode, aux members.
1960         (struct file_handle_list) Removed.
1961         (extern var inline_file) Removed.
1962         (static var file_handles) Changed from file_handle_list * to
1963         file_handle *.
1964         (create_file_handle) Initialize new members.
1965         (fh_close_handle) Removed.
1966         (mode_name) New function.
1967         (fh_open) New function.
1968         (fh_close) New function.
1969         (fh_parse_file_handle) Renamed fh_parse().
1970
1971         * glob.c: (init_glob) Remove fh_init_files() call.
1972         
1973         * aggregate.c: use sfm_writer.
1974         (create_sysfile) Removed because the new interface is simpler.
1975         
1976         * apply-dict.c: Use sfm_reader.
1977
1978         * data-list.c: Use dfm_reader.
1979
1980         * file-type.c: Use dfm_reader.
1981
1982         * get.c: Use sfm_reader, sfm_writer, pfm_reader, pfm_writer.
1983
1984         * inpt-pgm.c: Use dfm_reader.
1985
1986         * print.c: Use dfm_writer.
1987
1988         * sysfile-info: Use sfm_reader.
1989
1990         * dfm-read.c: Adopt new file handle infrastructure.
1991
1992         * dfm-write.c: Ditto.
1993
1994         * pfm-read.c: Ditto.
1995         
1996         * pfm-write.c: Ditto.
1997
1998         * sfm-read.c: Ditto.
1999
2000         * sfm-write.c: Ditto.
2001         
2002 Mon Nov 15 00:31:44 2004  Ben Pfaff  <blp@gnu.org>
2003
2004         Break dictionary functions into separate header file.
2005
2006         * dictionary.h: New file.
2007
2008         * var.h: Moved dict_*() functions to dictionary.h.
2009
2010 Mon Nov 15 00:30:33 2004  Ben Pfaff  <blp@gnu.org>
2011
2012         Get rid of procedure-specific union in struct variable, using
2013         instead a void * pointer and a destructor function.
2014
2015         Most related changes are only worth brief summaries.
2016
2017         * crosstabs.q: Fix includes.  Use new struct var_range in lieu of
2018         old p.crs member in struct variable.
2019         
2020         * frequencies.q: Fix includes.  Use new struct var_freqs in lieu
2021         of old p.frq member in struct variable.
2022
2023         * histogram.c: (draw_histogram) Takes new freq_tab arg because
2024         it's no longer possible to grab this from var->p.frq.
2025
2026         * piechart.c: (draw_piechart) Ditto.
2027
2028         * group.c: (group_proc_get) New function.
2029
2030         * levene.c: Use group_proc_get() in lieu of old p.grp_data member
2031         in struct variable.
2032
2033         * oneway.q: Ditto.
2034
2035         * t-test.q: Ditto.
2036
2037         * main.c: (execute_command) Clear aux data in default_dict after
2038         each command.  (It's debatable whether this should be done.)
2039
2040         * matrix-data.c: Use new struct mxd_var in lieu of old p.mxd
2041         member in struct variable.
2042
2043         * means.q: Get rid of integer mode, which is not included in
2044         recent SPSS and was the only code that wanted per-variable private
2045         data.
2046
2047         * var.h: (struct crosstab_proc) Removed.
2048         (struct frequencies_proc) Removed.
2049         (struct list_proc) Removed.
2050         (struct get_proc) Removed.
2051         (struct means_proc) Removed.
2052         (struct matrix_data_proc) Removed.
2053         (struct match_files_proc) Removed.
2054         (lots of enums) Removed.
2055         (struct variable) Removed members `p', `get'.  Add member
2056         `aux_dtor'.
2057
2058         * vars-atr.c: (var_attach_aux) New function.
2059         (var_detach_aux) New function.
2060         (var_clear_aux) New function.
2061         (var_dtor_free) New function.
2062         (discard_variables) Use NULL instead of inline_file.
2063
2064 Fri Nov 12 10:07:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
2065
2066         * value-labs.c  Fixed the implmentation of value_to_string, so 
2067         that it properly handles alpha values.
2068
2069         * oneway.q  Changed instances where labels were being probed manually, 
2070         to use the canonical {var,value}_to_string functions
2071
2072 Thu Nov 11 21:01:31 WST 2004 John Darrington <john@darrington.wattle.id.au>
2073
2074         * examine.q cartesian.c chart.[ch]   Added normal and detrended normal
2075         plots.  Changed the API of the cartesian plot to be a much lower level
2076         thing.
2077
2078 Sun Nov  7 17:25:04 WST 2004 John Darrington <john@darrington.wattle.id.au>
2079
2080         * examine.q Added some of the parametric calculations
2081
2082         * factor_stats.[ch]  Created
2083         
2084 Sat Nov  6 21:24:31 WST 2004 John Darrington <john@darrington.wattle.id.au>
2085
2086         * examine.q  Changed the definition of factors to be a composite, and
2087         dealt with the consequences.
2088
2089 Sat Nov  6 20:40:38 WST 2004 John Darrington <john@darrington.wattle.id.au>
2090
2091         * examine.q Fixed problem where examine wasn't dealing properly with 
2092         splits
2093
2094 Sat Nov  6 14:49:47 WST 2004 John Darrington <john@darrington.wattle.id.au>
2095
2096         * oneway.q Fixed problem where oneway wasn't dealing properly with 
2097         splits
2098
2099 Thu Nov  4 11:09:01 WST 2004 John Darrington <john@darrington.wattle.id.au>
2100
2101         * q2c.c examine.q  Fixed a bug (feature?) whereby arrays in the
2102         command which had settings didn't get the appropriate code
2103         generated.
2104
2105         * val.h value-labels.[ch] var-labs.c Added v*to_string functions
2106         to convert variables/values to strings.
2107
2108         * examine.q  Added framework for the EXAMINE command.
2109
2110 Mon Nov  1 12:46:17 WST 2004 John Darrington <john@darrington.wattle.id.au>
2111
2112         * q2c.c frequencies.q set.q t-test.q  Fixed the q2c parsing of DBL 
2113         subcommand types.  Changed frequencies.q to use it rather then the 
2114         custom parser.  Dealt with the consequences.  Added a test for NTILES
2115         subcommand of frequencies.
2116
2117 Sat Oct 30 09:16:29 WST 2004 John Darrington <john@darrington.wattle.id.au>
2118
2119         * oneway.q   Fixed up the behaviour when given missing values
2120
2121         * levene.c oneway.q Fixed a buglet with the levene statistic and
2122         incorporated the levene test into the oneway command.
2123
2124         * group.h  t-test.q  Moved the CMP_EQ and CMP_LE symbols out of 
2125         global scope, since they're only relevant to T-TEST
2126
2127 Fri Oct 29 17:39:03 WST 2004 John Darrington <john@darrington.wattle.id.au>
2128
2129         * group.c group.h group_proc.h levene.c oneway.q t-test.q
2130
2131         Made the t-test more consistent
2132         with the way it handles groups.  That is, it now uses a hash instead
2133         of an array of 2.  Also, made the levene.c file independent of the 
2134         implementation of the t-test.  So now levene should be fine for both
2135         t-test and anova.
2136
2137         * Added an oneway.q file for one way anova
2138
2139 Wed Jun  2 22:08:02 2004  Ben Pfaff  <blp@gnu.org>
2140
2141         * descript.c: (cmd_descriptives) Remove harmless but bogus test in
2142         STATISTICS parsing.
2143
2144 Mon May 31 20:45:24 2004  Ben Pfaff  <blp@gnu.org>
2145
2146         Fix memory leaks.
2147
2148         * data-list.c: (cmd_data_list) Free dls->delims on lossage.
2149         (data_list_trns_free) Free dls->delims.
2150
2151         * t-test.q: (tts_custom_pairs) Free vars.
2152         (ssbox_one_sample_init) Fix tab_vline() argument.
2153         (ssbox_independent_samples_init) Ditto.
2154         (trbox_paired_init) Ditto.
2155         (trbox_one_sample_init) Ditto.
2156
2157 Mon May 31 17:19:27 2004  Ben Pfaff  <blp@gnu.org>
2158
2159         Generalize casefiles to the extent that we can use them for
2160         sorting and other kinds of data transformations.  Change cases to
2161         be copy-on-write to improve memory efficiency in common cases.
2162         Every access to a member of a `struct ccase' was changed to be a
2163         call to a case_*() function, especially case_data(), case_num(),
2164         case_str(), or case_data_rw().  Many instances of a local variable
2165         named "case_num" were changed to "case_idx" as a consequence.
2166         Many `struct ccase *' were changed to actual `struct ccase'
2167         because of copying semantics of cases.  In several places there
2168         was a choice between updating debug code to work with the new ADTs
2169         or just deleting it because it was useless; I chose to delete it.
2170  
2171         * Makefile.am: (pspp_SOURCES) Add case.c, case.h.
2172
2173         * case.c: New file.
2174
2175         * case.h: New file.
2176
2177         * aggregate.c: (struct agr_proc) Change type of `sort' to
2178         sort_criteria *.  Add `break_vars', `break_var_cnt' members.
2179         Rename `vars' to `agr_vars', all references updated.  Change
2180         `agr_case' to type `struct ccase'.
2181         (cmd_aggregate) Deal with new members.  Use case_create(),
2182         sort_active_file_in_place(), sort_active_file_to_casefile().
2183         (agr_destroy) Deal with new members.
2184         (aggregate_single_case) Ditto.
2185         (dump_aggregate_info) Ditto.
2186         (initialize_aggregate_info) Ditto.
2187         (agr_to_active_file) Ditto.
2188         (presorted_agr_to_sysfile) Ditto.
2189         (sort_agr_to_sysfile) Removed.
2190
2191         * alloc.c: (out_of_memory) Make non-static.
2192
2193         * alloc.h: Prototype out_of_memory().
2194
2195         * casefile.c: Switched from a linked list in-memory representation
2196         to a two-level array-style representation.  The linked list was
2197         appropriate when we could stick a header onto cases, but that's no
2198         longer the case.  Also, the two-level array will allow for random
2199         in-memory access in case that's ever wanted.  Also added the
2200         concept of a `destructive casereader', one that destroys cases in
2201         the underlying casefile as they are read out.
2202         (macro CASES_PER_BLOCK) New macro.
2203         (struct casefile) New members `value_cnt', `case_list_size',
2204         `case_acct_size', `being_destroyed', `cases'.  Removed `head',
2205         `tail'.
2206         (struct casereader) Removed `cur'.  Added `destructive', `c'.
2207         (global var casefiles) Made static.
2208         (static var case_bytes) New var.
2209         (casefile_create) Takes a value count, not a case size in bytes,
2210         to conform to the case interface.  All callers updated.  Deal with
2211         new and removed members.
2212         (casefile_destroy) Deal with new and removed members.
2213         (casefile_sleep) New function.
2214         (casefile_get_case_size) Removed.
2215         (casefile_get_value_cnt) New function.
2216         (casefile_append) Rewritten to deal with new and removed members.
2217         (casefile_append_xfer) New function.
2218         (write_case_to_disk) Use case_serialize().
2219         (call_posix_fadvise) Removed because posix_fadvise64 segfaults.
2220         Couldn't figure out why.
2221         (casefile_to_disk) Don't call call_posix_fadvise.  Rewritten to
2222         deal with new and removed members.
2223         (merge) Removed.
2224         (merge_sort) Removed.
2225         (casefile_sort) Removed.
2226         (casefile_get_reader) Deal with new and removed members.
2227         (casefile_get_destructive_reader) New function.
2228         (reader_open_file) Make code more readable.  Create case for
2229         reader.
2230         (casereader_get_casefile) New function.
2231         (casereader_read) Deal with new and removed members.  Now returns
2232         a copy of the case, so that the caller is responsible for
2233         destroying the returned case.
2234         (casereader_read_xfer) New function.
2235         (casereader_destroy) Destroy reader's case.
2236         (test_casefile) Second arg is now a value count, all callers
2237         updated.  Now tests destructive readers too.
2238         (get_random_case) Deal with new case ADT.
2239         (write_random_case) Ditto.
2240         (read_and_verify_random_case) Ditto.
2241
2242         * crosstabs.q: Remove debug code.
2243
2244         * descript.q: (calc_descriptives) Deal with new case, casefile
2245         ADTs.
2246
2247         * dfm.c: (cmd_begin_data) There's no storage_source_class anymore.
2248
2249         * do-if.c: Remove unneeded header inclusion.
2250
2251         * expr-prs.c: Remove debug code.
2252
2253         * exprP.h: Remove debug code.
2254
2255         * flip.c: (flip_file) Use fseeko() if available.
2256
2257         * formats.c: Remove debug code.
2258
2259         * get.c: Remove debug code.
2260         (struct mtf_file) Change `input' from `union value *' to `struct
2261         ccase', all references updated.
2262
2263         * levene.c: (levene) Deal with new case, casefile ADTs.
2264
2265         * list.q: Remove debug code.
2266
2267         * loop.c: Remove debug code.
2268         
2269         * matrix-data.c: Remove debug code.
2270
2271         * means.q: Remove debug code.
2272
2273         * mis-val.c: Remove debug code.
2274
2275         * pfm-read.c: Remove debug code.
2276         (pfm_read_code) Change second arg from `union value *' to `struct
2277         ccase *', all references updated.
2278
2279         * recode.c: (string_to_long) Make first arg const.
2280         (convert_to_double) Ditto.
2281
2282         * repeat.c: Remove debug code.
2283
2284         * sample.c: Remove debug code.
2285
2286         * sfm-read.c: Remove debug code.
2287         (sfm_read_case) Change second arg from `union value *' to `struct
2288         ccase *'.
2289
2290         * sort.c: Redone in terms of casefiles.
2291         (enum sort_direction) Moved here from sort.h.
2292         (struct sort_criterion) New structure.
2293         (struct sort_criteria) New structure.
2294         (cmd_sort_cases) Rewritten.
2295         (prepare_to_sort_active_file) New function.
2296         (sort_active_file_in_place) New function.
2297         (sort_active_file_to_casefile) New function.
2298         (parse_sort) Renamed sort_parse_criteria(), rewritten & interface
2299         changed, all callers updated.
2300         (destroy_sort_cases_pgm) Renamed sort_destroy_criteria(),
2301         rewritten & interface changed, all callers updated.
2302         (sort_cases) Renamed sort_execute(), rewritten & interface
2303         changed, all callers updated.
2304         (struct internal_sort) Removed.
2305         (do_internal_sort) Rewritten, interface changed.
2306         (destroy_internal_sort) Removed.
2307         (compare_case_dblptrs) Use sort_criteria instead of sort_case_pgm.
2308         (struct initial_run) Removed; an initial run is now just a
2309         casefile.
2310         (compare_initial_runs) Rewritten.
2311         (struct external_sort) Changed almost completely.
2312         (do_external_sort) Rewritten, interface changed.
2313         (destroy_external_sort) Rewritten.
2314         [HAVE_MKDTEMP] (make_temp_dir) Removed.
2315         [!HAVE_MKDTEMP] (do_mkdir) Removed.
2316         [!HAVE_MKDTEMP] (make_temp_dir) Removed.
2317         (init_external_sort) Removed.
2318         (simulate_error) Removed.
2319         (rmdir_temp_dir) Removed.
2320         (get_temp_file_name) Removed.
2321         (open_temp_file) Removed.
2322         (close_temp_file) Removed.
2323         (remove_temp_file) Removed.
2324         (write_temp_file) Removed.
2325         (read_temp_file) Removed.
2326         (struct record_run) Change `record' from `struct case_lit *' to
2327         `struct ccase'.
2328         (struct initial_run_state) Remove `idx_to_fv', `free_list',
2329         `file_idx', `output_file'.  Add `run', casefile'.  Change
2330         `last_output' from `struct case_list *' to `struct ccase'.
2331         (write_initial_runs) Change interface, rewrite.
2332         (sort_sink_write) Renamed process_case(), changed interfaced,
2333         rewrote.
2334         (destroy_initial_run_state) Rewritten.
2335         (allocate_cases) Rewritten.
2336         (compare_record) Interface changed, rewritten.
2337         (start_run) Rewritten.
2338         (end_run) Rewritten.
2339         (output_record) Rewritten.
2340         (grab_case) Removed.
2341         (release_case) Removed.
2342         (struct merge_case) Change `cases' from double pointer to single
2343         pointer.
2344         (merge) Deal with new case and casefile ADTs.
2345         (struct run) Removed.
2346         (merge_once) Rewritten, interface changed.
2347         (fill_run_buffer) Removed.
2348         (sort_sink_make_source) Removed.
2349         (sort_sink_class) Removed.
2350         (struct sort_source_aux) Removed.
2351         (sort_source_read_helper) Removed.
2352         (sort_source_read) Removed.
2353         (read_sort_output) Removed.
2354         (read_internal_sort_output) Removed.
2355         (read_external_sort_output) Removed.
2356         (sort_source_destroy) Removed.
2357         (sort_source_class) Removed.
2358
2359         * sort.h: (struct sort_cases_pgm) Removed.
2360         (enum sort_direction) Moved to sort.c.
2361
2362         * t-test.q: (calculate) Deal with new case, casefile ADTs.
2363
2364         * tab.c: Remove debug code.
2365
2366         * var-labs.c: Remove debug code.
2367
2368         * var.h: (struct ccase) Removed.
2369         (struct case_list) Removed.
2370
2371         * vars-atr.c: (discard_variables) Use free_case_source().
2372
2373         * vars-prs.c: (parse_vs_variable) Make arg const.
2374         (parse_dict_variable) Ditto.
2375         (parse_variables) Make struct dictionary * arg const.
2376         (parse_var_set_vars) Make struct var_set * arg const.
2377         (struct var_set) Add const to some of the function pointers' args.
2378         (var_set_get_cnt) Make arg const.
2379         (var_set_get_var) Make first arg const.
2380         (var_set_lookup_var) Make first arg const.
2381         (dict_var_set_get_cnt) Make arg const.
2382         (dict_var_set_get_var) Make first arg const.
2383         (dict_var_set_lookup_var) Make first arg const.
2384         (var_set_create_from_dict) Make arg const.  Add cast to aux
2385         assignment.
2386         (struct array_var_set) Add const to var member.
2387         (array_var_set_get_cnt) Make arg const.
2388         (array_var_set_get_var) Make first arg const.
2389         (array_var_set_lookup_var) Make first arg const.
2390         (var_set_create_from_array) Make first arg const.  Insert cast.
2391
2392         * vfm.c: (struct write_case_data) Change trns_case, sink_case
2393         members from `struct ccase *' to `struct ccase'.
2394         (static var lag_queue) Change from double to single pointer.
2395         (procedure) Optimize trivial case.
2396         (internal_procedure) Deal with changed case, case_source ADTs.
2397         (create_trns_case) Changed interface, rewrote.
2398         (open_active_interface) Initialize modified lag queue.
2399         (write_case) Deal with changed case ADT.
2400         (lag_case) Deal with modified lag queue.
2401         (close_active_file) Destroy modified lag queue.
2402         Deal with changed case_source, case_sink ADTs.
2403         (destroy_storage_stream_info) Make null arg into no-op.
2404         (storage_sink_make_source) Set aux in created source.
2405         (storage_source_read) Deal with changed case, casefile ADTs.
2406         (storage_source_create) New function.
2407         (lagged_case) Rewrite.
2408         (free_case_source) New function.
2409         (free_case_sink) Rewrite.
2410         (struct split_aux_data) Changed prev_case from `struct ccase *' to
2411         `struct ccase'.
2412         (procedure_with_splits) Deal with changed prev_case.
2413         (procedure_with_splits_callback) Ditto.
2414         (multipass_split_aux_data) Changed prev_case from `struct ccase *' to
2415         `struct ccase'.
2416         (multipass_procedure_with_splits) Deal with changed prev_case.
2417         (multipass_split_callback) Ditto.
2418         
2419         
2420 Mon May 31 17:19:06 2004  Ben Pfaff  <blp@gnu.org>
2421
2422         The workspace idea didn't work out.
2423
2424         * Makefile.am: (pspp_SOURCES) Remove workspace.c, workspace.h.
2425         
2426         * workspace.c: Removed.
2427
2428         * workspace.h: Removed.
2429
2430 Sun May 30 18:35:19 2004  Ben Pfaff  <blp@gnu.org>
2431
2432         Fully implement arbitrary delimiters on DATA LIST, extending the
2433         half implementation that was already there.
2434
2435         * data-list.c: (struct data_list_pgm) Remove `delim', add
2436         `delims', `delim_cnt'.
2437         (cmd_data_list) Initialize new members.  Parse delimiters and
2438         clean up code a bit.
2439         (cut_field) Extract fields with arbitrary delimiters.  Also, fix
2440         handling of leading commas.
2441         (read_from_data_list_fixed) Expand tabs.  Adapt to new DFM
2442         interfaces.
2443         (read_from_data_list_free) Adapt to new DFM interfaces.
2444         (read_from_data_list_list) Ditto.
2445         (repeating_data_trns_proc) Ditto.
2446
2447         * dfm.c: Split up reader and writer into separate code, because
2448         they do different things.  Use struct string instead of explicit
2449         allocation code, for clarity.
2450         (enum dfm_reader_flags) New enum.
2451         (struct dfm_fhuser_ext) Removed.
2452         (struct dfm_reader_ext) New.
2453         (get_reader) New function, used by just about all the reader
2454         functions.
2455         (dfm_close) Removed.
2456         (close_reader) New function.
2457         (dfm_open_for_reading) Rewrite initialization of dfm_fhuser_ext.
2458         (dfm_open_for_writing) Ditto.
2459         (macro force_line_buffer_expansion) Removed.
2460         (count_tabs) Removed.
2461         (tabs_to_spaces) Removed.
2462         (read_record) Deal with new dfm_reader_ext.  Use struct string
2463         functions.  Don't convert tabs to spaces.
2464         (dfm_eof) New function.
2465         (dfm_get_record) Changed interface, rewrote.
2466         (dfm_expand_tabs) New function.
2467         (dfm_fwd_record) Renamed dfm_forward_record(), updated to new
2468         dfm_reader_ext, rewritten.
2469         (dfm_bkwd_record) Renamed dfm_reread_record(), updated to new
2470         dfm_reader_ext, rewritten.
2471         (dfm_set_record) Removed in favor of dfm_forward_columns().
2472         (dfm_forward_columns) New function.
2473         (dfm_get_cur_col) Renamed dfm_column_start, updated to new
2474         dfm_reader_ext, rewritten.
2475         (static var dfm_r_class) Use close_reader for the destructor.
2476         (struct dfm_writer_ext) New.
2477         (dfm_put_record) Updated to new dfm_writer_ext, rewritten.  Uses
2478         bounce buffer now instead of local allocation.
2479         (close_writer) New function.
2480         (static var dfm_writer_ext) Use close_writer for destructor.
2481         (cmd_begin_data) Adapt to new dfm_reader_ext.
2482
2483         * file-handle.q: Add support for per-file tab width.
2484         (struct private_file_handle) Add tab_width member.
2485         (q2c specifications) Add tabwidth subcommand.
2486         (cmd_file_handle) Put parsed tab width into private_file_handle.
2487         (create_file_handle) Set default tab width.
2488         (handle_get_tab_width) New function.
2489
2490         * file-type.c: (file_type_source_read) Adapt to new DFM interface.
2491
2492         * inpt-pgm.c: (reread_trns_proc) Ditto.
2493
2494         * matrix-data.c: (context) Ditto.
2495         (another_token) Ditto.
2496         (mget_token) Ditto.
2497         (force_eol) Ditto.
2498
2499 Sun May 30 18:33:59 2004  Ben Pfaff  <blp@gnu.org>
2500
2501         * casefile.c: (casefile_destroy) Fix memory leak by freeing
2502         cf->filename.
2503         (casereader_destroy) Don't close file descriptor -1.
2504
2505         * recode.c: (cmd_recode) Fix memory leak.
2506
2507         * set.q: (q2c specifications) Fix typo in user message.
2508
2509         * str.c: (st_bare_pad_len_copy) Change memcpy to memmove to avoid
2510         undefined behavior for overlapping arguments.
2511
2512 Sun May 30 18:31:48 2004  Ben Pfaff  <blp@gnu.org>
2513
2514         * casefile.c: valgrind doesn't implement posix_fadvise() yet, so
2515         don't call it when we're running under valgrind.
2516         (call_posix_fadvise) New function.
2517         (casefile_to_disk) Use call_posix_fadvise().
2518         (reader_open_file) Ditto.
2519         
2520 Sun May 30 18:20:12 2004  Ben Pfaff  <blp@gnu.org>
2521
2522         Update our string ADTs, struct string and struct len_string.  Get
2523         rid of pool support, which was largely unused.  Rename lots of
2524         functions to have more obvious or consistent names.
2525         
2526         * ascii.c: Get rid of ascii_pool.  It was only used for string
2527         allocations.
2528         (ascii_open_global) Don't create ascii_pool.
2529         (ascii_close_driver) Don't destroy ascii_pool.
2530         (ascii_postopen_driver) Don't use pool.
2531         (ascii_close_driver) Destroy strings manually.
2532
2533         * str.c: (ds_create) Remove pool argument, all references updated.
2534         (ds_init) Ditto.
2535         (ds_replace) Remove pool support, make more efficient when we
2536         don't need to reallocate.
2537         (ds_destroy) Remove pool support.
2538         (ds_rpad) New function.
2539         (ds_size) Renamed ds_capacity(), all references updated.
2540         (ds_value) Renamed ds_c_str(), all references updated.
2541         (ds_concat) Renamed ds_puts(), all references updated.
2542         (ds_concat_buffer) Renamed ds_concat(), all references updated.
2543         (ds_putchar) Renamed ds_putc(), all references updated.
2544         (ds_getline) Renamed ds_gets(), all references updated.
2545         (ls_create) Remove pool argument, all references updated.
2546         (ls_create_buffer) Ditto.
2547         (ls_destroy) Removed pool support.
2548         (ls_value) Renamed ls_c_str(), all references updated.
2549
2550         * str.h: (ls_length) [__GNUC__] Add inline version.
2551         (ls_c_str) [__GNUC__] Add inline version.
2552         (ls_end) [__GNUC__] Add inline version.
2553         (struct string) Remove pool member.  Rename `size' to `capacity',
2554         all references updated.
2555
2556         * tab.c: (text_format) Instead of using pool argument to
2557         ls_create_buffer(), call pool_register() on allocated data.
2558
2559 Mon Apr 26 22:40:07 2004  Ben Pfaff  <blp@gnu.org>
2560
2561         We're abusing the current ASCII driver by telling it to allocate a
2562         9999-line, 9999-character page in the tests.  This causes some
2563         systems to curl up and die because it allocates 20 MB of
2564         contiguous RAM.  This change alleviates at least part of the
2565         problem.  It is mostly a stop-gap until the new output system is
2566         ready.
2567         
2568         * ascii.c: (struct line) New structure.
2569         (struct ascii_driver_ext) Remove `page', `page_size', `line_len',
2570         `line_len_size', `n_output' members.  Add `lines', `lines_cap'.
2571         (ascii_preopen_driver) Initialize new members, not old ones.
2572         (ascii_close_driver) Destroy new members, not old ones.
2573         (ascii_open_page) Allocate new members, not old ones.
2574         (expand_line) Allocate room in line.
2575         (draw_line) Use new members.
2576         (ascii_line_horz) Ditto.
2577         (ascii_line_vert) Ditto.
2578         (ascii_line_intersection) Ditto.
2579         (text_draw) Ditto.
2580         (output_lines) Ditto.
2581         (ascii_close_page) Ditto.
2582
2583 Sun Apr 25 23:40:15 2004  Ben Pfaff  <blp@gnu.org>
2584
2585         * matrix.c: Dead code.  Removed.
2586
2587         * matrix.h: Dead code.  Removed.
2588
2589 Fri Apr 16 23:59:51 2004  Ben Pfaff  <blp@gnu.org>
2590
2591         Contrary to what I'd always understood, there is an efficient
2592         algorithm for deletion from a hash table populated via linear
2593         probing.  This change implements it.
2594         
2595         * hash.c: (hsh_rehash) Probe in increasing order.
2596         (hsh_probe) Ditto.
2597         (locate_matching_entry) Ditto.
2598         (hsh_delete) Use Knuth's Algorithm 6.4R for deletion.
2599
2600 Tue Apr 13 19:24:15 2004  Ben Pfaff  <blp@gnu.org>
2601
2602         * moments.c (calc_moments): Adjust calculation of kurtosis to
2603         avoid subtracting huge numbers from huge numbers, on Michael
2604         Kiefte's advice.
2605
2606 Sun Apr 11 14:22:12 2004  Ben Pfaff  <blp@gnu.org>
2607
2608         Rework moments routines for improved numerical stability based on
2609         Michael Kiefte's advice.  Any bugs or remaining numerical problems
2610         are still mine though.
2611
2612         There is now a struct moments1 for use with one-pass moments.  It
2613         uses a provisional means algorithm as an attempt to improve
2614         accuracy of higher moments.  The older struct moments now only
2615         handles two-pass moments.
2616         
2617         * aggregate.c: Use moments1 instead moments.
2618
2619         * descript.c: Revert previous change, which is no longer needed
2620         due to the moments revision.
2621
2622         * moments.c: (calc_moments) New function for calculating variance,
2623         skewness, kurtosis.
2624         (moments_pass_one) Only accumulate weights bigger than zero.
2625         (moments_calculate) Allow calculating the mean on pass one, others
2626         require pass two.  Implement in terms of calc_moments().
2627         (struct moments1) New structure.
2628         (init_moments1) New function.
2629         (moments1_clear) Ditto.
2630         (moments1_create) Ditto.
2631         (moments1_add) Ditto.
2632         (moments1_calculate) Ditto.
2633         (moments1_destroy) Ditto.
2634         (cmd_debug_moments) Deal with `struct moments' or `struct
2635         moments1' as requested by user.
2636
2637 Sun Apr 11 14:21:55 2004  Ben Pfaff  <blp@gnu.org>
2638
2639         * Makefile.am (pspp_SOURCES): Remove debug.c.
2640
2641         * debug.c: Removed.  It was empty anyway.
2642
2643 Fri Apr  9 20:04:49 2004  Ben Pfaff  <blp@gnu.org>
2644
2645         * descript.c (calc_descriptives): Fix assert failure when only
2646         MOMENT_MEAN is needed.
2647
2648 2004-04-09  Michael Kiefte  <mkiefte@dal.ca>
2649
2650         * descript.c: 
2651
2652         fixed problem with parsing in match_statistic() causing
2653         "DESCRIPTIVE STAT=MEAN." to barf.
2654
2655         "MEAN" is now default if "SORT" given without specification.
2656
2657         Fixed infinite loop with "DESCRIPT GIBBERISH=ALL."  Parsing is
2658         generally less forgiving of syntax errors: better to have it do
2659         nothing and type it in again then to not know what it actually did
2660         instead.  
2661
2662         z-score transformation now checks score for user-missing values
2663         and checks std_dev for SYSMIS.
2664
2665 2004-04-06  Michael Kiefte  <mkiefte@dal.ca>
2666
2667         * aggregate.c, crosstabs.q, descript.c, dictionary.c, frequencies.q, levene.c, t-test.q, var.h: 
2668         Changed dict_get_case_weight() to accept an additional int * flag
2669         to complain about system-missing, user-missing, zero, or negative
2670         weights and updated existing functions to pass int * to
2671         dict_get_case_weight().
2672
2673 2004-04-05  jmd  <jmd@gnu.org>
2674
2675         * main.c: Fixed configuration problems with gsl
2676
2677         * t-test.q: Fixed some problems encountered when compiling under Cygwin
2678
2679 2004-04-03  blp  <blp@gnu.org>
2680
2681         * lexer.c, ChangeLog:
2682         Fix infinite loop on comment at end of file, add test.
2683
2684 2004-04-03  jmd  <jmd@gnu.org>
2685
2686         * settings.h, var.h, ChangeLog, Makefile.am, cmdline.c, command.c, command.h, error.h, filename.c, frequencies.q, lexer.h, main.c, q2c.c, set.q:
2687         Fixed the calculation of percentiles and added --syntax and --algorithm options
2688
2689 Sat Apr  3 11:43:37 2004  Ben Pfaff  <blp@gnu.org>
2690
2691         * lexer.c: (lex_skip_comment) Handle end-of-file correctly (I
2692         hope).
2693
2694 Sat Apr  3 15:00:18 WST 2004 John Darrington <john@darrington.wattle.id.au>
2695
2696         * frequencies.q:  Fixed the calculation of percentiles
2697
2698         * Makefile.am:  Added the --ansi flag and dealt with the
2699         consequences.  Added some entries to PSPP_sources so that
2700         make distcheck would pass
2701
2702         * cmdline.c:   Added the --syntax and --algorithm options
2703
2704         * q2c.c:  Added an implicit /ALGORITHM subcommand to everything.
2705
2706 Fri Apr  2 11:25:22 WAST 2004 John Darrington <john@darrington.wattle.id.au>
2707
2708         * t-test.q, levene.c, levene.h  Converted t-test (incl levene) to 
2709         use the new multipass_split_... mechanism.
2710
2711 Wed Mar 31 22:36:22 2004  Ben Pfaff  <blp@gnu.org>
2712
2713         * frequencies.q: (calc_stats) Use moments data structure and
2714         calc_seskew(), calc_sekurt() functions.
2715
2716         * set.q main.c settings.h Added support for --syntax and --algorithm 
2717         options
2718
2719 Tue Mar 30 22:04:19 2004  Ben Pfaff  <blp@gnu.org>
2720
2721         * vfm.c: Had to get last call to multipass_split_output() inside
2722         open_active_file()/close_active_file() pairing, so introduce new
2723         function.
2724         (internal_procedure) Move procedure() code here, except for calls
2725         to open_active_file() and close_active_file().
2726         (procedure) Wrap open_active_file() and close_active_file() around
2727         internal_procedure().
2728         (multipass_procedure_with_splits) Wrap open_active_file() and
2729         close_active_file() around internal_procedure().
2730
2731 Tue Mar 30 22:01:57 2004  Ben Pfaff  <blp@gnu.org>
2732
2733         * descript.c: (cmd_descriptives) Free `vars' to avoid memory leak.
2734
2735 Mon Mar 29 16:26:40 2004  Ben Pfaff  <blp@gnu.org>
2736
2737         * debug.c: Removed.  Moved cmd_debug_evaluate() into expr-evl.c.
2738
2739         * expr-evl.c: (cmd_debug_evaluate) Moved here from debug.c.
2740
2741 Mon Mar 29 16:03:08 2004  Ben Pfaff  <blp@gnu.org>
2742
2743         * algorithm.c: By default turn off some of the more expensive
2744         assertions.
2745         (expensive_assert) New macro which expands to assert if
2746         EXTRA_CHECKS is defined, to nothing otherwise.
2747         (unique) Use expensive_assert().
2748         (binary_search) Ditto.
2749         (push_heap) Ditto.
2750         (pop_heap) Ditto.
2751         (make_heap) Ditto.
2752         (sort_heap) Ditto.
2753
2754         * command.c: (conflicting_3char_prefixes) Words that are the same
2755         don't cause conflicts when they are abbreviated to the first three
2756         letters.
2757
2758         * expr-evl.c: (CONCAT_func) Fix memory leak by incrementing struct
2759         nonterm_node's n earlier.
2760         (generic_str_func) Ditto.
2761         
2762 Mon Mar 29 15:32:17 2004  Ben Pfaff  <blp@gnu.org>
2763
2764         Add support for multipass procedures.  Rewrite DESCRIPTIVES to
2765         test multipass support, take advantage of new moments
2766         calculation, and to not be such crappy code.  Get rid of q2c
2767         processing for DESCRIPTIVES.
2768
2769         * vfm.c: (struct multipass_split_aux_data) New structure.
2770         (multipass_procedure_with_splits) New function.
2771         (multipass_split_callback) New function.
2772         (multipass_split_output) New function.
2773         * descript.q: Removed.
2774
2775         * descript.c: New file.
2776
2777         * var.h: Removed descriptives enums.
2778         (struct descriptives_proc) Removed.
2779         (struct variable) Removed p.dsc.
2780
2781         * Makefile.am: (q_sources_c) Remove descript.c.
2782         (q_sources_q) Removed descript.q.
2783         
2784 Mon Mar 29 15:31:55 2004  Ben Pfaff  <blp@gnu.org>
2785
2786         New manager for keeping track of used workspace.
2787         
2788         * workspace.c: New file.
2789
2790         * workspace.h: New file.
2791
2792         * Makefile.am: (pspp_SOURCES) Add workspace.c, workspace.h.
2793
2794         * sort.c: (do_internal_sort) Use workspace_malloc().
2795         (destroy_internal_sort) Use workspace_free().
2796
2797 Mon Mar 29 15:31:08 2004  Ben Pfaff  <blp@gnu.org>
2798
2799         New `struct casefile' for managing sets of cases.
2800
2801         * casefile.c: New file.
2802
2803         * casefile.h: New file.
2804
2805         * command.def: Add DEBUG CASEFILE command.
2806
2807         * Makefile.am: (pspp_SOURCES) Add casefile.c, casefile.h.
2808
2809         * sort.c: (sort_cases) Move logic for sending storage file to disk
2810         into do_external_sort().
2811         (struct internal_sort) Use an array of ccase pointers instead of a
2812         case_list.
2813         (do_internal_sort) Rewrite to handle casefiles.
2814         (compare_case_list) Removed.
2815         (compare_cases) New function.
2816         (compare_case_dblptrs) New function.
2817         (read_internal_sort_output) Deal with new struct internal_sort.
2818
2819         * vfm.c: (static var workspace_overflow) Removed.
2820         (struct storage_stream_info) Removed all the members.  Added
2821         struct casefile * member.
2822         (storage_sink_open) Use casefile.
2823         (open_storage_file) Removed.
2824         (write_storage_file) Removed.
2825         (storage_to_disk) Removed.
2826         (destroy_storage_stream_info) Use casefile.
2827         (storage_sink_write) Use casefile.
2828         (storage_sink_make_source) Use casefile.
2829         (storage_source_count) Use casefile.
2830         (storage_source_read) Use casefile.
2831         (storage_source_on_disk) Removed.
2832         (storage_source_get_cases) Removed.
2833         (storage_source_set_cases) Removed.
2834         (storage_source_get_casefile) New function.
2835         
2836 Mon Mar 29 15:30:09 2004  Ben Pfaff  <blp@gnu.org>
2837
2838         New `struct moments' for calculating moments.
2839
2840         * stats.c: Removed.
2841
2842         * stats.h: Removed.
2843
2844         * moments.c: New file.
2845
2846         * moments.h: New file.
2847
2848         * command.def: Add DEBUG MOMENTS command.
2849
2850         * Makefile.am: (pspp_SOURCES) Add moments.c, moments.h.  Remove
2851         stats.c, stats.h.
2852
2853         * aggregate.c: Modify AGGREGATE to use the new moments
2854         calculation, even if not in such a great way.
2855         (struct agr_var) Add `moments' member.
2856         (parse_aggregate_functions) Set `moments' member to null.
2857         (agr_destroy) Destroy `moments' member.
2858         (accumulate_aggregate_info) Use `moments' for standard deviation.
2859         (dump_aggregate_info) Ditto.
2860         (initialize_aggregate_info) Create or clear `moments'.
2861
2862         * misc.h: Add pow2(), pow3(), pow4() functions in place of sqr(),
2863         cube(), pow4() that were in stats.h.  All references updated.
2864
2865         * crosstabs.q: stats.h had chi-square significance functions.  Use
2866         GSL instead.
2867         (display_chisq) Use gsl_cdf_chisq_Q() instead of chisq_sig().
2868
2869         * expr-evl.c: (expr_evaluate) Use moments_of_values() for
2870         OP_CFVAR, OP_MEAN, OP_SD, OP_VARIANCE.
2871                 
2872 Fri Mar 26 14:21:23 2004  Ben Pfaff  <blp@gnu.org>
2873
2874         * dictionary.c: (dict_compact_values) Compacted values need to
2875         start off from 0.
2876
2877 Fri Mar 26 00:54:57 2004  Ben Pfaff  <blp@gnu.org>
2878
2879         * var-labs.c: (cmd_variable_labels) For compatibility, don't allow
2880         `/' at start.  Check return value of parse_variables() for error
2881         return.
2882
2883 Fri Mar 26 00:19:27 2004  Ben Pfaff  <blp@gnu.org>
2884
2885         Revamp expressions: make the code a little nicer, and fix bugs
2886         found in testing.
2887         
2888         * expr-evl.c: (expr_evaluate) Make expression argument const.
2889         Support OP_ADD, OP_SUB, OP_MUL, OP_DIV instead of OP_PLUS, OP_MUL.
2890         OP_POW is missing for arg 2 <= 0.  OP_LOG is natural log, not
2891         base-10 log.  Fix OP_ANY, OP_ANY_STRING, OP_RANGE, OP_RANGE_STRING
2892         off-by-ones.  Add OP_MAX_STRING, OP_MIN_STRING.  Fix OP_TIME_HMS,
2893         OP_DATE_WKYR boundary conditions.  Add OP_CTIME_DAYS,
2894         OP_CTIME_HOURS, OP_CTIME_MINUTES, OP_CTIME_DAYS, OP_CTIME_SECONDS.
2895         Support OP_INDEX_2, OP_INDEX_3, OP_RINDEX_2, OP_RINDEX_3 instead
2896         of OP_INDEX, OP_INDEX_OPT, OP_RINDEX, OP_RINDEX_OPT.  Merge
2897         OP_LPAD_OPT into OP_LPAD, OP_RPAD_OPT into OP_RPAD, OP_LTRIM_OPT
2898         into OP_LTRIM, OP_RTRIM_OPT into OP_RTRIM, OP_NUMBER_OPT into
2899         OP_NUMBER.  Fix OP_RTRIM fragility.  Support OP_SUBSTR_2,
2900         OP_SUBSTR_3 instead of OP_SUBSTR, OP_SUBSTR_OPT.  Remove OP_INV.
2901         Simplify OP_SYSMIS.  Remove OP_STR_MIS.
2902
2903         * expr-opt.c: (optimize_expression) Rewrite.
2904         (macro n0) Removed.
2905         (macro n1) Removed.
2906         (macro n2) Removed.
2907         (macro s0) Removed.
2908         (macro s0l) Removed.
2909         (macro s1) Removed.
2910         (macro s1l) Removed.
2911         (macro s2) Removed.
2912         (macro s2l) Removed.
2913         (macro s) Removed.
2914         (macro sl) Removed.
2915         (eq_num_con) New function.
2916         (optimize_tree) New function.
2917         (macro rnc) Removed.
2918         (macro frnc) Removed.
2919         (str_search) Add const to string params.
2920         (str_rsearch) Ditto.
2921         (evaluate_tree_no_missing) Renamed from evaluate_tree.  Add num[],
2922         str[], str_len[] locals to substitute for most of removed macros.
2923         Support OP_ADD, OP_SUB, OP_MUL, OP_DIV instead of OP_PLUS, OP_MUL.
2924         Removed support for missing values because we're never called with
2925         missing values.  Use set_number() or set_number_errno() instead of
2926         rnc or frnc.  Removed any stuff that caused trouble in testing.
2927         We can re-add it later if it really slows anything.  Fix some
2928         random problems.
2929         (evaluate_tree_with_missing) Not yet supported.  To be added later
2930         if it's important.
2931         (repl_num_con) Removed.
2932         (collapse_node) New function.
2933         (force_repl_num_con) Removed.
2934         (set_number) New function.
2935         (set_number_errno) New function.
2936         (repl_str_con) Removed.
2937         (set_string) New function.
2938         (yrmoda) Tighten boundary conditions.  Adopt 2030 cut-off for
2939         2-digit years.
2940         (dump_node) No special case for OP_AND, OP_OR.
2941
2942         * expr-prs.c: (expr_prs) Honor EXPR_NO_OPTIMIZE bit.  Rewrite.
2943         (expr_get_type) New function.
2944         (type_check) Rewrite.
2945         (type_coercion) New function.
2946         (struct operator) New structure.
2947         (match_operator New function.
2948         (parse_binary_operators) New function.
2949         (parse_inverting_unary_operator) New function.
2950         (parse_or) Rewritten.
2951         (parse_and) Rewritten.
2952         (parse_not) Rewritten.
2953         (parse_rel) Rewritten.
2954         (parse_add) Rewritten.
2955         (parse_mul) Rewritten.
2956         (parse_neg) Rewritten.
2957         (parse_exp) Rewritten.
2958         (parse_sysvar) Add $TRUE, $FALSE system variables.
2959         Get $LENGTH, $WIDTH from get_viewlength(), get_viewwidth().
2960         (parse_primary) Use allocate_var_node(), allocate_num_con(),
2961         allocate_str_con().
2962         (struct function) Remove desc, change `func' prototype.
2963         (unary_func) Remove special cases.
2964         (MISSING_func) Reduce to unary_func() that just returns a boolean.
2965         (SYSMIS_func) Handle SYSMIS((x)) like SYSMIS(x).
2966         (VALUE_func) Use allocate_var_node().
2967         (nary_num_func) Allow MIN and MAX for strings.
2968         Use allocate_var_node().  Properly clean up.
2969         Fix return type.
2970         (generic_str_func) Use local table instead of removed `desc'
2971         member.  Mostly rewrite.
2972         (get_num_args) Revise error message.
2973         (parse_function) Return EXPR_ERROR, not 0 on error.
2974         (macro op) Removed.
2975         (macro varies) Removed.
2976         (ops[]) Use expr.def.
2977         (free_node) Do nothing if node is null.
2978         (allocate_num_con) New function.
2979         (allocate_str_con) New function.
2980         (allocate_var_node) New function.
2981         (allocate_binary_nonterminal) New function.
2982         (append_nonterminal_arg) Removed.
2983         (static var func_tab[]) Revised.
2984         (expr_debug_print_postfix) Make parameter const.
2985         Use printf() instead of debug_printf().
2986
2987         * expr.def: New file.
2988         
2989         * expr.h: Change PXP_* to EXPR_*, all references updated.  Also
2990         use named enum instead of unnamed, all references updated.  Add
2991         EXPR_ANY, EXPR_NO_OPTIMIZE.
2992
2993         * exprP.h: Remove EX_*.  Add DEFINE_OPERATOR.  Use expr.def
2994         instead of defining OP_* directly.
2995         (macro IS_TERMINAL) New macro.
2996         (macro IS_NONTERMINAL) New macro.
2997         (enum OP_NO_FLAGS) New.
2998         
2999 Fri Mar 26 00:18:01 2004  Ben Pfaff  <blp@gnu.org>
3000
3001         * error.c: (err_assert_fail) msg variable needs to be non-const.
3002
3003 Fri Mar 26 00:17:24 2004  Ben Pfaff  <blp@gnu.org>
3004
3005         * debug.c: (cmd_debug_evaluate) Rewrite.
3006
3007 Fri Mar 26 00:15:13 2004  Ben Pfaff  <blp@gnu.org>
3008
3009         Fix some CROSSTABS bit rot stupidity.
3010
3011         * crosstabs.q: Reorder the CELLS subcommands for compatibility.
3012         (internal_cmd_crosstabs) Initializes cells[] correctly.
3013         (float_M_suffix) Rename format_cell_entry(), change prototype,
3014         rewrite.
3015         (display_crosstabulation) Fix cell formatting.
3016
3017 Fri Mar 26 00:14:09 2004  Ben Pfaff  <blp@gnu.org>
3018
3019         Make lex_rest_of_line(), lex_entire_end() not discard lines.  Have
3020         to call lex_discard_line() to do that.
3021
3022         * command.c: (run_command) Call lex_discard_line() after
3023         lex_rest_of_line().
3024
3025         * lexer.c: (lex_entire_end) Change behavior.
3026         (lex_rest_of_line) Change behavior.  Return const char *.
3027         (lex_discard_line) Don't clear getl_buf, don't emit message.
3028
3029         * main.c: (handle_error) Emit message here.
3030
3031         * repeat.c: (internal_cmd_do_repeat) Use lex_discard_line()
3032         instead of lex_entire_line().
3033
3034         * str.c: (mm_find_reverse) Make length params size_t.  Rewrite.
3035
3036         * title.c: (get_title) Call lex_discard_line() after
3037         lex_rest_of_line().
3038         (cmd_file_label) Ditto.
3039         (cmd_document) Deal with const char * return value.
3040
3041 Fri Mar 26 00:10:16 2004  Ben Pfaff  <blp@gnu.org>
3042
3043         Removed REMARK command.
3044
3045         * command.c: (extract_prefix) Removed.
3046         (output_line) Removed.
3047         (cmd_remark) Removed.
3048
3049         * command.def: Remove REMARK.
3050
3051 Fri Mar 26 00:08:38 2004  Ben Pfaff  <blp@gnu.org>
3052
3053         Added abort() after lots of assert(0) invocations to avoid some
3054         compiler warnings.  We really need a NOT_REACHED macro.
3055
3056 Tue Mar 23 08:00:42 WAST 2004 John Darrington <john@darrington.wattle.id.au>
3057
3058         * sort.c: Added missing call to temp_file_close.  Changed error 
3059         messages to warnings.
3060
3061         * set.q: Improved setting of set_view{length,width} to be more tolerant
3062         of buggy OSes.
3063
3064 Sun Mar 21 10:11:14 WST 2004 John Darrington <john@darrington.wattle.id.au>
3065
3066         * val-labs.c: Fixed a bug where PSPP would crash, if VALUE LABELS was
3067         used with incorrect syntax.
3068
3069         * error.c, error.h et al:  Overridden definition of assert for a
3070         custom one.
3071
3072         * test-q.c: Fixed a buglet where it would crash if no /VARIABLES
3073         subcommand was given when it ought to have been.
3074
3075 Sat Mar 20 22:19:08 2004  Ben Pfaff  <blp@gnu.org>
3076
3077         * tab.c: (tab_vline) Fix assertions to respect row_ofs and
3078         col_ofs.
3079         (tab_hline) Ditto.
3080         (tab_box) Ditto.
3081         (tab_joint_text) Ditto.
3082
3083 Sat Mar 20 17:57:23 2004  Ben Pfaff  <blp@gnu.org>
3084
3085         * levene.c: Add #include.
3086
3087         * set.q: (set_viewport) Add `int' argument to make its prototype
3088         correct for signal().
3089
3090 Sat Mar 20 15:35:17 2004  Ben Pfaff  <blp@gnu.org>
3091
3092         * expr-evl.c: (expr_evaluate) Assert that `c' is nonzero before
3093         using it.
3094
3095 Sat Mar 20 15:18:16 2004  Ben Pfaff  <blp@gnu.org>
3096
3097         Changed DFM from open-at-first-access to explicit-open.  Before,
3098         calling dfm_get_record() or dfm_put_record() would automatically
3099         open the file.  Now, you have to call dfm_open_for_reading() or
3100         dfm_open_for_writing() explicitly.  This makes it possible to
3101         check permissions, file existence, etc. earlier.
3102
3103         Also made struct file_handle more opaque, and clean up in general.
3104
3105         * data-list.c: (cmd_data_list) Open handle for reading.
3106
3107         * dfm.c: (struct dfm_fhuser_ext) Add `where', `saw_begin_data'
3108         members.
3109         (open_file_r) Renamed dfm_open_for_reading(), rewrote.
3110         (open_file_w) Renamed dfm_open_for_writing(), rewrote.
3111         (open_inline_file) Removed.
3112         (read_record) For inline_file, if we haven't seen BEGIN DATA, read
3113         it.  Deal with line_number in extension record instead of file
3114         handle.
3115         (dfm_get_record) Rewrote.
3116         (dfm_put_record) Rewrote.
3117         (dfm_push) Assert file is open and one of ours.  Deal with
3118         line_number in extension record instead of file handle.
3119         (dfm_pop) Assert file is open and one of ours.  Deal with
3120         line_number in extension record instead of file handle.
3121         (cmd_begin_data) Use dfm_open_for_reading().  Mark that we saw
3122         BEGIN DATA.     
3123
3124         * file-handle.h: (enum constants RH_RF_*) Removed.
3125         (enum constants FH_MD_*) Removed.
3126         (struct file_handle) Removed `name', `norm_fn', `fn', `where',
3127         `recform', `lrecl', `mode' members.  Public references to
3128         `recform' changed to use handle_get_mode(), references to `lrecl'
3129         changed to use handle_get_record_width().  Added `private' member.
3130         (enum file_handle_mode) New.
3131
3132         * file-handle.q: (struct private_file_handle) New structure.
3133         (struct file_handle_list) New structure.
3134         (static var files) New.
3135         (static var file_handles) Removed.
3136         (init_file_handle) Removed.
3137         (create_file_handle) Removed.
3138         (get_handle_with_name) New function.
3139         (get_handle_for_filename) New function.
3140         (cmd_file_handle) Rewritten.
3141         (hash_file_handle) Removed.
3142         (cmp_file_handle) Removed.
3143         (fh_init_files) Rewritten.
3144         (fh_parse_file_handle) Rewritten.  Allows identifiers as
3145         filenames.
3146         (fh_get_handle_by_name) Renamed handle_get_name(), all references
3147         updated.  Rewritten.
3148         (fh_get_handle_by_filename) Renamed handle_get_filename(), all
3149         references updated.  Rewritten.
3150         (fh_record_width) Renamed handle_get_record_width(), all
3151         references updated.  Rewritten.
3152         (handle_get_mode) New function.
3153
3154         * file-type.c: (cmd_file_type) Open handle for reading.
3155
3156         * filename.c: [unix] (struct file_identity) New structure.
3157         [unix] (fn_get_identity) New function.
3158         [unix] (fn_free_identity) New function.
3159         [unix] (fn_compare_file_identities) New function.
3160         [!unix] (struct file_identity) New structure.
3161         [!unix] (fn_get_identity) New function.
3162         [!unix] (fn_free_identity) New function.
3163         [!unix] (fn_compare_file_identities) New function.
3164
3165         * lexer.c: (static var put) Renamed put_token, all references
3166         updated.
3167         (static var put_tokstr) New.
3168         (static var put_tokval) New.
3169         (lex_init) Initialize put_tokstr().
3170         (restore_token) New function.
3171         (save_token) New function.
3172         (lex_get) Use restore_token().
3173         (lex_put_back) Use save_token().
3174         (lex_put_back_id) New function.
3175         (lex_put_forward) Removed.
3176         (lex_preprocess_line) Set put_token instead of using
3177         lex_put_forward().
3178         (lex_negative_to_dash) Use save_token(), set put_token directly.
3179         (dump_token) Use stderr instead of stdout.
3180
3181         * main.c: (main) Remove call to cmd_init().
3182         
3183         * matrix-data.c: (cmd_matrix_data) Open file for reading.
3184
3185         * pfm-read.c: Use handle_get_filename() instead of trying to use
3186         h->fn directly, all over.
3187
3188         * pfm-write.c: Ditto.
3189
3190         * print.c: (internal_cmd_print) Open handle for writing.
3191         (dump_table) Use handle_get_filename().
3192         (print_trns_proc) Use handle_get_mode().
3193         (cmd_print_space) Use fh_parse_file_handle().
3194         Open handle for writing.
3195         [0] (debug_print) Removed.
3196
3197         * sfm-read.c: Use handle_get_filename() instead of trying to use
3198         h->fn directly, all over.
3199
3200         * sfm-write.c: Ditto.
3201
3202 Sat Mar 20 14:35:48 2004  Ben Pfaff  <blp@gnu.org>
3203
3204         Fix memory leaks.
3205         
3206         * autorecode.c: (arc_free) Free arc->src_values.
3207
3208         * error.c: (msg) Free buf.
3209
3210         * val-labs.c: (do_value_labels) Always free vars.
3211
3212         * vfm.c: (close_active_file) If sink has no make_source then call
3213         its destroy function.
3214
3215 Sat Mar 20 14:00:24 2004  Ben Pfaff  <blp@gnu.org>
3216
3217         Fixed cmd_parse() so that it always skips past a full command
3218         name.  A few special commands for which this would be bad get
3219         special treatment.  This lets us drop code for skipping past the
3220         end of a command name in most cmd_*() functions.  It's not worth
3221         listing all the commands affected.
3222
3223         * command.c: (struct command) Remove `cmd' member, replace by
3224         `name' member, all references updated.  Remove `word', `next',
3225         `skip_entire_name' members.
3226         (macro DEFCMD) Deal with revised `struct command'.
3227         (macro UNIMPL) Ditto.
3228         (macro SPCCMD) New macro for commands whose last word shouldn't be
3229         skipped.
3230         (static array cmd_table[]) Make const, rename `commands', remove
3231         sentinel element.
3232         (macro COMMAND_CNT) New macro.
3233         (split_words) Removed.
3234         (cmd_init) Removed.
3235         (FILE_TYPE_okay) Make parameter const.
3236         (cmd_parse) Improve error messages.
3237         (match_strings) New function.
3238         (next_word) New function.
3239         (enum command_match) New enum.
3240         (conflicting_3char_prefixes) New function.
3241         (conflicting_3char_prefix_command) New function.
3242         (cmd_match_words) New function.
3243         (count_matching_commands) New function.
3244         (get_command_name) New function.
3245         (free_words) New function.
3246         (unknown_command_error) New function.
3247         (figure_out_command) Renamed parse_command_name(), rewritten.
3248
3249         * command.def: Removed @ command.  Marked BEGIN DATA, DOCUMENT,
3250         FILE LABEL, REMARK, SUBTITLE, TITLE as special.  Renamed EVALUATE
3251         to DEBUG EVALUATE.  Added N alias for N OF CASES, SORT alias for
3252         SORT CASES.
3253
3254         * command.h: (macro SPCCMD) New.
3255
3256         * include.c: (cmd_include_at) Removed.
3257         (cmd_include) Allow identifier to be used as filename.
3258
3259         * inpt-pgm.c: (cmd_reread) Use fh_parse_file_handle().
3260
3261         * t-test.q: (cmd_t_test) Command name is now parsed for us.
3262         
3263
3264 Sat Mar 20 13:56:00 2004  Ben Pfaff  <blp@gnu.org>
3265
3266         Start work on better test framework.
3267         
3268         * Makefile.am: (pspp_sources) Add debug.c.
3269         
3270         * debug.c: New file.
3271
3272         * compute.c: (cmd_evaluate) Moved to debug.c, renamed
3273         cmd_debug_evaluate().
3274
3275         * expr-prs.c: (expr_parse) Remove PXP_DUMP support.
3276
3277         * expr.h: (enum constant PXP_DUMP) Removed.
3278
3279 Sat Mar 20 00:05:42 WST 2004 John Darrington <john@darrington.wattle.id.au>
3280
3281         * set.q:  Implemented the SHOW command, and synced it to the existing 
3282         SET cmd.
3283
3284         Added a handler for SIGWINCH so that viewlength and viewwidth follow
3285         changes as the window size is changed.
3286
3287         Added fallback to set viewlength and viewwidth from LINES and COLUMS
3288         environment variables if other methods are not available.
3289
3290         glob.c: Removed a lot of global variables from glob.c and encapsulated 
3291         them in set.q
3292
3293         random.c: Tidied up the way the random seed is set.
3294
3295         str.c: Added a ds_vprintf function.
3296
3297         error.c: Extended dump_message so that messages are always broken at
3298         '\n' characters.
3299         
3300 Thu Mar 18 11:07:14 2004  Ben Pfaff  <blp@gnu.org>
3301
3302         * pfm-write.c: (bufwrite) Write out the correct element for string
3303         variables.  From Andreas Streichardt <streichardt@globalpark.de>.
3304
3305 Mon Mar 15 20:48:03 2004  Ben Pfaff  <blp@gnu.org>
3306
3307         Get rid of static and global (!) vars in matrix-data.c.
3308
3309         * matrix-data.c: (static var nr_data) Removed.
3310         (static var nr_factor_values) Removed.
3311         (static var max_cell_index) Removed.
3312         (static var split_values) Removed.
3313         (struct nr_aux_data) New structure.
3314         (read_matrices_without_rowtype) Use a local struct nr_aux_data in
3315         place of static vars, pass to create_case_source() and procedure()
3316         as aux data.
3317         (nr_read_data_lines) Use struct nr_aux_data * parameter instead of
3318         struct matrix_data_pgm *.
3319         (nr_read_splits) Ditto.
3320         (nr_read_factors) Ditto.
3321         (nr_output_data) Ditto.
3322         (static var wr_content) Removed.
3323         (global var wr_data) Removed.
3324         (global var wr_current) Removed.
3325         (struct wr_aux_data) New structure.
3326         (read_matrices_with_rowtype) Use a local struct wr_aux_data in
3327         place of static vars, pass to create_case_source() and procedure()
3328         as aux data.
3329         (matrix_data_read_with_rowtype) Use struct wr_aux_data * parameter
3330         instead of matrix_data_pgm *.
3331         (wr_read_splits) Ditto.
3332         (wr_output_data) Ditto.
3333         (wr_read_rowtype) Ditto.
3334         (wr_read_factors) Ditto.
3335         (wr_read_indeps) Ditto.
3336         
3337 Mon Mar 15 20:07:29 2004  Ben Pfaff  <blp@gnu.org>
3338
3339         Get rid of static vars in autorecode.c.
3340
3341         * autorecode.c: (struct autorecode_trns) Rename `arc' to `specs',
3342         `n_arc' to `spec_cnt'.  All references updated.
3343         (static var v_src) Removed.
3344         (static var v_dest) Removed.
3345         (static var h_trns) Removed.
3346         (static var nv_src) Removed.
3347         (static var descend) Removed.
3348         (static var print) Removed.
3349         (enum direction) New enum.
3350         (struct autorecode_pgm) New structure.
3351         (cmd_autorecode) Use struct autorecode_pgm instead of static vars.
3352         Move n_dest local var into struct autorecode_pgm for ease of
3353         clean-up.  Use arc_free().
3354         (arc_free) New function.
3355         (recode) Modify to take struct autorecode_pgm * parameter instead
3356         of using statics.  Let the caller clean up.
3357         (autorecode_proc_func) Use struct autorecode_pgm * auxiliary data
3358         instead of statics.  Rearrange code a little.
3359
3360 Mon Mar 15 00:25:02 2004  Ben Pfaff  <blp@gnu.org>
3361
3362         Get rid of static, global vars in recode.c.  Remove debug code.
3363
3364         * recode.c: (static var head) Removed.
3365         (global var v) Removed.
3366         (global var nv) Removed.
3367         (cmd_recode) New local variables head, v, nv.  Initialize and free
3368         v.  Don't call debug_print().
3369         [DEBUGGING] (dump_dest) Removed.
3370         [DEBUGGING] (debug_print) Removed.
3371
3372 Mon Mar 15 00:14:49 2004  Ben Pfaff  <blp@gnu.org>
3373
3374         Get rid of static vars in expr-opt.c.
3375
3376         * expr-opt.c: (static var e) Removed.
3377         (static var nop) Removed.
3378         (static var mop) Removed.
3379         (static var ndbl) Removed.
3380         (static var mdbl) Removed.
3381         (static var nstr) Removed.
3382         (static var mstr) Removed.
3383         (static var nvars) Removed.
3384         (static var mvars) Removed.
3385         (struct expr_dump_state) New structure.
3386         (dump_expression) Use new struct expr_dump_state instead of static
3387         vars and pass to functions we call.
3388         (dump_node) Use struct expr_dump_state * parameter.
3389         (emit) Ditto.
3390         (emit_num_con) Ditto.
3391         (emit_str_con) Ditto.
3392         (emit_var) Ditto.
3393         
3394 Mon Mar 15 00:03:51 2004  Ben Pfaff  <blp@gnu.org>
3395
3396         Get rid of static var in COUNT.
3397
3398         * count.c: (static var head) Move into cmd_count().
3399         (cmd_count) [DEBUGGING] Don't call debug_print.
3400         [DEBUGGING] (debug_print) Removed.
3401
3402 Sun Mar 14 23:56:09 2004  Ben Pfaff  <blp@gnu.org>
3403
3404         Get rid of static vars in VALUE LABELS, ADD VALUE LABELS.
3405
3406         * val-labs.c: (static var v) Removed.
3407         (static var nv) Removed.
3408         [DEBUGGING] (debug_print) Removed.
3409         (verify_val_labs) Add struct variable **, int parameters.
3410         (get_label) Ditto.  Improve error messages, streamline.
3411         (erase_labels) New function for erasing value labels, taking over
3412         part of verify_val_labs()'s function.
3413         (init) Removed.
3414         (done) Removed.
3415         (cmd_value_labels) No need to call init() or done() anymore.
3416         (cmd_add_value_labels) Ditto.
3417         (do_value_labels) Add vars, var_cnt local variables.  Clean up
3418         after them internally.  Call erase_labels() if we should.  Don't
3419         call debug_print().
3420
3421 Sun Mar 14 23:33:53 2004  Ben Pfaff  <blp@gnu.org>
3422
3423         Get rid of static vars in MATCH FILES.
3424         
3425         * get.c: (static var mtf_head) Removed.
3426         (static var mtf_tail) Removed.
3427         (static var mtf_by) Removed.
3428         (static var mtf_n_by) Removed.
3429         (static var mtf_master) Removed.
3430         (static var mtf_seq_num) Removed.
3431         (static var mtf_seq_nums) Removed.
3432         (static var mtf_sink) Removed.
3433         (static var mtf_case) Removed.
3434         (struct mtf_proc) New structure.
3435         (cmd_match_files) Use struct mtf_proc instead of static vars.
3436         (mtf_processing_finish) Ditto.
3437         (mtf_free) Ditto.
3438         (mtf_delete_file_in_place) Ditto.
3439         (mtf_read_nonactive_records) Ditto.
3440         (mtf_compare_BY_values) Ditto.
3441         (mtf_processing) Ditto.
3442         (mtf_merge_dictionary) Ditto.
3443
3444 Sun Mar 14 22:48:12 2004  Ben Pfaff  <blp@gnu.org>
3445
3446         * command.def: Add CASESTOVARS, VARSTOCASES unimplemented commands.
3447
3448         * dictionary.c: (dict_rename_var) Add assertion.
3449         (dict_contains_var) Check by index instead of name.
3450
3451 Sun Mar 14 22:01:02 2004  Ben Pfaff  <blp@gnu.org>
3452
3453         Get rid of compaction_necessary, compaction_nval, compaction_case.
3454         Redo VFM interface.  Replace disk_sink and memory_sink by
3455         storage_sink, disk_source and memory_source by storage_source.
3456
3457         * vfm.h: (struct case_sink) Add `dict', `idx_to_fv', `value_cnt'
3458         members.
3459
3460         * vfm.c: 
3461         (struct write_case_data) Remove `begin_func', `end_func',
3462         `func_aux' members.  Add `aux', `trns_case', `sink_case',
3463         `cases_written', `cases_analyzed' members.
3464         (global var compaction_necessary) Make static.
3465         (global var compaction_nval) Removed.
3466         (global var compaction_case) Removed.
3467         (static var case_count) Removed.
3468         (struct procedure_aux_data) Removed.
3469         (struct split_aux_data) Removed.
3470         (procedure) Remove begin_func, end_func parameters.  Rewrite.
3471         (static var not_canceled) Removed.
3472         (process_active_file) Removed.
3473         (process_active_file_write_case) Removed.
3474         (process_active_file_output_case) Removed.
3475         (prepare_for_writing) Moved into open_active_file().
3476         (arrange_compaction) Ditto.
3477         (setup_lag) Ditto.
3478         (open_active_file) Rewrote.
3479         (write_case) New function.
3480         [DEBUGGING] (index_to_varname) Removed.
3481         (execute_transformations) New function.
3482         (exclude_this_case) Renamed filter_case(), changed interface.
3483         (clear_case) Added struct ccase * parameter to interface.
3484         (close_active_file) Added struct write_case_data * parameter,
3485         rewrote.
3486         (disk_sink_create) Removed.
3487         (disk_sink_destroy) Removed.
3488         (disk_sink_make_source) Removed.
3489         (disk_sink_write) Removed.
3490         (disk_source_count) Removed.
3491         (disk_source_destroy) Removed.
3492         (disk_source_read) Removed.
3493         (global var disk_sink_class) Removed.
3494         (global var disk_source_class) Removed.
3495         (global var memory_sink_class) Removed.
3496         (global var memory_source_class) Removed.
3497         (memory_sink_create) Removed.
3498         (memory_sink_destroy) Removed.
3499         (memory_sink_make_source) Removed.
3500         (memory_sink_write) Removed.
3501         (memory_source_count) Removed.
3502         (memory_source_destroy) Removed.
3503         (memory_source_get_cases) Removed.
3504         (memory_source_read) Removed.
3505         (memory_source_set_cases) Removed.
3506         (struct disk_stream_info) Removed.
3507         (struct memory_sink_info) Removed.
3508         (struct memory_source_info) Removed.
3509         (write_active_file_to_disk) Removed.
3510         (destroy_storage_stream_info) New function.
3511         (global var null_sink_class) New var.
3512         (global var storage_sink_class) New var.
3513         (global var storage_source_class) New var.
3514         (open_storage_file) New function.
3515         (storage_sink_destroy) New function.
3516         (storage_sink_make_source) New function.
3517         (storage_sink_open) New function.
3518         (storage_sink_write) New function.
3519         (storage_source_count) New function.
3520         (storage_source_destroy) New function.
3521         (storage_source_get_cases) New function.
3522         (storage_source_on_disk) New function.
3523         (storage_source_read) New function.
3524         (storage_source_set_cases) New function.
3525         (storage_source_to_disk) New function.
3526         (storage_to_disk) New function.
3527         (struct storage_stream_info) New structure.
3528         (write_storage_file) New function.
3529         (procedure_write_case) Removed.
3530         (create_case_source) Add `struct dictionary *' parameter, all
3531         references updated.
3532         (create_case_sink) Ditto.
3533         (free_case_sink) New function.
3534         (struct split_aux_data) New structure.
3535         (procedure_with_splits) New function implementing what procedure()
3536         used to.
3537         (SPLIT_FILE_proc_func) Removed.
3538         (procedure_with_splits_callback) New function.
3539         (equal_splits) New function.
3540         
3541         * aggregate.c: Pass around a struct instead of using statics.
3542         (static var outfile) Remove.
3543         (enum type) Give it tag `missing_treatment'.
3544         (static var missing) Remove.
3545         (static var sort) Remove.
3546         (static var agr_first) Remove.
3547         (static var agr_next) Remove.
3548         (static var case_count) Remove.
3549         (static var prev_case) Remove.
3550         (static var buf64_1xx) Remove.
3551         (static var buf_1xx) Remove.
3552         (struct agr_proc) New structure incorporating the above.
3553         (cmd_aggregate) Use new struct.  Clean up error handling using
3554         agr_destroy().  Completely rewrite actual implementation of
3555         aggregation.
3556         (create_sysfile) Add struct agr_proc * parameter, modify
3557         accordingly.
3558         (parse_aggregate_functions) Ditto.
3559         (free_aggregate_functions) Ditto.  Rename agr_destroy().
3560         (aggregate_single_case) Add struct agr_proc * parameter, modify
3561         accordingly.
3562         (accumulate_aggregate_info) Ditto.
3563         (dump_aggregate_info) Ditto.
3564         (initialize_aggregate_info) Ditto.
3565         (agr_00x_trns_proc) Removed.
3566         (agr_00x_end_func) Removed.
3567         (agr_10x_trns_proc) Removed.
3568         (agr_10x_trns_free) Removed.
3569         (agr_10x_end_func) Removed.
3570         (agr_11x_read) Removed.
3571         (agr_11x_finish) Removed.
3572         [DEBUGGING] (debug_print) Removed.
3573         (write_case_to_sfm) Add struct agr_proc * parameter, modify
3574         accordingly.
3575         (agr_to_active_file) New function.
3576         (presorted_agr_to_sysfile) New function.
3577         (sort_agr_to_sysfile) New function.
3578
3579         * autorecode.c: (cmd_autorecode) Use procedure_with_splits().
3580
3581         * crosstabs.q: (internal_cmd_crosstabs) Ditto.
3582
3583         * descript.q: (cmd_descriptives) Ditto.
3584
3585         * dfm.c: (cmd_begin_data) Check for storage_source_class.  Adapt
3586         to new procedure() interface.
3587
3588         * command.c: (cmd_execute) Adapt to new procedure() interface.
3589
3590         * dictionary.c: (dict_compact_values) Also delete scratch
3591         variables.
3592         (dict_get_compacted_value_cnt) New function.
3593         (dict_get_compacted_idx_to_fv) New function.
3594
3595         * flip.c: (cmd_flip) Warn about and cancel TEMPORARY.
3596         (cmd_flip) Adapt to new procedure() interface.
3597         (flip_sink_write) Use sink->idx_to_fv.
3598
3599         * frequencies.q: (internal_cmd_frequencies) Use
3600         procedure_with_splits().
3601
3602         * get.c: (cmd_save_internal) Adapt to new procedure() interface.
3603         (static var mtf_sink) New static var.
3604         (static var mtf_case) New static var.
3605         (cmd_match_files) Warn about and cancel TEMPORARY.  Redo the way
3606         we actually implement the matching.
3607         (mtf_delete_file_in_place) Use mtf_case.
3608         (mtf_processing) Use mtf_case and mtf_sink.
3609         (cmd_export) Adapt to new procedure() interface.
3610
3611         * levene.c: (levene) Use procedure_with_splits().
3612
3613         * list.q: (cmd_list) Use procedure_with_splits().
3614
3615         * matrix-data.c: (read_matrices_without_rowtype) Adapt to new
3616         procedure() interface.
3617         (read_matrices_with_rowtype) Ditto.
3618
3619         * modify-vars.c; (cmd_modify_vars) Warn about and cancel
3620         TEMPORARY.  Adapt to new procedure() interface.
3621
3622         * rename-vars.c: Warn about and cancel TEMPORARY.
3623
3624         * sort.c: (cmd_sort_cases) Warn about TEMPORARY.
3625         (sort_cases) Use dict_get_compacted_value_cnt() instead of
3626         compaction_nval.  Adapt to new procedure() interface.  Use
3627         storage_source_to_disk().
3628         (do_internal_sort) Don't try to dump the cases to memory.
3629         (compare_case_lists) Pass null idx_to_fv.
3630         (struct initial_run_state) Add `idx_to_fv' member.  Remove
3631         `case_size' member.
3632         (write_initial_runs) Don't initialize irs->case_size.  Adapt to
3633         new procedure() interface.  Reset irs->idx_to_fv after calling
3634         procedure().
3635         (sort_sink_write) Set irs->idx_to_fv.  Use case_size from struct
3636         sort_cases_pgm.  Pass irs, not struct sort_cases_pgm to
3637         push_heap().
3638         (destroy_initial_run_state) Don't dereference irs after freeing
3639         it.
3640         (allocate_cases) Don't calculate case_size locally.
3641         (compare_record) Add idx_to_fv parameter.
3642         (compare_record_run) Change parameter from struct sort_cases_pgm *
3643         to struct initial_run_state *.  Pass irs->idx_to_fv to
3644         compare_record().
3645         (compare_record_run) Third parameter now a struct
3646         initial_run_state *.
3647         (output_record) No need for out_case anymore.  Pass irs, not
3648         struct sort_cases_pgm to pop_heap().  Use case_size from struct
3649         sort_cases_pgm.
3650         (merge) Use case_size from struct sort_cases_pgm.
3651         (merge_once) Use case_size from struct sort_cases_pgm.
3652         Pass null pointer to compare_record() as idx_to_fv.
3653         (global var sort_sink_class) Make static.
3654
3655         * t-test.q: (cmd_t_test) Use procedure_with_splits().
3656
3657         * temporary.c: Remove debugging crap.
3658
3659 Sat Mar 13 14:19:52 WST 2004 John Darrington <john@darrington.wattle.id.au>
3660
3661         * t-test.q, levene.c: Fixed up the handling of MISSING values
3662         int the T-TEST
3663
3664 Fri Mar 12 16:23:35 WST 2004 John Darrington <john@darrington.wattle.id.au>
3665
3666         * t-test.q, levene.c: Added support for T-TEST /GROUP where only 
3667         one value is given.
3668
3669 Wed Mar 10 23:25:13 2004  Ben Pfaff  <blp@gnu.org>
3670
3671         Change explicit variable name checks into use of
3672         dict_class_from_id().
3673
3674         * dictionary.c: (dict_create_var)  Change explicit variable name
3675         check into use of dict_class_from_id().
3676
3677         * get.c: (trim_dictionary) Ditto.
3678
3679         * sel-if.c: (cmd_filter) Ditto.
3680
3681         * sysfile-info.c: (cmd_display) Ditto.
3682
3683         * vars-prs.c: (parse_DATA_LIST_vars) Ditto.
3684
3685         * vfm.c: (arrange_compaction) Ditto.
3686
3687         * weight.c: (cmd_weight) Ditto.
3688
3689 Wed Mar 10 21:16:34 2004  Ben Pfaff  <blp@gnu.org>
3690
3691         * temporary.c: (cmd_temporary) When TEMPORARY was the first
3692         transformation following the input program, if any, for some
3693         reason we special-cased f_trns.  That's just wrong.  It should
3694         always be set to n_trns.
3695
3696 Tue Mar  9 23:44:40 2004  Ben Pfaff  <blp@gnu.org>
3697
3698         * format.c: (parse_format_specifier_name) Fix brown-bag bug
3699         introduced in last check-in.
3700
3701 Tue Mar  9 23:10:41 2004  Ben Pfaff  <blp@gnu.org>
3702
3703         * format.c: (global array translate_fmt[]) Removed.
3704         (translate_fmt) New function as replacement.
3705         (parse_format_specifier_name) Rewrite.
3706
3707         * pfm-read.c: (convert_format) Use translate_fmt() instead of
3708         translate_fmt[].
3709
3710         * sfm-read.c: (parse_format_spec) Ditto.
3711
3712         * postscript.c: (text) Fix handling of fonts with missing
3713         ligatures.
3714
3715         * sort.c: (struct external_sort) Add temp_name member.
3716         (destroy_external_sort) Free temp_dir, temp_name members.
3717         (init_external_sort) Allocate temp_name.
3718         (get_temp_file_name) Change prototype.
3719         (open_temp_file) Deal with change to get_temp_file_name().
3720         (close_temp_file) Ditto.
3721         (remove_temp_file) Ditto.
3722         (write_temp_file) Ditto.
3723         (read_temp_file) Ditto.
3724         (sort_sink_destroy) Removed.
3725         (sort_sink_class) Change destroy member to null.
3726
3727 Tue Mar  9 22:36:34 2004  Ben Pfaff  <blp@gnu.org>
3728
3729         Eliminate temp_case.
3730
3731         * aggregate.c: (cmd_aggregate) No need to save/restore temp_case
3732         anymore.  Use agr_11x_finish().
3733         (aggregate_single_case) Make first param const.
3734         (accumulate_aggregate_info) Ditto.
3735         (agr_00x_end_func) Use compaction_case, not temp_case.
3736         (agr_11x_func) Break into agr_11x_read(), agr_11x_finish().
3737
3738         * data-list.c: (struct data_list_pgm) Add `case_size' member.
3739         (cmd_data_list) Initialize case_size.
3740         (read_from_data_list_fixed) Add struct ccase * param, use instead
3741         of temp_case.
3742         (read_from_data_list_free) Ditto.
3743         (read_from_data_list_list) Ditto.
3744         (read_one_case) Rename data_list_trns_proc(), all references
3745         updated.  Add argument in calling above functions.  Use c
3746         argument instead of temp_case.
3747         (destroy_dls) Rename data_list_trns_free(), all references
3748         updated.
3749
3750         * expr-evl.c: (expr_evaluate) Make second parameter const.
3751
3752         * file-type.c: (struct file_type_pgm) Add `case_size' member.
3753         (cmd_end_file_type) Initialize `case_size'.
3754         (file_type_source_read) Add struct ccase * parameter.  Use instead
3755         of temp_case.
3756
3757         * flip.c: Rewritten.
3758
3759         * get.c: (struct get_pgm) New structure to keep track of
3760         case_size.
3761         (cmd_get) Initialize case_size.
3762         (cmd_import) Ditto.
3763         (get_source) Deal with struct get_pgm.
3764         (get_source_read) Add struct ccase * parameter, use instead of
3765         temp_case.
3766         (import_source_read) Ditto.
3767
3768         * get.c: Use a null pointer instead of temp_case to represent the
3769         "current case" in a struct mtf_file's input member.
3770         (mtf_processing_finish) Pass null to mtf_processing(), not
3771         temp_case.
3772         (mtf_read_nonactive_records) Don't set iter->input to temp_case.
3773         (mtf_compare_BY_values) Add extra arg, use instead of null input
3774         members.
3775         (mtf_processing) Use c parameter instead of temp_case.  Pass
3776         compaction_case to process_active_file_output_case().
3777         
3778         * glob.c: (global variable temp_case) Removed.
3779
3780         * inpt-pgm.c: (struct input_program_pgm) Add `case_size' member.
3781         (cmd_input_program) Initialize case_size.  Set
3782         vfm_source->value_cnt.
3783         (init_case) Add struct ccase * parameter, use instead of
3784         temp_case.
3785         (clear_case) Ditto.
3786         (input_program_source_read) Ditto.
3787
3788         * matrix-data.c: (matrix_data_read_without_rowtype) Ditto.
3789         (dump_cell_content) Ditto.
3790         (nr_output_data) Ditto.
3791         (read_matrices_without_rowtype) Ditto.
3792         (matrix_data_read_with_rowtype) Ditto.
3793         (wr_read_splits) Ditto.
3794         (wr_output_data) Ditto.
3795
3796         * sort.h: (struct sort_cases_pgm) New member `case_size'.
3797         
3798         * sort.c: (sort_cases) Initialize scp->case_size.
3799         (struct external_sort) Remove `case_size' member.
3800         (write_initial_runs) Only call vfm_sink->class_destroy if
3801         non-null.
3802         (struct sort_source_aux) New structure.
3803         (sort_source_read_helper) New function.
3804         (sort_source_read) Use sort_source_read_helper().
3805         (read_sort_output) Change interface to be more reasonable.
3806         (read_internal_sort_output) Ditto.
3807         (read_external_sort_output) Ditto.
3808
3809         * vars-prs.c: (dict_class_to_name) Pass return value through
3810         gettext.
3811
3812         * vfm.c: (struct procedure_aux_data) Add `trns_case' member.
3813         (procedure) Initialize trns_case.
3814         (procedure) Pass trns_case to vfm_source->class->read().
3815         Free trns_case.
3816         (process_active_file) Start using struct procedure_aux_data.
3817         (process_active_file_write_case) Pass trns_case to
3818         transformations, lag_case(), clear_case().
3819         (process_active_file_output_case) Add struct ccase * parameter.
3820         (create_trns_case) New function.
3821         (make_temp_case) Removed.
3822         (vector_initialization) Removed.
3823         (close_active_file) Only call make_source if non-null, otherwise
3824         set vfm_source to null pointer.  Don't free temp_case.
3825         (disk_source_read) Add struct ccase * parameter, use instead of
3826         temp_case.
3827         (memory_source_read) Ditto.
3828         (lag_case) Add const struct ccase * member.
3829         (procedure_write_case) Use trns_case instead of temp_case.
3830         (clear_case) Add struct ccase * member, use instead of temp_case.
3831         (exclude_this_case) Ditto.
3832         (create_case_source) Add struct dictionary * parameter, use to
3833         initialize source->value_cnt.
3834
3835         * vfm.h: (struct case_source) Add `value_cnt' member.
3836         (struct case_source_class) Add struct ccase * parameter to `read'
3837         member function pointer.
3838         (struct case_sink_class) Make struct ccase * parameter const in
3839         `write' member function pointer.
3840         
3841 Wed Mar  3 20:44:37 2004  Ben Pfaff  <blp@gnu.org>
3842
3843         Fix a lot of "possibly uninitialized variable" warnings.  Some of
3844         them are even real bugs.  A few of them make me wonder how the
3845         code ever worked.
3846
3847         * aggregate.c: (parse_aggregate_functions) Initialize `function.
3848
3849         * ascii.c: (output_lines) Add default case to switch.
3850
3851         * crosstabs.q: Remove static variable `expected' and all
3852         references to it.
3853         (display_crosstabulation) Always calculate expected value.
3854         (calc_chisq) Ditto.
3855         (output_pivot_table) Initialize `cmp'.
3856         (display_crosstabulation) New variable `last_row', which is
3857         initialized.
3858
3859         * data-in.c: (parse_numeric) Always initialize sign.  How did this
3860         work at all?!
3861
3862         * data-list.c: (repeating_data_trns_proc) Always initialize code.
3863         Always set info.ofs.  (How did this work?!)
3864
3865         * expr-opt.c: (optimize_tree) Always initialize `m'.
3866         (evaluate_tree) Always initialize `c'.  (How did this work?)
3867
3868         * frequencies.q: (frq_custom_variables) Always initialize min,
3869         max.
3870         (frq_custom_grouped) Always initialize `dl'.
3871
3872         * groff-font.c: (groff_read_font) Always initialize char_set.
3873
3874         * matrix-data.c: (nr_output_data) Initialize `split'.
3875         (wr_read_splits) Remove shadowing split_cnt declaration.
3876         (wr_output_data) Initialize `split'.
3877
3878         * output.c: (tokener) Skip add character on syntax error.
3879
3880         * pool.c: (pool_strndup) Always set `copy'.  (How did this work?!)
3881
3882         * postscript.c: (read_ps_encodings) Use line.string instead of
3883         uninitialized `bp'.
3884         (write_text) Add default case to switch.
3885         (text) Always initialize multiple variables.  Fix bug with
3886         ligatures.
3887
3888         * print.c: (fixed_parse_fortran) Initialize head.
3889         (alloc_line) Add default case to switch.
3890
3891         * recode.c: (parse_dest_spec) Handle case where nothing matches.
3892         (recode_trns_proc) Move variable declaration inward.  Add default
3893         case to switch.
3894
3895         * sfm-read.c: (read_header) Initialize skip_amt.
3896
3897         * sysfile-info.c: (display_variables) Always initialize pc.
3898
3899         * vars-prs.c: Initialized `included'.
3900
3901 Wed Mar  3 09:30:09 2004  Ben Pfaff  <blp@gnu.org>
3902
3903         * main.c: (main) sigaction()'s sa_flags member was uninitialized.
3904         Just use signal() instead.
3905
3906 Wed Mar  3 09:26:30 2004  Ben Pfaff  <blp@gnu.org>
3907
3908         Get rid of vfm_sink_info and vfm_source_info.
3909         
3910         * aggregate.c: (agr_00x_end_func) Don't increment
3911         sfm_sink_info.ncases.
3912
3913         * sort.c: (do_internal_sort) Get case count from
3914         vfm_source->class->count().
3915         (struct external_sort) Add `case_size' member.
3916         (do_external_sort) Initialize case_size.
3917         (struct initial_run_state) Add `case_size' member.
3918         (write_initial_runs) Initialize case_size.
3919         (sort_sink_write) Use case_size.
3920         (read_external_sort_output) Use case_size.  Get case_cnt from
3921         initial_runs.
3922
3923         * vfm.c: (struct write_case_data) Add underscores to existing arg
3924         names, all references updated.  Renamed `aux' as `func_aux', all
3925         references updated.  Added new `aux' member.
3926         (global var vfm_source_info) Removed.
3927         (global var vfm_sink_info) Removed.
3928         (struct procedure_aux_data) New.
3929         (struct split_aux_data) New.
3930         (procedure) Use `aux' fields for procedure_aux_data,
3931         split_aux_data.
3932         (process_active_file_write_case) Pass case_count + 1 to
3933         transformation procedures, exclude_this_case().
3934         (process_active_file_output_case) Don't increment
3935         vfm_sink_info.ncases.
3936         (prepare_for_writing) Don't initialize vfm_sink_info.  Don't try
3937         to send data to disk early.
3938         (make_temp_case) Don't use vfm_sink_info.case_size.
3939         (close_active_file) Don't initialize vfm_source_info.
3940         (struct disk_stream_info) New, to allow for case_cnt and case_size fields.
3941         (disk_sink_create) Initialize and/or update disk_stream_info.
3942         (disk_sink_write) Ditto.
3943         (disk_sink_destroy) Ditto.
3944         (disk_sink_make_source) Ditto.
3945         (disk_source_read) Ditto.
3946         (disk_source_destroy) Ditto.
3947         (global var disk_source_class) Add disk_source_count().
3948         (disk_source_count) New function.
3949         (struct memory_sink_info) Add `case_cnt', `case_size' members.
3950         (struct memory_source_info) Ditto.
3951         (memory_sink_create) Deal with case_cnt, case_size.
3952         (memory_sink_write) Ditto.
3953         (memory_sink_make_source) Ditto.
3954         (memory_source_read) Ditto.
3955         (memory_source_count) New function.
3956         (memory_source_class) Add memory_source_count().
3957         (procedure_write_case) Don't use vfm_sink_info.ncases.  Do use
3958         proc_aux->cases_written, and pass it to transformation procedures
3959         and exclude_this_case ().
3960         (exclude_this_case) Add case_num parameter.  Pass it to
3961         expr_evaluate().
3962         (SPLIT_FILE_procfunc) Use split_aux->prev_case instead of static
3963         variable.
3964
3965         * vfm.h: (struct case_source_class) Add `count' member.
3966
3967         * vfmP.h: (struct stream_info) Removed.
3968         (global variable vfm_source_info) Removed.
3969         (global variable vfm_sink_info) Removed.
3970         
3971 Tue Mar  2 23:38:17 2004  Ben Pfaff  <blp@gnu.org>
3972
3973         * var.h: (typedef trns_proc_func) New typedef.
3974         (trns_free_func) New typedef.
3975         (struct trns_header) Change `proc' to type trns_proc_func, `free'
3976         to type trns_free_func.  This only changes the actual type of
3977         trns_proc_func, adding a `case_num' parameter.  Updated all
3978         implementations to use the typedefs instead.
3979
3980         * compute.c: (compute_num) Pass case_num to expr_evaluate().
3981         (compute_num_vec) Ditto.
3982         (compute_str) Ditto.
3983         (compute_str_vec) Ditto.
3984
3985         * do-if.c: (do_if_trns_proc) Ditto.
3986
3987         * expr-evl.c: (expr_evaluate) Add new case_num parameter, use for
3988         OP_CASENUM.
3989
3990         * inpt-pgm.c: (input_program_source_read) Maintain case count,
3991         pass to transformation functions.
3992         (reread_trns_proc) Pass case_num arg to expr_evaluate().
3993
3994         * loop.c: (loop_1_trns_proc) Ditto.
3995         (loop_2_trns_proc) Ditto.
3996         (loop_3_trns_proc) Ditto.
3997
3998         * print.c: (print_space_trns_proc) Ditto.
3999
4000         * sel-if.c: (select_if_proc) Ditto.
4001
4002 Tue Mar  2 11:36:52 2004  Ben Pfaff  <blp@gnu.org>
4003
4004         * frequencies.q: (cleanup_freq_tab) Avoid memory leak by
4005         destroying hash table.
4006
4007         * glob.c: (read_active_file) Variable not referenced, removed.
4008         (cancel_input_pgm) Ditto.
4009
4010         * levene.c: Add #include <stdlib.h> needed to call free().
4011
4012         * aggregate.c: (parse_aggregate_functions) Make `function'
4013         variable const.
4014
4015 Tue Mar  2 11:30:56 2004  Ben Pfaff  <blp@gnu.org>
4016
4017         Start working to eliminate VFM dependence on static variables.
4018
4019         * command.c: (cmd_parse) Use case_source_is_class().
4020
4021         * data-list.c: Rewrite to eliminate use of static variables.
4022
4023         * dfm.c: (cmd_begin_data) Use case_source_is_class().
4024
4025         * file-handle.q: (fh_handle_name) Make parameter const.
4026
4027         * file-type.c: Rewrite to eliminate use of static variables.
4028
4029         * flip.c: Rewrite to eliminate use of static variables.
4030
4031         * format.c: (get_format_var_width) New function.
4032
4033         * get.c: Eliminate use of static variables.
4034
4035         * inpt-pgm.c: Eliminate use of static variables.
4036
4037         * matrix-data.c: Eliminate use of static variables.
4038
4039         * set.q: (set_max_workspace) New variable.
4040         (cmd_set) Use SET WORKSPACE to modify set_max_workspace.
4041
4042         * var.h: (struct case_list) Move here from vfmP.h.
4043
4044         * vars-atr.c: (discard_variables) Handle new vfm_source type.
4045
4046         * vfm.c: (vfm_source) Change type from struct case_stream to
4047         struct case_source.
4048         (vfm_sink) Change type from struct case_stream to struct
4049         case_sink.
4050         (static var paging) Rename workspace_overflow, all references
4051         updated.
4052         (procedure) Use new class structures.
4053         (process_active_file) Ditto.
4054         (process_active_file_write_case) Ditto.
4055         (prepare_for_writing) Use set_max_workspace.  Use new class
4056         structures.
4057         (close_active_file) Use new class structures.  Free old sink.
4058         (global var disk_source_file) Removed.
4059         (global var disk_sink_file) Removed.
4060         (disk_stream_init) Removed.
4061         (disk_stream_read) Removed.
4062         (disk_stream_write) Removed.
4063         (disk_stream_mode) Removed.
4064         (disk_stream_destroy_source) Removed.
4065         (disk_stream_destroy_sink) Removed.
4066         (global var vfm_disk_stream) Removed.
4067         (disk_sink_create) New function.
4068         (disk_sink_write) New function.
4069         (disk_sink_destroy) New function.
4070         (disk_sink_make_source) New function.
4071         (disk_sink_class) New static var.
4072         (disk_source_read) New function.
4073         (disk_source_destroy) New function.
4074         (global var vfm_source_class) New var.
4075         (global var memory_source_cases) Removed.
4076         (global var memory_sink_cases) Removed.
4077         (global var memory_sink_max_cases) Removed.
4078         (struct memory_sink_info) New struct.
4079         (memory_stream_init) Removed.
4080         (memory_stream_read) Removed.
4081         (memory_stream_write) Removed.
4082         (memory_stream_mode) Removed.
4083         (memory_stream_destroy_source) Removed.
4084         (memory_stream_destroy_sink) Removed.
4085         (global var vfm_memory_stream) Removed.
4086         (page_to_disk) Renamed write_active_file_to_disk().
4087         (memory_sink_create) New function.
4088         (memory_sink_write) New function.
4089         (memory_sink_destroy) New function.
4090         (memory_sink_make_source) New function.
4091         (memory_sink_class) New static var.
4092         (memory_source_read) New function.
4093         (memory_source_destroy) New function.
4094         (memory_source_get_cases) New function.
4095         (memory_source_set_cases) New function.
4096         (global var vfm_source_class) New var.
4097         (procedure_write_case) Use new class structures.
4098         (create_case_source) New function.
4099         (case_source_is_complex) New function.
4100         (case_source_is_class) New function.
4101         (create_case_sink) New function.
4102
4103         * vfm.h: (global variable reinit_sysmis) Not used, removed.
4104         (global variable reinit_blanks) Not used, removed.
4105         (global variable init_zero) Not used, removed.
4106         (global variable init_blanks) Not used, removed.
4107         (struct case_source) New struct.
4108         (struct case_source_class) New struct.
4109         (struct case_sink) New struct.
4110         (struct case_sink_class) New struct.
4111         (struct case_stream) Removed.
4112
4113         * vfmP.h: (struct case_list) Moved to var.h.
4114
4115 Tue Mar  2 11:28:30 2004  Ben Pfaff  <blp@gnu.org>
4116
4117         * algorithm.c: (count_equal) New function.
4118         (count_if) New function.
4119         (unique) Add assertions.
4120         (partition) Add assertions.
4121         (is_partitioned) New function.
4122         (copy_if) Add assertions.
4123         (remove_equal) Add assertions.
4124         (lexicographical_compare) Rename lexicographical_compare_3way.
4125         (sort) Add assertions.  Rephrase some code.
4126         (is_sorted) New function.
4127
4128 Sun Feb 29 23:24:57 2004  Ben Pfaff  <blp@gnu.org>
4129
4130         Rewrite SORT CASES.
4131
4132         * sort.c: Completely rewrite.
4133
4134         * sort.h: Expose interface via struct sort_cases_pgm, not via
4135         global variables.
4136
4137         * aggregate.c: (sort) New static var.
4138         (cmd_aggregate) Use sort.
4139         (create_sysfile) Ditto.
4140         (aggregate_single_case) Ditto.
4141         (dump_aggregate_info) Ditto.
4142         (agr_00x_end_func) Ditto.
4143         (debug_print) Ditto.
4144
4145         * var.h: (enum SRT_ASCEND) Removed.
4146         (enum SRT_DESCEND) Removed.
4147         (struct sort_cases_proc) Removed.
4148         (struct variable) Remove p.srt member.
4149
4150 Sun Feb 29 23:22:45 2004  Ben Pfaff  <blp@gnu.org>
4151
4152         Get rid of the old, crappy heap structure and replace it by a new,
4153         shiny, C++ STL-like heap structure.
4154         
4155         * Makefile.am: (pspp_SOURCES) Remove heap.c, heap.h.
4156
4157         * algorithm.c: (push_heap) New function.
4158         (heapify) Ditto.
4159         (pop_heap) Ditto.
4160         (make_heap) Ditto.
4161         (sort_heap) Ditto.
4162         (is_heap) Ditto.
4163         
4164         * heap.c: Removed.
4165
4166         * heap.h: Removed.
4167
4168 Sun Feb 29 23:21:53 2004  Ben Pfaff  <blp@gnu.org>
4169
4170         Increase warning level.
4171         
4172         * Makefile.am: (AM_CFLAGS) Remove -Wnouninitialized.
4173
4174 Sat Feb 21 17:38:58 WST 2004 John Darrington <john@darrington.wattle.id.au>
4175
4176         * main.c: Added a signal handler for SIGSEGV requesting a bug report.
4177          
4178 Fri Feb 20 23:22:14 2004  Ben Pfaff  <blp@gnu.org>
4179
4180         * dictionary.c: (dict_create_var) Fix root cause of bug worked
4181         around by previous change log entry.
4182         
4183         * compute.c: (lvalue_finalize) Remove workaround from previous
4184         change log entry.
4185
4186 Fri Feb 20 14:37:41 WAST 2004 John Darrington <john@darrington.wattle.id.au>
4187
4188         * compute.c: Fixed a bug where the Format was not getting set for 
4189           computed variables (thus causing a crash when SAVEing).
4190
4191         * Added a test to stop this bug ever coming back
4192
4193 Wed Feb 18 22:21:35 2004  Ben Pfaff  <blp@gnu.org>
4194
4195         Got rid of approx.h.  In general, replaced all references to
4196         approx_eq() by ==, approx_lt() by <, etc.  Other types of changes
4197         noted below.
4198
4199         * Makefile.am: (pspp_SOURCES) Removed approx.h.
4200
4201         * data-out.c: (try_F) Replaced test for approx_eq(number, 0.0) by
4202         test for mag < EPSILON.
4203
4204         * misc.h: Add definition of EPSILON.
4205
4206 Wed Feb 18 21:32:44 2004  Ben Pfaff  <blp@gnu.org>
4207
4208         * vfm.c: (procedure) Add check to prevent recursive call.
4209
4210 Wed Feb 18 21:48:54 WST 2004 John Darrington <john@darrington.wattle.id.au>
4211
4212         * Moved the declarations relating to values to their own header file
4213           (val.h)
4214
4215         * Added levene.c and levene.h
4216
4217         * vars-atr.c: Changed the signature of compare_values to 
4218         take const * arguments.
4219                 
4220         * t-test.q: Changed the structure of struct t_test_proc 
4221        variables now contain their own group statistics information.
4222        Eventually, t_test_proc might get renamed, because it'd be 
4223        applicable to other commands too.
4224
4225 Mon Feb 16 23:15:51 2004  Ben Pfaff  <blp@gnu.org>
4226
4227         * data-out.c: Clean up.  Changed interface of convert_*() to take
4228         either a `double' or a `const char *' instead of a `const union
4229         value *'.  Update all implementations of those interfaces.
4230         (data_out) Use switch statements instead of a table.
4231         (convert_AHEX) Rewrite.
4232
4233         * format.h: Update comment.
4234
4235 Mon Feb 16 22:14:36 2004  Ben Pfaff  <blp@gnu.org>
4236
4237         * q2c.c: (dump_header) Add an Emacs header line to output files
4238         that makes generated .c files read-only by default, to make it
4239         difficult to accidentally change generated files.
4240
4241 Mon Feb 16 22:12:07 2004  Ben Pfaff  <blp@gnu.org>
4242
4243         * frequencies.q: (compare_freq_numeric_a) Compare by frequency,
4244         not bogus a->v.c <=> b->v.c pointer compare.
4245         (compare_freq_alpha_a) Ditto.
4246         (compare_freq_numeric_d) Ditto.
4247         (compare_freq_alpha_d) Ditto.
4248         
4249 Mon Feb 16 22:00:53 2004  Ben Pfaff  <blp@gnu.org>
4250
4251         Changed data_out() to store string data directly into a `union
4252         value''s s member, not indirectly into c.
4253
4254         * crosstabs.q: (output_pivot_table) Use format_short() instead of
4255         data_out().
4256         (table_value_missing) Ditto.
4257         (float_M_suffix) Ditto.
4258         (format_short) New function.
4259
4260         * data-in.h: (data_in_finite_line) Remove inline definition.
4261
4262         * data-list.c: (destroy_dls_var_spec) New function.
4263         (destroy_dls) Rewrite in terms of destroy_dls_var_spec().
4264         (data_list_source_destroy_source) Avoid cast.
4265         (struct repeating_data_trns) New field `id_value'.  Update
4266         comments.
4267         (cmd_repeating_data) Initialize id_value.  Use new
4268         repeating_data_trns_free() for freeing REPEATING DATA
4269         transformations.
4270         (rpd_parse_record) Rewrite support for record ID to be less bogus.
4271         (repeating_data_trns_free) New function.
4272
4273         * data-out.c: (data_out) Change return type to `void' by replacing
4274         error returns by writing a message into the output buffer.
4275         (convert_A) Read from v->s instead of v->c.
4276         (convert_AHEX) Ditto.
4277
4278         * expr-evl.c: Update comment.
4279         (expr_evaluate) Add assertion in OP_STRING case.
4280
4281         * format.h: (macro MAX_FORMATTED_LEN) New macro.
4282
4283         * list.q: (list_cases) Update for new data_out() semantics.
4284
4285         * print.c: (print_trns_proc) Ditto.
4286
4287         * tab.c: (tab_value) Ditto.
4288         (tab_float) Avoid stupid cast.
4289
4290         * var.h: Update comments.
4291         (macro MAX_STRING) New macro.
4292         (macro MAX_ELEMS_PER_VALUE) New macro.
4293
4294         * vars-atr.c: (compare_values) New function.
4295
4296         * vfm.c: (dump_splits) Update for new data_out() semantics.
4297
4298 Mon Feb 16 21:45:47 2004  Ben Pfaff  <blp@gnu.org>
4299
4300         * crosstabs.q: (struct table_entry) Rename v[] to values[].  All
4301         references updated.
4302         (struct crosstab) Rename v[] to vars[].  All references updated.
4303         (hash_table_entry) Replace the hash algorithm and fix a bug at the
4304         same time, which caused the hash value to depend only on a single
4305         value, not all of the variables' values.
4306         
4307 Mon Feb 16 12:49:53 2004  Ben Pfaff  <blp@gnu.org>
4308
4309         Clean up struct dictionary's value_cnt usage.
4310
4311         * dictionary.c: Add a function comment to each function.
4312         (struct dictionary) Rename value_cnt to next_value_idx, which more
4313         accurately reflects its meaning.  All references updated.
4314         (dict_rename_vars) Add assertion.
4315         (dict_get_value_cnt) Rename dict_get_next_value_idx().  All
4316         references updated.
4317         (dict_get_case_size) New function.
4318
4319         * aggregate.c: (create_sysfile) Use dict_get_case_size().
4320
4321         * get.c: (mtf_read_nonactive_records) Ditto.
4322
4323         * sort.c: (allocate_cases) Ditto.
4324         (write_initial_runs) Ditto.
4325         (merge) Ditto.
4326         (merge_once) Ditto.
4327
4328         * vfm.c: (prepare_for_writing) Ditto.
4329         (setup_lag) Ditto.
4330         (lag_case) Ditto.
4331
4332 Mon Feb 16 00:17:55 2004  Ben Pfaff  <blp@gnu.org>
4333
4334         Make vfm.c slightly less grotesque.
4335
4336         * vfm.c: (filter_var) Removed.
4337         (filter_index) Removed.
4338         (FILTERED macro) Removed.
4339         (exclude_this_case) New function.
4340         (process_active_file_write_case) Use exclude_this_case() instead
4341         of FILTERED and inline tests.
4342         (procedure_write_case) Ditto.
4343         (setup_filter) Removed.
4344         (open_active_file) Don't call setup_filter().
4345         (close_active_file) Call dict_get_filter() instead of checking
4346         filter_var.
4347
4348 Mon Feb 16 00:01:53 2004  Ben Pfaff  <blp@gnu.org>
4349
4350         * var.h: (struct variable) Update comments.
4351
4352 Sun Feb 15 23:14:59 2004  Ben Pfaff  <blp@gnu.org>
4353
4354         New functions dict_create_var_assert(), dict_lookup_var_assert().
4355         Converted several dict_*_var()/assert pairs into a single
4356         dict_*_var_assert().
4357
4358         * dictionary.c: (dict_create_var_assert) New function.
4359         (dict_lookup_var_assert) New function.
4360
4361 Sun Feb 15 23:06:08 2004  Ben Pfaff  <blp@gnu.org>
4362
4363         Got rid of "struct long_vec", envector(), devector(), etc.  Added
4364         two members `init', `reinit' to struct variable as a substitute.
4365         
4366         * Makefile.am: (pspp_SOURCES) Removed cases.c, cases.h.
4367         
4368         * cases.c: Removed.
4369
4370         * cases.h: Removed.
4371
4372         * aggregate.c: (parse_aggregate_functions) destvar doesn't need
4373         init.
4374
4375         * autorecode.c: (cmd_autorecode) destvars don't need init.
4376
4377         * compute.c: (lvalue_finalize) Set reinit.
4378
4379         * data-list.c: (fixed_parse_compatible) Don't need init usually.
4380         (dump_fmt_list) Ditto.
4381         (parse_free) Ditto.
4382
4383         * descript.q: (run_z_pass) Don't need init for z-scores.
4384
4385         * dictionary.c: (dict_create_var) Initialize `init', `reinit'
4386         members.
4387         (dict_clone_var) Copy `reinit' member, initialize `init' member.
4388
4389         * glob.c: (init_glob) Remove vec_init() calls.
4390
4391         * inpt-pgm.c: (cmd_end_input_program) Use `reinit', not `left'.
4392         
4393         * loop.c: (internal_cmd_loop) Don't need to call envector().
4394
4395         * numeric.c: (cmd_numeric) Ditto.
4396         (cmd_string) Ditto.
4397         (cmd_leave) Ditto.  Set `init', `reinit' members.
4398
4399         * recode.c: (cmd_recode) Don't need to call envector().
4400
4401         * repeat.c: (internal_cmd_do_repeat) Ditto.
4402
4403         * var.h: (struct variable) Remove `left'.  Add `init', `reinit'.
4404         (force_create_variable) Removed prototype.
4405         (force_dup_variable) Ditto.
4406
4407         * vector.c: (cmd_vector) Don't need to call envector().
4408
4409         * vfm.c: (reinit_sysmis) Removed.
4410         (reinit_blanks) Removed.
4411         (init_zero) Removed.
4412         (init_blanks) Removed.
4413         (process_active_file_write_case) No need to deal with vectors.
4414         Call clear_temp_case().
4415         (vector_initialization) Rewrite to use `init', `reinit'.
4416         (close_active_file) No need to call vec_clear().
4417         (procedure_write_case) Call clear_temp_case().
4418         (clear_temp_case) New function.
4419
4420 Sun Feb 15 20:50:36 2004  Ben Pfaff  <blp@gnu.org>
4421
4422         * pfm-write.c: (bufwrite) Get rid of nasty cast that also invoked
4423         undefined behavior.
4424
4425 Thu Feb 12 23:35:15 2004  Ben Pfaff  <blp@gnu.org>
4426
4427         Add auxiliary argument to procedure() interface.  Associated small
4428         clean-ups of vfm interface.
4429         
4430         * Updated every caller of procedure() and process_active_file() to
4431         reflect modified interface.  Simple, ordinary changes not listed
4432         otherwise below.
4433
4434         * Updated every function that implements struct case_stream's
4435         `read' function to take a write_case_func and a write_case_data.
4436         Also updated every caller of write_case() to instead call them
4437         through these arguments.  In some cases this meant that the extra
4438         args had to be threaded through a couple of extra levels.  This
4439         wasn't difficult or interesting so the details won't be given.
4440
4441         * data-list.c: (struct repeating_data_trns) Add members
4442         `write_case', `wc_data' as kluge.
4443         (read_one_set_of_repetitions) Rename repeating_data_trns_proc and
4444         make non-static.
4445         (repeating_data_set_write_case) New function.
4446
4447         * data-list.h: New file to declare repeating_data_trns_proc() and
4448         repeating_data_set_write_case().
4449
4450         * inpt-pgm.c: (input_program_source_read) Call
4451         repeating_data_set_write_case() for all the REPEATING DATA
4452         transformations, so that they know where to send their cases.
4453         It's a big kluge.  Also kluge in END CASE.
4454         (end_case_trns_proc) Never called anymore, but we still need it,
4455         so just assert(0).
4456
4457         * sort.c: (read_sort_output) Update to match struct case_stream
4458         `read' member.
4459
4460         * vfm.c: (struct write_case_data) New structure.
4461         (proc_func) Removed.
4462         (virt_proc_func) Removed.
4463         (begin_func) Removed.
4464         (virt_begin_func) Removed.
4465         (end_func) Removed.
4466         (write_case) Removed.
4467         (procedure) Added an auxiliary parameter to each function pointer
4468         argument's prototype.  Added an auxiliary data parameter.
4469         Rewrote.
4470         (process_active_file) Ditto.
4471         (process_active_file_write_case) Pass aux data along.
4472         (close_active_file) Ditto.
4473         (procedure_write_case) Ditto.
4474         (SPLIT_FILE_procfunc) Ditto.
4475
4476         * vfm.h: (typedef write_case_data) New.
4477         (typedef write_case_func) New.
4478         (struct case_stream) Add parameters to `read' member prototype.
4479         
4480 Thu Feb 12 19:24:53 WST 2004 John Darrington <john@darrington.wattle.id.au>
4481
4482         * t-test.q:  Added calculations for independent samples. (But no Levene
4483         test yet!)
4484
4485         * Makefile.am: Moved q_sources_c into own variable 
4486
4487 Wed Feb 11 23:56:51 2004  Ben Pfaff  <blp@gnu.org>
4488
4489         Miscellaneous cleanups.
4490         
4491         * Change unused to UNUSED in many source files to reflect modified
4492         pref.h.  Change use of __WIN32__, __MSDOS, __DJGPP__,
4493         __CYGWIN32__, __unix__, and unix not to assume that they're
4494         defined to a nonzero value.  Change use of __attribute__ to use
4495         NO_RETURN or PRINTF_FORMAT instead.
4496         
4497         * alloc.h: Move definitions for local_alloc(), local_free() here
4498         from ../pref.h.orig and simplify.
4499
4500         * expr-evl.c: Instead of working differently based on PAGED_STACK,
4501         use a pool allocator unconditionally.
4502         (CHECK_STRING_SPACE) Removed.
4503         (ALLOC_STRING_SPACE) Removed.
4504         (expr_evaluate) Use e->pool instead of CHECK_STRING_SPACE and
4505         ALLOC_STRING_SPACE.
4506
4507         * expr-opt.c: (dump_expression) Allocate string pool.
4508
4509         * expr-prs.c: (expr_free) Free string pool.
4510
4511         * pool.c: (pool_destroy) This pool must be removed from its
4512         parent's list of gizmos, not from its own.  Use free_all_gizmos().
4513         (pool_clear) New function.
4514         (free_all_gizmos) New function.
4515         (pool_alloc) Use space in empty block after this one if any.
4516         (pool_release) Only empty out blocks, don't actually free() them.
4517
4518         * print.c: Get rid of PAGED_STACK special case by always
4519         dynamically allocating line buffers.
4520         (struct print_trns) Always include the `line' member.
4521         (internal_cmd_print) Always initialize the `line' member.
4522         (alloc_line) Always allocate memory for `line'.
4523         (print_trns_proc) Always initialize buf from `line' member.
4524         (print_trns_free) Always free `line' memory.
4525
4526         * sort.c: (allocate_file_handles) Special-case MS-DOS for mkdir()
4527         call.
4528         
4529 Wed Feb 11 20:33:18 2004  Ben Pfaff  <blp@gnu.org>
4530
4531         * flip.c: Fixed crash from FLIP when a numeric variable is
4532           specified on NEWNAMES and a large value is used, and a couple of
4533           other minor bugs besides.
4534           (struct varname) Make name a 9-character fixed-size array
4535           instead of a 1-character variable size array.
4536           (make_new_var) Allow digits in variable names.
4537           (flip_stream_write) Limit numeric values to 8 characters and
4538           format system missing and very large and small values more
4539           appropriately.
4540
4541 Thu Feb  5 13:19:06 WAST 2004 John Darrington <john@darrington.wattle.id.au>
4542
4543         * command.c: Fixed test on command return status for the correct 
4544           value,  which had been causing a crash under certain invalid input.
4545
4546 Wed Feb  4 15:34:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
4547
4548         * t-test.q: Added calculations for the one sample variant of the T-TEST
4549
4550 Tue Feb  3 20:09:54 2004  Ben Pfaff  <blp@gnu.org>
4551
4552         * tab.c: (render_strip) Fix bug that sometimes caused joined text
4553           in joined cells to be rendered outside box boundaries.
4554
4555 Tue Feb  3 18:56:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
4556
4557         * random.c (rng_create): Fixed seeding so that it gets reseeded after
4558         SET seed=xx has been called.
4559
4560 Mon Jan 19 14:08:09 2004  Ben Pfaff  <blp@gnu.org> 
4561
4562         * random.c (rng_get_double): Fix always-returning-zero bug in my
4563         preferred way, and at the same time make sure rounding doesn't
4564         bite us.
4565
4566 Thu Jan  1 23:16:41 2004  Ben Pfaff  <blp@gnu.org>
4567
4568         * html.c: (change_attributes) Dead code, removed.
4569         (escape_string) Eliminate code to call change_attributes() that
4570         never actually called it.
4571         (output_tab_table) Get rid of dependence on tab_hit
4572         and struct tab_joined_cell's hit member, which are abominations.
4573
4574         * tab.c: (tab_output_text) Don't call
4575         d->class->text_set_font_by_name if it's a null pointer.
4576         (macro UNROLL_LOOP) Eliminate.
4577         (macro UNROLL_3_LOOPS) Eliminate.
4578         (tabi_render) Rewrite not to use the above macros.
4579
4580 Thu Jan  1 23:09:07 2004  Ben Pfaff  <blp@gnu.org>
4581
4582         Start working on a new output driver system, one that doesn't suck
4583         so much, by adding a "device-independent" output driver.  The idea
4584         is to write out only a single output stream, then use separate
4585         processes to translate them into whatever formats we want.  This
4586         is similar to how "groff" works with its various output drivers
4587         (grops, grotty, grodvi, ...).
4588         
4589         * Makefile.am: (pspp_SOURCES) Add devind.c, devind.h.
4590
4591         * list.q: (write_all_headers) Stub out devind class.
4592         (clean_up) Ditto.
4593         (determine_layout) Ditto.
4594         (list_cases) Ditto.
4595
4596         * output.c: (outp_init) Add devind class.
4597
4598         * devind.c: New file.
4599
4600         * devind.h: New file.
4601
4602 Thu Jan  1 23:08:14 2004  Ben Pfaff  <blp@gnu.org>
4603
4604         * frequencies.q: (hash_value_alpha) Fixed up the previous change
4605         to use the proper string length.
4606
4607 Wed Dec 31 16:27:33 WAST 2003 John Darrington <john@darrington.wattle.id.au>
4608
4609         * Fixed bug where FREQ would crash on alpha values
4610
4611 Tue Dec 30 22:42:57 2003  Ben Pfaff  <blp@gnu.org>
4612
4613         * Removed bletcherous alloca() workarounds for AIX from top of
4614         many files.  AIX can use the alternative alloca() implementation
4615         instead.
4616
4617 Tue Dec 30 22:35:16 2003  Ben Pfaff  <blp@gnu.org>
4618
4619         * ascii.c: (ascii_option) Fix implementation of headers option.
4620
4621 Tue Dec 30 22:32:53 2003  Ben Pfaff  <blp@gnu.org>
4622
4623         * ascii.c: Add a "squeeze" option to the ASCII driver to squeeze
4624         multiple blank lines into one.
4625         (struct ascii_driver_ext) Add squeeze_blank_lines option.
4626         (ascii_preopen_driver) Initialize squeeze_blank_lines.
4627         (static var option_tab) Add squeeze entry.
4628         (ascii_option) Set squeeze_blank_lines.
4629         (output_lines) Implement squeezing blank lines.
4630
4631 Wed Dec 31 07:19:46 WST 2003 John Darrington <john@darrington.wattle.id.au>
4632
4633         * Removed redundant code from output.h
4634
4635 Sat Dec 27 22:17:52 2003  Ben Pfaff  <blp@gnu.org>
4636
4637         Dictionary classes: each variable is "ordinary", "system", or
4638         "scratch".
4639
4640         * var.h: (enum dict_class) New enum.
4641
4642         * vars-prs.c: (dict_class_from_id) New function.
4643         (dict_class_to_name) New function.
4644
4645 Sat Dec 27 22:16:06 2003  Ben Pfaff  <blp@gnu.org>
4646
4647         * var.h: (struct freq_tab_set) Removed (not used).
4648
4649 Sat Dec 27 22:15:21 2003  Ben Pfaff  <blp@gnu.org>
4650
4651         * value-labels.c: (val_labs_destroy) vls needs to be freed too.
4652
4653 Sat Dec 27 22:10:49 2003  Ben Pfaff  <blp@gnu.org>
4654
4655         * stats.c: (hypercube) Rename pow4().  All references updated.
4656
4657 Sat Dec 27 22:05:49 2003  Ben Pfaff  <blp@gnu.org>
4658
4659         * rename-vars.c: (cmd_rename_variables) Rewritten.
4660         (compare_name) Removed.
4661
4662 Sat Dec 27 22:03:51 2003  Ben Pfaff  <blp@gnu.org>
4663
4664         var_set feature, and code taking advantage of it.
4665         
4666         * crosstabs.q: (static var var_dict) Removed.
4667         (static var variables) New variable.
4668         (static var variables_cnt) New variable.
4669         (cmd_crosstabs) Free variables instead of var_dict.
4670         (internal_cmd_crosstabs) Initialize and use variables,
4671         variables_cnt instead of var_dict.
4672         (free_var_dict) Removed.
4673         (crs_custom_tables) Use var_set instead of a copied dictionary.
4674         (crs_custom_variables) Set up variables, variables_cnt instead of
4675         var_dict.
4676         [DEBUGGING] (debug_print) Ditto.
4677
4678         * means.q: (mns_custom_tables) Use var_set instead of a copied
4679         dictionary.
4680
4681         * vars-prs.c: (parse_vs_variable) New function.
4682         (parse_dict_variable) Rewritten.
4683         (parse_variable) Rewritten.
4684         (parse_variables) Renamed parse_var_set_vars(), rewritten.
4685         (parse_variables) New function in terms of parse_var_set_vars().
4686         Now requires its first argument to be non-null.  All references
4687         that passed a null pointer updated to pass default_dict instead.
4688         (macro id_dict) Removed.
4689         (parse_DATA_LIST_vars) Add assertions.
4690         (parse_mixed_vars) Ditto.
4691         (struct var_set) New structure.
4692         (var_set_get_cnt) New function.
4693         (var_set_get_var) New function.
4694         (var_set_lookup_var) New function.
4695         (var_set_destroy) New function.
4696         (dict_var_set_get_cnt) New function.
4697         (dict_var_set_get_var) New function.
4698         (dict_var_set_lookup_var) New function.
4699         (dict_var_set_destroy) New function.
4700         (var_set_create_from_dict) New function.
4701         (struct array_var_set) New structure.
4702         (array_var_set_get_cnt) New function.
4703         (array_var_set_get_var) New function.
4704         (array_var_set_lookup_var) New function.
4705         (array_var_set_destroy) New function.
4706         (var_set_create_from_array) New function.
4707
4708         * q2c.c: (dump_parser) Use parse_variables(default_dict, ...)
4709         instead of parse_variables(NULL, ...) in output code.
4710
4711 Sat Dec 27 21:38:53 2003  Ben Pfaff  <blp@gnu.org>
4712
4713         Change inp_init from a 2-bit vector to an ordinary array.
4714         Initialize it all in cmd_end_input_program() instead of in
4715         create_variable().
4716
4717         * inpt-pgm.c: (enum value_init_type) New enum.
4718         (global var inp_init) Change to `enum value_init_type *', make
4719         static.
4720         (inp_init_size) Removed.
4721         (inp_nval) Change to `size_t', make static.
4722         (cmd_input_program) Don't initialize inp_init or inp_init_size.
4723         (cmd_end_input_program) Initialize inp_init, inp_nval.
4724         (init_case) Rewrite.
4725         (clear_case) Rewrite.
4726
4727         * inpt-pgm.h: Removed.
4728
4729 Sat Dec 27 21:36:38 2003  Ben Pfaff  <blp@gnu.org>
4730
4731         * hash.c: (hsh_hash_bytes) Use Fowler-Noll-Vo hash instead of
4732         Colin Plumb hash.  It is simpler and should better resist
4733         collisions.
4734         (hsh_hash_string) Ditto.
4735
4736 Sat Dec 27 21:34:57 2003  Ben Pfaff  <blp@gnu.org>
4737
4738         * get.c: (export_write_case_func) Remove debug printing code.
4739
4740 Sat Dec 27 21:11:09 2003  Ben Pfaff  <blp@gnu.org>
4741
4742         * get.c: (cmd_save_internal) Rename parameter.  Use &t->h instead
4743         of cast.
4744         (save_write_case_func) Use &trns->h instead of cast.
4745         (cmd_export) Use &t->h instead of cast.
4746
4747 Sat Dec 27 20:57:42 2003  Ben Pfaff  <blp@gnu.org>
4748
4749         Moved vectors into the dictionary.
4750
4751         * var.h: (struct vector) Moved here from vector.h.  `index' member
4752         renamed `idx', `v' renamed `var', `nv' renamed `cnt'.  All
4753         references updated.
4754         
4755         * vector.h: Removed.
4756
4757         * vector.c: (global var vec) Removed.
4758         (global var nvec) Removed.
4759         (cmd_vector) Rewritten.
4760         (find_vector) Removed.
4761
4762         * dictionary.c: (dict_create_vector) New function.
4763         (dict_get_vector) New function, replaces reading global vec[]
4764         array.
4765         (dict_get_vector_cnt) New function, replaces reading global nvec
4766         variable.
4767         (dict_lookup_vector) New function, replaces find_vector().
4768         (dict_clear_vectors) New function.
4769
4770 Sat Dec 27 20:54:01 2003  Ben Pfaff  <blp@gnu.org>
4771
4772         Start to move away from `struct variable' p `union' member to void
4773         * aux member.
4774
4775         * var.h: (struct variable) Add `aux' member.
4776
4777 Sat Dec 27 20:36:25 2003  Ben Pfaff  <blp@gnu.org>
4778
4779         Get rid of struct variable `foo' member.
4780
4781         * frequencies.q: (internal_cmd_frequencies) Use p.frq.used instead
4782         of foo.
4783         (frq_custom_variables) Ditto.
4784         (frq_custom_grouped) Ditto.
4785
4786         * get.c: (struct save_trns) Change `var' member from `int *' to
4787         `struct variable **'.
4788         (cmd_save_internal) Use aux instead of foo.
4789         (save_trns_proc) Use revised `var' member.
4790         (static var mtf_seq_no) Renamed mtf_seq_num.
4791         (static var mtf_seq_nums) New static var.
4792         (cmd_match_files) Initialize mtf_seq_nums.
4793         (mtf_free) Free mtf_seq_nums.
4794         (mtf_processing) Use mtf_seq_nums instead of foo.
4795         (mtf_merge_dictionary) No need to initialize mv->foo.
4796         (cmd_export) Use aux instead of foo.  Use revised `var' member.
4797         (mns_custom_tables) Don't use foo to check for duplicates, that's
4798         what PV_NO_DUPLICATE is for.
4799
4800         * var.h: (struct variable) Remove `foo' member.
4801         (struct frequencies_proc) New member.
4802         
4803 Sat Dec 27 19:46:13 2003  Ben Pfaff  <blp@gnu.org>
4804
4805         Clean up COMPUTE and IF.
4806
4807         * compute.c: More or less rewrite the darn thing.
4808         (struct compute_trns) Rename and reorder and add and delete
4809         members.
4810         (cmd_compute) Rewrite.
4811         (compute_num) Make conditional on test expression.  Now used for
4812         both COMPUTE and IF.
4813         (compute_num_vec) Ditto.
4814         (compute_str) Ditto.
4815         (compute_str_vec) Ditto.
4816         (cmd_if) Rewrite.
4817         (if_num) Removed.
4818         (if_num_vec) Removed.
4819         (if_str) Removed.
4820         (if_str_vec) Removed.
4821         (parse_target_expression) Renamed parse_rvalue_expression(),
4822         rewritten.
4823         (new_trns) Renamed compute_trns_create(), rewritten.
4824         (delete_trns) Removed.
4825         (free_trns) Renamed compute_trns_free(), rewritten.
4826         (struct lvalue) New structure.
4827         (parse_var_or_vec) Renamed lvalue_parse(), rewritten.
4828         (lvalue_get_type) New function.
4829         (lvalue_is_vector) New function.
4830         (lvalue_finalize) New function.
4831         (lvalue_destroy) New function.
4832         
4833 Sat Dec 27 19:44:14 2003  Ben Pfaff  <blp@gnu.org>
4834
4835         * command.def: Disallow MODIFY VARS in input mode, so that
4836         variables can't get dropped and confuse cmd_end_input_program()'s
4837         attempt to fill inp_init[].
4838         
4839         * modify-vars.c: (static var forward_positional_ordering) New
4840         variable.
4841         (struct var_modification) Entirely changed.
4842         (rearrange_dict) Interface changed, rewritten.
4843         (cmd_modify_vars) Deal with modified struct var_modification, much
4844         rewritten.
4845         (struct var_renaming) New structure.
4846         (compare_var_renaming_by_new_name) New function.
4847         (validate_var_modification) New function.
4848
4849         * var.h: (struct modify_vars_proc) Removed.
4850         (struct variable) Removed member p.mfv.
4851
4852 Sat Dec 27 19:40:26 2003  Ben Pfaff  <blp@gnu.org>
4853
4854         Make EVALUATE a valid command whether we're debugging or not, so
4855         that `make check' can succeed regardless of whether debugging is
4856         turned on.
4857         
4858         * command.def: [GLOBAL_DEBUGGING] Drop the #if.
4859
4860         * compute.c: [GLOBAL_DEBUGGING] (cmd_evaluate) Drop the #if.
4861
4862 Sat Dec 27 19:34:40 2003  Ben Pfaff  <blp@gnu.org>
4863
4864         * apply-dict.c: (cmd_apply_dictionary) Replace a ghastly switch
4865         statement by a simple if test.
4866
4867         * dfm.c: (dfm_get_record) Add assertion.
4868
4869 Sat Dec 27 17:51:26 2003  Ben Pfaff  <blp@gnu.org>
4870
4871         For each file x.c, move #include "x.h" to the very top of the
4872         include list, to catch x.h failing to include the proper headers.
4873
4874 Sat Dec 27 17:50:19 2003  Ben Pfaff  <blp@gnu.org>
4875
4876         * algorithm.c: (find) New function.
4877         (remove_equal) New function.
4878         (set_difference) New function.
4879         (adjacent_find_equal) New function.
4880         [TEST_UNIQUE] Removed test case.
4881         (copy_if) Find end test.
4882
4883 Sat Dec 27 17:42:45 2003  Ben Pfaff  <blp@gnu.org>
4884
4885         * dictionary.c: (dict_get_case_weight) New convenience function.
4886
4887         * aggregate.c: (accumulate_aggregate_info) Use
4888         dict_get_case_weight().
4889
4890         * frequencies.q: (calc_general) Ditto.
4891         (calc_integer) Ditto.
4892         (calc) Ditto.
4893
4894         * t-test.q: (groups_calc) Ditto.
4895         (z_calc) Ditto.
4896
4897 Sat Dec 27 17:29:45 2003  Ben Pfaff  <blp@gnu.org>
4898
4899         * glob.c: (global var default_dict) Change from `struct
4900         dictionary' to `struct dictionary *'.  All references changed.
4901         (init_glob) Initialize default_dict with dict_create().
4902
4903 Sat Dec 27 17:06:06 2003  Ben Pfaff  <blp@gnu.org>
4904
4905         struct dictionary now made opaque.  All related functions:
4906
4907         * get.c: (rename_variables) Removed.
4908         (dict_delete_run) Removed.
4909         
4910         * temporary.c: (copy_variable) Removed.
4911         (new_dictionary) Removed.
4912         (save_dictionary) Removed.
4913         (restore_dictionary) Removed.
4914         (free_dictionary) Removed.
4915
4916         * vars-atr.c: (clear_default_dict) Removed.
4917         (find_variable) Removed.
4918         (find_dict_variable) Removed.
4919         (create_variable) Removed.
4920         (delete_variable) Removed.
4921         (common_init_stuff) Removed.
4922         (init_variable) Removed.  Updating of inp_init moved into
4923         cmd_end_input_program().
4924         (replace_variable) Removed.
4925         (rename_variable) Removed.
4926         (clear_variable) Removed.
4927         (dup_variable) Removed.
4928
4929         * vars-prs.c: (is_varname) Removed.
4930         (is_dict_varname) Removed.
4931         (fill_all_vars) Removed.
4932
4933         * vector.c: (find_vector) Removed.
4934
4935         * weight.c: (stop_weighting) Removed.
4936
4937         * dictionary.c: New file.
4938         (dict_create) New, replaces new_dictionary().
4939         (dict_clone) New, replaces save_dictionary() and
4940         restore_dictionary().
4941         (dict_clear) New, replaces clear_default_dict().
4942         (dict_destroy) New, replaces free_dictionary().
4943         (dict_get_var_cnt) New function, replaces references to
4944         dict->nvar.
4945         (dict_get_var) New function, replaces references to dict->var[i].
4946         (dict_get_vars) New function, replaces fill_all_vars().
4947         (dict_create_var) New, replaces create_variable().  Interface
4948         drops `type' parameter, using a zero `width' to designate numeric.
4949         (dict_clone_var) New, replaces dup_variable().
4950         (dict_rename_var) New, replaces rename_variable().
4951         (dict_lookup_var) New, replaces find_variable(),
4952         find_dict_variable(), is_varname().
4953         (dict_contains_var) New function.
4954         (compare_variable_dblptrs) New function.
4955         (dict_delete_var) New function, replaces clear_variable().
4956         (dict_delete_vars) New function, replaces dict_delete_run().
4957         (dict_reorder_vars) New function.
4958         (dict_rename_vars) New function, replaces rename_variables().
4959         (dict_get_weight) New function, replaces reading dict->weight_var.
4960         (dict_set_weight) New function, replaces writing dict->weight_var
4961         or calling stop_weight(dict).
4962         (dict_get_filter) New function, replaces reading dict->filter_var.
4963         (dict_set_filter) New function, replaces writing dict->filter_var.
4964         (dict_get_case_limit) New function, replaces reading dict->N.
4965         (dict_set_case_limit) New function, replaces writing dict->N.
4966         (dict_get_value_cnt) New function, replaces reading dict->nval.
4967         (dict_compact_values) New function, replaces a loop that was
4968         replicated in several places.
4969         (dict_get_split_vars) New function, replaces reading dict->splits.
4970         (dict_get_split_cnt) New function, replaces reading
4971         dict->n_splits.
4972         (dict_set_split_vars) New function, replaces writing dict->splits.
4973         (dict_get_label) New function, replaces reading dict->label.
4974         (dict_set_label) New function, replaces writing dict->label.
4975         (dict_get_documents) New function, replaces reading
4976         dict->documents.
4977         (dict_set_documents) New function, replaces writing
4978         dict->documents.
4979         
4980         All references to above functions updated.
4981         
4982         * aggregate.c: (cmd_aggregate) Copy file label and documents from
4983         old dictionary to new by hand, because dict_create() can't do it
4984         itself.  Use dict_set_documents(), dict_set_split_vars().
4985
4986         * temporary.c: (cancel_temporary) Also set temp_dict to NULL after
4987         calling dict_destroy().
4988
4989         * data-list.c: (dls_var_spec) Remove `type' member, replace by
4990         `width'.
4991         (fixed_parse_compatible) Some slightly nontrivial changes for
4992         dict_create_var().
4993         (dump_fmt_list) Ditto.
4994         (parse_free) Ditto.
4995
4996         * file-type.c: (create_col_var) Ditto.
4997
4998         * get.c: (cmd_get) Use dict_compact_values() instead of a loop.
4999         (trim_dictionary) Use dict_delete_vars(), dict_reorder_vars().
5000         (rename_variables) Use dict_rename_vars().
5001         (mtf_merge_dictionary) Use dict_get_documents(),
5002         dict_set_documents(), dict_compact_values().
5003
5004         * pfm-read.c: (read_variables) Deal with changes to weighting.
5005
5006         * q2c.c: (dump_parser) Use dict_lookup_var() instead of
5007         is_varname() in output code.
5008
5009         * sfm-read.c: (read_header) Use dict_create(), dict_set_label(),
5010         other dictionary functions.
5011
5012         * title.c: (add_document_line) Use dict_get_documents(),
5013         dict_set_documents().
5014
5015         * vars-atr.c: (discard_variables) Use dict_clear(default_dict),
5016         reset default_handle by hand.  dict_clear() will clear vectors so
5017         there's no need for that by hand.
5018
5019         * vfm.c: (close_active_file) Move call to finish_compaction()
5020         earlier, so that we can do the compaction as a single step using
5021         dict_compact_values().  Use dict_clear_vectors().
5022         (finish_compaction) Use dict_delete_var(), dict_compact_values().
5023                 
5024         Some functions don't have replacements:
5025
5026         * vars-atr.c: (force_create_variable) Removed.  All references
5027         updated to dict_create_var() followed by an assertion.
5028         (force_dup_variable) Removed.  All references updated to
5029         dict_clone_var() followed by an assertion.
5030         
5031         * weight.c: (update_weighting) Removed.  No longer necessary, so
5032         all references removed.
5033
5034 Sat Dec 27 16:43:01 2003  Ben Pfaff  <blp@gnu.org>
5035
5036         Clean up AGGREGATE.
5037         
5038         * aggregate.c: Eliminate separation of weighted and unweighted
5039         case.  It made the code too obscure and I doubt it was actually
5040         faster.  Instead, all code uses the "weighted" code, because
5041         that's a generalization of the "unweighted" code.
5042         (FWEIGHT) Removed.
5043         (FOPTIONS) Ditto.
5044         (parse_aggregate_functions) No need to set FWEIGHT.
5045         (accumulate_aggregate_info) Get rid of FWEIGHT cases.
5046         (dump_aggregate_info) Ditto.
5047         (initialize_aggregate_info) No need for special plain_function
5048         that gets rid of FWEIGHT option.
5049
5050         * aggregate.c: Get rid of approximations.
5051         (accumulate_aggregate_info) Don't use approx_gt(), approx_lt(),
5052         approx_in_range().
5053         (aggregate_single_case) Don't use approx_ne().
5054
5055 Sat Dec 27 16:19:36 2003  Ben Pfaff  <blp@gnu.org>
5056
5057         * ascii.c (ascii_line_width): Dead code, removed.
5058
5059         * postscript.c (ps_line_width): Ditto.
5060
5061         * q2c.c (xrealloc): Ditto.
5062
5063         * count.c (internal_cmd_count): Ditto.
5064
5065         * means.q (validate_dependent_endpoint): Ditto.
5066
5067         * set.q: (cmd_gset) Ditto.
5068
5069         * weight.c: [0] (weight_trns_proc) Ditto.
5070
5071 Sat Dec 27 16:18:16 2003  Ben Pfaff  <blp@gnu.org>
5072
5073         Make the code -Wmissing-prototypes clean.
5074
5075         * Makefile.am (version.c): Add #include "version.h".
5076         
5077         * ascii.c: (ascii_open_global) Make static.
5078         (ascii_close_page) Ditto.
5079         (ascii_font_sizes) Ditto.
5080         (ascii_postopen_driver) Ditto.
5081         (ascii_close_driver) Ditto.
5082         (ascii_option) Ditto.
5083         (ascii_open_page) Ditto.
5084         (ascii_line_horz) Ditto.
5085         (ascii_line_vert) Ditto.
5086         (ascii_line_intersection) Ditto.
5087         (ascii_box) Ditto.
5088         (ascii_polyline_begin) Ditto.
5089         (ascii_polyline_point) Ditto.
5090         (ascii_polyline_end) Ditto.
5091         (ascii_text_set_font_by_name) Ditto.
5092         (ascii_text_set_font_by_position) Ditto.
5093         (ascii_text_set_font_by_family) Ditto.
5094         (ascii_text_get_font_name) Ditto.
5095         (ascii_text_get_font_family) Ditto.
5096         (ascii_text_set_size) Ditto.
5097         (ascii_text_get_size) Ditto.
5098         (ascii_text_metrics) Ditto.
5099         (ascii_text_draw) Ditto.
5100         (ascii_close_page) Ditto.
5101
5102         * cmdline.h: New header for parse_command_line().  Used where
5103         needed.
5104
5105         * command.c: Move prototypes for cmd_*() functions to command.h.
5106
5107         * command.h: Prototypes for cmd_*() functions moved here from
5108         command.c.
5109
5110         * crosstabs.q: (gamma_int) Ditto.
5111
5112         * file-handle.h: Add fh_init_files() prototype.
5113         
5114         * getline.c: (welcome) Ditto.
5115
5116         * glob.h: New header for init_glob().  Used where appropriate.
5117
5118         * hash.c: (comparison_helper) Ditto.
5119
5120         * html.c: (html_open_global) Ditto.
5121         (html_close_global) Ditto.
5122         (html_preopen_driver) Ditto.
5123         (html_postopen_driver) Ditto.
5124         (html_close_driver) Ditto.
5125         (html_option) Ditto.
5126         (html_open_page) Ditto.
5127         (html_close_page) Ditto.
5128         (html_submit) Ditto.
5129
5130         * inpt-pgm.c: (input_program_source_read) Ditto.
5131
5132         * output.c: (find_defn_value) Ditto.
5133         (destroy_list) Ditto.
5134
5135         * pfm-read.c: (read_int) Ditto.
5136
5137         * postscript.c: (ps_open_global) Ditto.
5138         (ps_close_global) Ditto.
5139         (ps_font_sizes) Ditto.
5140         (ps_preopen_driver) Ditto.
5141         (ps_postopen_driver) Ditto.
5142         (ps_close_driver) Ditto.
5143         (ps_option) Ditto.
5144         (ps_open_page) Ditto.
5145         (ps_close_page) Ditto.
5146         (ps_line_horz) Ditto.
5147         (ps_line_vert) Ditto.
5148         (ps_line_intersection) Ditto.
5149         (ps_box) Ditto.
5150         (ps_polyline_begin) Ditto.
5151         (ps_polyline_point) Ditto.
5152         (ps_polyline_end) Ditto.
5153         (ps_text_set_font_by_name) Ditto.
5154         (ps_text_set_font_by_position) Ditto.
5155         (ps_text_set_font_family) Ditto.
5156         (ps_text_get_font_name) Ditto.
5157         (ps_text_get_font_family) Ditto.
5158         (ps_text_set_size) Ditto.
5159         (ps_text_get_size) Ditto.
5160         (ps_text_metrics) Ditto.
5161         (ps_text_draw) Ditto.
5162
5163         * q2c.c: (finish_up) Ditto.
5164         (xmalloc) Ditto.
5165         (xstrdup) Ditto.
5166         (get_buffer) Ditto.
5167         (st_lower) Ditto.
5168         (st_upper) Ditto.
5169         (skip_ws) Ditto.
5170         (get_line) Ditto.
5171         (add_symbol) Ditto.
5172         (find_symbol) Ditto.
5173         (lex_get) Ditto.
5174         (force_id) Ditto.
5175         (force_string) Ditto.
5176         (match_id) Ditto.
5177         (match_token) Ditto.
5178         (skip_token) Ditto.
5179         (parse) Ditto.
5180         (parse_setting) Ditto.
5181         (parse_specifier) Ditto.
5182         (parse_specifiers) Ditto.
5183         (parse_subcommand) Ditto.
5184         (dump_specifier_vars) Ditto.
5185         (is_keyword) Ditto.
5186         (make_identifier) Ditto.
5187         (dump_declarations) Ditto.
5188         (dump_specifier_init) Ditto.
5189         (dump_vars_init) Ditto.
5190         (make_match) Ditto.
5191         (dump_specifier_parse) Ditto.
5192         (dump_subcommand) Ditto.
5193         (dump_parser) Ditto.
5194         (dump_header) Ditto.
5195         (dump_free) Ditto.
5196         (recognize_directive) Ditto.
5197
5198         * recode.c: (string_to_long) Ditto.
5199
5200         * repeat.c: (find_DO_REPEAT_substitution) Ditto.
5201
5202         * repeat.h: New header for perform_DO_REPEAT_substitutions, used
5203         where appropriate.
5204
5205         * sort.c: (sort_stream_read) Ditto.
5206         (sort_stream_mode) Ditto.
5207         
5208 Fri Dec 19 23:35:04 2003  Ben Pfaff  <blp@gnu.org>
5209
5210         * algorithm.c (binary_search): Fix comparison.
5211
5212 Fri Dec 19 23:27:45 2003  Ben Pfaff  <blp@gnu.org>
5213
5214         * algorithm.c: (binary_search) Fix assertion.
5215
5216 Fri Dec 19 21:31:48 2003  Ben Pfaff  <blp@gnu.org>
5217
5218         * sysfile-info.c: (compare_vectors_by_name) Rewrite.
5219
5220 Fri Dec 19 21:30:24 2003  Ben Pfaff  <blp@gnu.org>
5221
5222         * sort.c: (compare_case_lists) Rewrite.
5223
5224 Fri Dec 19 16:44:22 2003  Ben Pfaff  <blp@gnu.org>
5225
5226         * quicksort.c: Removed (not used).
5227
5228         * quicksort.h: Removed (not used).
5229
5230         * sort.c: Removed blp_quicksort() prototype.
5231
5232 Fri Dec 19 16:42:13 2003  Ben Pfaff  <blp@gnu.org>
5233
5234         * postscript.c: (int_2_compare) Rewrite.
5235         (compare_line) Rewrite.
5236
5237 Fri Dec 19 16:38:35 2003  Ben Pfaff  <blp@gnu.org>
5238
5239         * matrix-data.c (compare_factors) Use lexicographical_compare()
5240         algorithm.
5241         (compare_doubles) New function.
5242         
5243         * algorithm.c: (lexicographical_compare) New algorithm.
5244
5245 Fri Dec 19 16:23:45 2003  Ben Pfaff  <blp@gnu.org>
5246
5247         * matrix-data.c (compare_variables_by_mxd_vartype): Rewrite.
5248
5249 Fri Dec 19 15:54:45 2003  Ben Pfaff  <blp@gnu.org>
5250
5251         * expr-prs.c: (cmp_func) Removed.
5252         (parse_function) Use binary_search() algorithm.
5253         (compare_functions) New function.
5254         (init_func_tab) Use sort() algorithm.
5255
5256         * algorithm.c: (binary_search) New algorithm.
5257
5258 Fri Dec 19 15:50:45 2003  Ben Pfaff  <blp@gnu.org>
5259
5260         * descript.q: (display) Use sort() algorithm instead of qsort().
5261         (compare_func) Removed.
5262         (descriptives_compare_variables) New function.
5263
5264 Fri Dec 19 15:08:38 2003  Ben Pfaff  <blp@gnu.org>
5265
5266         Get rid of AVL trees.  Hashes are more appropriate for everything
5267         PSPP does.
5268
5269         * Makefile.am: (pspp_SOURCES) Remove avl.c, avl.h.
5270         
5271         * avl.c: Removed.
5272
5273         * avl.h: Removed.
5274
5275 Fri Dec 19 14:33:31 2003  Ben Pfaff  <blp@gnu.org>
5276
5277         Much code can be clarified by using C++ STL-like algorithms.  Not
5278         all uses of these algorithms are listed below, only the ones where
5279         the change to an algorithm was the only change of interest.
5280         
5281         * Makefile.am: (pspp_SOURCES) Add algorithm.c, algorithm.h.
5282         
5283         * algorithm.c: New file.
5284
5285         * algorithm.h: New file.
5286
5287         * modify-vars.c: (static var forward) Removed.
5288         (static var positional) Removed.
5289         (compare_variables) Removed.
5290         (struct ordering) New.
5291         (cmd_modify_vars) Use sort() algorithm.
5292         (compare_variables_given_ordering) New function.
5293         (rearrange_dict) Use sort() algorithm.
5294
5295         * sysfile-info.c: (cmd_display) Use sort() algorithm.
5296         (cmp_var_by_name) Removed.
5297
5298 Fri Dec 19 14:26:17 2003  Ben Pfaff  <blp@gnu.org>
5299
5300         Make file handles use a hash table.
5301         
5302         * file-handle.q: (files) Change to hash table, make static.
5303         (cmd_file_handle) Use hash table functions.
5304         (fh_get_handle_by_filename) Ditto.
5305         (fh_get_handle_by_name) Ditto.
5306         (hash_file_handle) New function.
5307         (cmp_file_handle) Rewrite.
5308         (fh_init_files) Use hash table functions.
5309
5310 Fri Dec 19 14:24:38 2003  Ben Pfaff  <blp@gnu.org>
5311
5312         Clean up FREQUENCIES.
5313         
5314         * Makefile.am: (pspp_SOURCES) Remove frequencies.g.
5315
5316         * frequencies.q: Remove a lot of old #if'd out code at the end.
5317         (internal_cmd_frequencies) Use calc() instead of calc_no_weight()
5318         or calc_weight().  Initialize percentile_values.
5319         (calc) New function based on calc_weight() from frequencies.g.
5320         (precalc) Use hash functions.
5321         (static var comparison_func) Removed.
5322         (static var comparison_param) Removed.
5323         (comparison_helper) Removed.
5324         (get_freq_comparator) New function.
5325         (not_missing) New function.
5326         (add_freq) Removed.
5327         (postprocess_freq_tab) Use hash table functions, algorithms,
5328         get_freq_comparator().  Rewrite.
5329         (cleanup_freq_tab) Rephrase.
5330         (add_percentile) Clean up spacing.
5331         (hash_value_numeric) New function.
5332         (hash_value_alpha) New function.
5333         (compare_value_numeric_a) Rewrite.
5334         (compare_value_alpha_a) Rewrite.
5335         (compare_value_numeric_d) Rewrite.
5336         (compare_value_alpha_d) Rewrite.
5337         (compare_freq_numeric_a) Rewrite.
5338         (compare_freq_alpha_a) Rewrite.
5339         (compare_freq_numeric_d) Rewrite.
5340         (compare_freq_alpha_d) Rewrite.
5341         (calc_stats) Clean up mode, percentiles, max.
5342         (dump_statistics) Clean up spacing.
5343         
5344         * frequencies.g: Removed.
5345
5346         * var.h: (struct freq_tab) Change `data' to hash table.
5347
5348 Fri Dec 19 14:15:46 2003  Ben Pfaff  <blp@gnu.org>
5349
5350         * file-handle.h: Remove declaration of global variable `files',
5351         which wasn't used anywhere.
5352
5353         * postscript.c: (add_encoding) Remove superfluous cast.
5354         (line) Ditto.
5355
5356         * sfm-read.c: [linux] (bswap_int32) Drop ntohl() non-portable
5357         version.
5358
5359         * temporary.c: [0] (display_tree) Removed.
5360
5361 Fri Dec 19 14:13:04 2003  Ben Pfaff  <blp@gnu.org>
5362
5363         Implement a new random number generator based on the alleged RC4
5364         algorithm.
5365
5366         * expr-evl.c: (expr_evaluate) Use rng_get_double_normal() instead
5367         of rand_normal().
5368
5369         * random.c: [!HAVE_GOOD_RANDOM] (real_rand) Removed.
5370         [!HAVE_GOOD_RANDOM] (real_srand) Removed.
5371         (macro k) Removed.
5372         (static var V[]) Removed.
5373         (static var Y) Removed.
5374         (static var X2) Removed.
5375         (setup_randomize) Removed.
5376         (shuffle) Removed.
5377         (rand_uniform) Removed.
5378         (rand_normal) Removed.
5379         (struct rng) New structure.
5380         (rng_create) New function.
5381         (rng_destroy) New function.
5382         (swap_byte) New static function.
5383         (rng_seed) New function.
5384         (rng_get_bytes) New function.
5385         (rng_get_int) New function.
5386         (rng_get_unsigned) New function.
5387         (rng_get_double) New function.
5388         (rng_get_double_normal) New function.
5389         (pspp_rng) New function.
5390
5391         * random.h: Sync up to random.c.
5392
5393         * sample.c: (struct sample_trns) Make `frac' unsigned and a
5394         fraction of UINT_MAX, not 65536.
5395         (cmd_sample) Use rng_get_unsigned(), rng_get_double(), UINT_MAX
5396         fraction.
5397
5398         * vfm.c: (open_active_file) No need to call setup_randomize() any
5399         longer.
5400
5401 Fri Dec 19 12:05:56 2003  Ben Pfaff  <blp@gnu.org>
5402
5403         Change dictionary name indexes to use hash tables instead of AVL
5404         trees.
5405
5406         * crosstabs.q: (free_var_dict) Use hash tables.
5407         (crs_custom_tables) Ditto.
5408         (calc_general) Ditto.
5409         (compare_table_entry) Rewrite.
5410         (enum_var_values) Reorder parameters.  All references updated.
5411         Rewrite.
5412
5413         * get.c: (rename_variable) Use hash tables.
5414         (mtf_merge_dictionary) Ditto.
5415
5416         * glob.c: (init_glob) Use hash tables.
5417         (cmp_variable) Removed.
5418
5419         * means.q: (mns_custom_tables) Use hash tables.
5420
5421         * modify-vars.c: (rearrange_dict) Use hash tables.
5422
5423         * rename-vars.c: (cmd_rename_variables) Use hash tables.
5424
5425         * sfm-read.c: (read_header) Use hash tables.
5426         (read_variables) Ditto.
5427
5428         * temporary.c: (new_dictionary) Use hash tables.
5429         (save_dictionary) Ditto.
5430         (restore_dictionary) Ditto.
5431
5432         * var.h: (struct dictionary) Change AVL tree `var_by_name' into
5433         hash table `name_tab'.
5434
5435         * vars-atr.c: [DEBUGGING] (dump_one_var_node) Removed.
5436         [DEBUGGING] (dump_var_tree) Removed.
5437         (find_variable) Use hash tables.
5438         (find_dict_variable) Ditto.
5439         (common_init_stuff) Ditto.
5440         (rename_variable) Ditto.
5441         (clear_variable) Ditto.  Also, remove debug code.
5442         (dup_variable) Use hash tables.
5443
5444         * vars-prs.c: (fill_all_vars) Use hash tables.
5445         (is_dict_varname) Ditto.
5446         (parse_dict_variable) Ditto.
5447         
5448 Fri Dec 19 11:46:23 2003  Ben Pfaff  <blp@gnu.org>
5449
5450         Change value labels to use hash tables instead of AVL trees, and
5451         change value labels into an ADT.
5452
5453         * Makefile.am: (pspp_SOURCES) Add value-labels.c, value-labels.h.
5454         
5455         * value-labels.c: New file.
5456
5457         * value-labels.h: New file.
5458
5459         * apply-dict.c: (cmd_apply_dictionary) Use value label ADT.
5460         Get rid of a stupid use of goto.
5461
5462         * autorecode.c: (compare_alpha_value) Rewrite.
5463         (hash_alpha_value) Ditto.
5464         (compare_numeric_value) Rewrite.
5465         (hash_numeric_value) Ditto.
5466
5467         * frequencies.q: (dump_full) Use value label ADT.
5468
5469         * pfm-read.c: (read_value_label) Use value label ADT.
5470
5471         * pfm-write.c: (write_value_labels) Use value label ADT.
5472
5473         * sfm-read.c: (read_variables) Use value label ADT.
5474         (read_value_labels) Rewrite.
5475
5476         * sfm-write.c: (write_value_labels) Rewrite.
5477
5478         * sysfile-info.c: (cmd_sysfile_info) Use value label ADT.
5479         (display_variables) Ditto.
5480         (describe_variable) Ditto.
5481
5482         * t-test.q: (print_t_groups) Use value label ADT.
5483
5484         * temporary.c: (copy_variable) Use value label ADT.
5485         (free_dictionary) Ditto.
5486
5487         * val-labs.c: (verify_val_labs) Use value label ADT.
5488         (get_label) Ditto.
5489         (debug_print) Ditto.
5490         (val_lab_cmp) Removed.
5491         (inc_ref_count) Removed.
5492         (copy_value_labels) Removed.
5493
5494         * var.h: (struct value_label) Removed.
5495         (struct variable) Change AVL tree `val_lab' into hash table
5496         `val_labs'.
5497
5498         * vars-atr.c: (init_variable) Use value label ADT.
5499         (clear_variable) Ditto.
5500         (free_value_label) Removed.
5501         (free_val_lab) Removed.
5502         (get_val_lab) Removed.
5503         (compare_variables) New function.
5504         (hash_variable) New function.
5505
5506         * vfm.c: (dump_splits) Use value label ADT.
5507
5508 Fri Dec 19 11:18:11 2003  Ben Pfaff  <blp@gnu.org>
5509
5510         Add to the hash table interface.
5511
5512         * hash.c: (hsh_hash_bytes) Add assertion.
5513         (hsh_hash_string) Ditto.
5514         (hsh_clear) Ditto.
5515         (hsh_rehash) Ditto.
5516         (hsh_probe) Ditto.
5517         (hsh_create) Ditto.  Also make minimum `size'.
5518         (hsh_destroy) Rephrase.
5519         (sort_nulls_last) Removed.
5520         (not_null) New function.
5521         (hsh_data) Ditto.
5522         (comparison_helper) Ditto.
5523         (hsh_sort) Rewritten.
5524         (hsh_data_copy) New function.
5525         (hsh_sort_copy) Ditto.
5526         (hsh_insert) Ditto.
5527         (hsh_replace) Ditto.
5528         (hsh_hash_double) Ditto.
5529         (hsh_delete) Fix stupid bug.
5530         
5531 Thu Dec 18 12:27:03 WAST 2003 John Darrington <john@darrington.wattle.id.au>
5532         * added a calculation of the mode to FREQUENCIES
5533
5534 Wed Dec 17 12:53:01 WAST 2003 John Darrington <john@darrington.wattle.id.au>
5535
5536         * moved (un)defs of DEBUGGING to config.h
5537
5538 Mon Dec 15 21:35:59 2003  Ben Pfaff  <blp@gnu.org>
5539
5540         * groff-font.c: (add_kern) Fix indentation.
5541         (add_kern) Use & instead of % to take power-of-2 modulus.
5542         (font_get_kern_adjust) Likewise.
5543
5544 Fri Dec 12 23:54:37 2003  Ben Pfaff  <blp@gnu.org>
5545
5546         * autorecode.c: (recode) Replace stupid use of memcpy() by
5547         memberwise copy.
5548         (hash_alpha_value) Use hsh_hash_bytes().  Get rid of nasty casts.
5549         (hash_numeric_value) Ditto.
5550         (autorecode_proc_func) pool_strdup() was wrong here because the
5551         source string was not null-terminated.  Use new pool_strndup()
5552         instead.
5553
5554         * crosstabs.q: (enum_var_values) Remove superfluous and bizarre
5555         use of hsh_iterator_init().
5556
5557         * data-in.c: (parse_N) Initialize i->v->f.
5558
5559         * flip.c: (cmd_flip) Use memmove(), not memcpy(), to copy
5560         overlapping arrays.
5561
5562         * groff-font.c: Use power-of-2 hash table sizes, not prime.
5563         (groff_read_font) Don't call hsh_next_prime().  Don't call
5564         fclose(NULL).
5565         (static var hash) Remove `size_p', `max_used' members.
5566         (font_char_name_to_index) Don't call hsh_next_prime().  Use
5567         hsh_hash_string() instead of hashpjw(), & instead of %.
5568         (default_font) Don't call hsh_next_prime().
5569
5570         * pool.c: (pool_strndup) New function.
5571         (pool_strdup) Reimplement in terms of pool_strndup.
5572
5573         * postscript.c: (hash_font_entry) Use hsh_hash_string().  Get rid
5574         of nasty casts.
5575         (hash_ps_encoding) Use hsh_hash_string().
5576         (hash_ps_combo) Use hsh_hash_string(), hsh_hash_int().
5577         (hash_filename2font) Use hsh_hash_string().
5578
5579         * som.c: Add #include <stdlib.h>.
5580
5581         * tab.c: (tab_destroy) Don't set t->container after freeing `t'
5582         (by destroying its pool).
5583         
5584 Fri Dec 12 23:18:59 2003  Ben Pfaff  <blp@gnu.org>
5585
5586         Miscellaneous hash table code cleanup:
5587         
5588         * hash.h: (struct hsh_table) Moved into hash.c.
5589         (hsh_count) Ditto, and transformed into function.
5590         (hsh_compare_func) New typedef, used for defining otherwise-long
5591         function types here and in hash.c
5592         (hsh_hash_func) Ditto.
5593         (hsh_free_func) Ditto.
5594         
5595         * hash.c: (struct hsh_table) Renamed `n' to `used', `m' to `size',
5596         `table' to `entries'.  Removed `mp'.  All references updated.
5597         (hsh_clear) Don't shrink entries array; if the hash was this big
5598         once, it probably will be again.
5599         (hsh_rehash) Made static.
5600         (force_hsh_insert) Renamed hsh_force_insert.
5601         (force_hsh_find) Renamed hsh_force_find.
5602
5603         Made hash table sizes powers of 2, because that's fine with any
5604         reasonable hash function and because taking a power-of-2 modulus
5605         is faster than any other:
5606         
5607         (hsh_prime_tab) Removed;
5608         (hsh_next_prime) Ditto.
5609         (next_power_of_2) New function.
5610         (hsh_create) Use next_power_of_2.
5611         (hsh_rehash) Use & instead of %.
5612
5613         Cleaned up hsh_sort:
5614         
5615         (internal_comparison_fn) Removed.
5616         (sort_nulls_last) New function.
5617         (hsh_sort) Removed second parameter, switched to using the new
5618         quicksort() function from quicksort.h to avoid using nasty need
5619         for static variables with qsort().  All references updated.
5620
5621         Changed the hash functions offered, because there are better hash
5622         functions than the ones we had, and cleaned up the names to boot:
5623         
5624         * hash.c: (hashpjw_d) Removed.
5625         (hashpjw) Ditto.
5626         (hsh_hash_bytes) New function.
5627         (hsh_hash_string) New function.
5628         (hsh_hash_int) New function.
5629
5630         Improved the hash table iteration interface:
5631         
5632         * hash.h: (hsh_iterator_init) Removed.
5633         (struct hsh_iterator) Removed `init' member, change `next' to
5634         size_t.
5635
5636         * hash.c: (hsh_foreach) Removed.  All references updated to use
5637         hsh_first/hsh_next instead.
5638         (hsh_first) New function.  Notably, unlike hsh_foreach() it does
5639         not treat a null pointer as an empty hash table.
5640         (hsh_next) New function.
5641
5642         Made deletion possible, though slow:
5643
5644         * hash.c: (locate_matching_entry) New function.
5645         (hsh_find) Use locate_matching_entry().
5646         (hsh_delete) New function also using locate_matching_entry().
5647         (hsh_force_delete) New function.
5648
5649 Fri Dec 12 23:16:10 2003  Ben Pfaff  <blp@gnu.org>
5650
5651         * quicksort.c: New file implementing a sort routine with a
5652         interface better than qsort() because it passes a user-provided
5653         parameter to the sort routine.
5654
5655         * Makefile.am: Add quicksort.c, quicksort.h.
5656
5657 Fri Dec 12 13:31:58 2003  Ben Pfaff  <blp@gnu.org>
5658
5659         * All source files: Get rid of nasty special cases for Checker,
5660         which is pretty obsolete now.
5661
5662 Thu Dec 11 21:38:24 WST 2003 John Darrington <john@darrington.wattle.id.au>
5663
5664         * Fixed a bug apparent when using the FREQUENCIES command with the
5665         html driver.  The html driver was incorrectly trying to display 
5666         empty cells.
5667
5668 Sun Jan  2 21:40:13 2000  Ben Pfaff  <blp@gnu.org>
5669
5670         * Makefile.am: Reorganized.  Put locale dir in version.c instead
5671         of passing it to each compile command.  Only put local gmp libs in
5672         LD_ADD if not installed on system.  Remove `boast' target.
5673
5674         * All source files: struct and union typedefs eliminated.
5675         `sizeof type' replaced by `sizeof object' where practical.  Moved
5676         `unused' qualifiers from start to end of declarations for gcc
5677         2.7.2 compatibility.  Change `while (1)' to `for (;;)'.  Made
5678         assertions on pointers strictly compliant.  Removed _ prefixes on
5679         some function parameter names.
5680
5681         * alloc.c: New source file, containing these external linkage
5682         functions removed from common.c: xmalloc, xcalloc, xrealloc,
5683         xstrdup.
5684
5685         * arena.c: Removed.
5686         
5687         * arena.h: Removed.
5688
5689         * ascii.c: Migrated from arenas to pools.
5690         (struct ascii_driver_ext) ops[], box[], fonts[] changed from
5691         c_string to len_string.  All references changed.
5692         (ascii_option) Signature changed to comply to new output.c
5693         interface.
5694         (count_fancy_chars) Removed.
5695         (delineate) Removed support for rich text.
5696         (ascii_text_metrics) Ditto.
5697         (text_draw) Ditto.
5698         (output_shorts) Change `box', `off', `on' from c_string to
5699         len_string.  Change `remaining' from int to size_t.
5700         (ascii_close_page) Make page numbering less haphazard.
5701
5702         * autorecode.c: Migrate from arenas to pools.
5703
5704         * avl.c: Migrate from arenas to pools.  Synch from libavl 1.4.0.
5705
5706         * bitvector.h: New file containing these macros from misc.h:
5707         SET_BIT, CLEAR_BIT, SET_BIT_TO, TEST_BIT, BIT_INDEX.
5708
5709         * command.c: (struct command) cmd1, cmd2, cmd3 members changed to
5710         word[3].  ncmd removed.
5711         (var empty_string) Removed.
5712         (var cmd_table) Declaration updated.
5713         (var cmdtab) Removed.
5714         (cmp_command) Removed.
5715         (split_words) Rewritten to use strtok_r().
5716         (init_cmd_parser) Renamed cmd_init().  Rewritten.
5717         (find_command) Removed.
5718         (FILE_TYPE_okay) Rewritten.
5719         (cmd_parse) Rewritten.  Semantics of the return value of command
5720         handlers has changed: they must now return one of the new CMD_*
5721         enumerals, rather than a magic value.  This meant that all
5722         commands had to be modified, and they were.
5723         (figure_out_command) New function.
5724
5725         * command.def: Add CORRELATIONS, PEARSON CORRELATIONS.  Add
5726         #defines for INIT, INPU, etc.
5727
5728         * command.h: New CMD_* enum series.
5729         (cur_proc) Make const char *, not char *.
5730         (cmd_init) Prototype.
5731         (cmd_parse) Ditto.
5732
5733         * common.c: Removed.
5734
5735         * common.h: Removed.
5736
5737         * correlations.q: New file.
5738
5739         * crosstabs.q: Migrate from arenas to pools.  Migrate to new-style
5740         q2c.
5741         (custom_tables) Renamed crs_custom_tables().
5742         (custom_variables) Renamed crs_custom_variables().
5743         (calc_integer) Add in some `const' qualifiers.
5744         (table_value_missing) Change from a_string to len_string.
5745         (float_M_suffix) Change from a_string to len_string.
5746
5747         * data-in.c: Rewritten.  All references to
5748         parse_string_as_format() changed to data_in().
5749
5750         * data-in.h: New file.
5751
5752         * data-list.c: Change DLS_* from #define's to enums.  Move from
5753         rpd_msg() to tmsg().
5754         (RPD_ERR) New #define.
5755         (do_reading) Change dfm_push_cust() to dfm_push(), pop_cust() to
5756         dfm_pop().
5757         (read_from_data_list_fixed) Change from old
5758         parse_string_as_format() to new data_in().
5759         (read_from_data_list_free) Ditto.
5760         (read_from_data_list_list) Ditto.
5761         (cmd_repeating_data) Modify approach to checking for end of
5762         command.
5763         (rpd_msg) Removed.
5764         (rpd_parse_record) Change from old parse_string_as_format() to new
5765         data_in().  Change from old convert_format_to_string() to new
5766         data_out().
5767         (read_one_set_of_repetitions) Change dfm_push_cust() to
5768         dfm_push(), pop_cust() to dfm_pop().
5769
5770         * data-out.c: Rewritten.  All references to
5771         convert_format_to_string() changed to data_out().
5772
5773         * descript.q: Migrate to new q2c.
5774         (cmd_descriptives) Removed.
5775         (internal_cmd_descriptives) Renamed cmd_descriptives ().
5776         (custom_variables) Renamed dsc_custom_variables().
5777
5778         * dfm.c: (struct dfm_fhuser_ext) `ln' removed.  All references
5779         removed.
5780         (open_file_r) Initialize h->where.line_number.  Migrate to new
5781         struct string.
5782         (open_file_w) Initialize h->where.line_number.
5783         (read_record) Change from ext->ln to h->where.line_number.
5784         Migrate to struct string.
5785         (dfm_put_record) Rephrased.
5786         (dfm_push_cust) Renamed dfm_push(), rewritten.
5787         (dfm_pop) New function.
5788
5789         * error.c: All references updated.
5790         (glob var error_count) Renamed err_err_count.
5791         (glob var warning_count) Renamed err_warning_count.
5792         (glob var error_already_flagged) Renamed err_already_flagged.
5793         (glob var verbosity) Renamed err_verbosity.
5794         (glob var cust_fn) Removed.
5795         (glob var cust_ln) Removed.
5796         (static var file_loc) New.
5797         (static var nfile_loc) New.
5798         (static var mfile_loc) New.
5799         (tmsg) New function.
5800         (push_cust) Removed.
5801         (pop_cust) Removed.
5802         (msg) Rewritten.
5803         (static var terminating) Removed.
5804         (failure) Renamed err_failure().
5805         (hcf) Renamed err_hcf().
5806         (err_push_file_locator) New function.
5807         (err_pop_file_locator) New function.
5808         (err_location) New function.
5809         (check_error_count) Renamed err_check_count().
5810         (vmsg) Renamed err_vmsg().  Interface changed.
5811         (verbose_msg) Removed.
5812         (err_cond_fail) New function.
5813         (error_break) Renamed err_break().
5814
5815         * error.h: All references updated.
5816         (enum MSG_CLASS_COUNT) Renamed ERR_CLASS_COUNT.
5817         (enum ERR_CLASS_MASK, ERR_VERBOSITY_SHIFT, ERR_VERBOSITY_MASK)
5818         New.
5819         (struct file_locator) New.
5820         (struct error) New.
5821         (macro verbose_msg) Removed.
5822         (macro cond_fail) Removed.
5823
5824         * expr-opt.c: (evaluate_tree) sizeof(char) == 1.
5825
5826         * expr-prs.c: Reorganized.  All references updated.
5827         (exprtypename) Renamed expr_type_name().
5828         (typename) Renamed type_name().
5829         (free_expression) Renamed expr_free().
5830         (parse_expression) Renamed expr_parse().  Uses new type_check()
5831         function.
5832         (init_functab) Renamed init_func_tab().
5833         (type_check) New function.
5834         (parse_or) Rewritten to use new allocate_nonterminal() and
5835         append_nonterminal_arg() functions.
5836         (parse_and) Ditto.
5837         (parse_not) Ditto.
5838         (parse_rel) Ditto.  Also simplified logic.
5839         (parse_add) Ditto.
5840         (parse_mul) Ditto.
5841         (parse_neg) Ditto.
5842         (parse_exp) Ditto.
5843         (SYSMIS_func) Ditto.
5844         (VALUE_func) Rephrased.
5845         (CONCAT_func) Fix memory leak by replacing free by free_node on
5846         lossage.
5847         (generic_str_func) Ditto.
5848         (parse_function) Ditto.  Also rephrasings.  Uses bsearch() to find
5849         function.
5850         (allocate_nonterminal) New function.
5851         (append_nonterminal_arg) New function.
5852         (static func_tab[]) Now at file level.
5853         (cmp_func) Moved.
5854         (init_func_tab) Moved.  Now just uses qsort() to sort func_tab[].
5855
5856         * expr.h: (enum series OP_*) Moved to exprP.h.
5857         (OP_* defines) Ditto.
5858         (struct op_desc) Ditto.
5859         (global ops[]) Ditto.
5860         (struct num_con_node) Ditto.
5861         (struct str_con_node) Ditto.
5862         (struct var_node) Ditto.
5863         (struct lag_node) Ditto.
5864         (struct casenum_node) Ditto.
5865         (struct nonterm_node) Ditto.
5866         (union any_node) Members renamed.
5867         (struct sys_node) Removed.
5868         (struct val_node) Removed.
5869         (operator typedef) Removed.
5870         (typedef exprtype) Removed.
5871         (enum series EX_*) Moved to exprP.h.
5872         (struct expression) Ditto.  Also renamed a lot of the members.
5873         (PXP_* defines) Changed to enums.
5874         (free_node prototype) Moved to exprP.h.
5875
5876         * file-handle.h: (struct file_handle) New member `where'.
5877
5878         * file-handle.q: Migrated to new q2c format.
5879         (prepend_current_directory) Removed (dead code).
5880         (cmd_file_handle) Incorporated all of internal_cmd_file_handle().
5881         (fh_get_handle_by_filename) Removed dead code.
5882         Set new `where' member.
5883
5884         * file-type.c: (file_type_source_read) References to
5885         parse_string_as_format() changed to data_in().
5886         dfm_push_cust()/pop_cust() changed to dfm_push()/dfm_pop().
5887
5888         * filename.c: All references updated.
5889         (init_filename) Renamed fn_init().
5890         (expand_line) Removed.
5891         (macro EXPAND_LINE) Removed.
5892         (interp_vars) Renamed fn_interp_vars().  Now uses st_*() instead
5893         of custom functions.
5894         (gnu_getcwd) Renamed fn_get_cwd(), rewritten.
5895         (tilde_expand) Renamed fn_tilde_expand(), uses ds_*().
5896         (normalize_filename) Renamed fn_normalize().
5897         (search_path) Renamed fn_search_path(), rewritten.
5898         (prepend_dir) Renamed fn_prepend_dir().
5899         (blp_getenv) Renamed fn_getenv().
5900         (blp_dirname) Renamed fn_dirname().
5901         (fn_basename) New function, not used.
5902         (absolute_filename_p) Renamed fn_absolute_p().
5903         (is_special_filename) Renamed fn_special_p().
5904         (file_exists) Renamed fn_exists_p().
5905         (readlink_malloc) Renamed fn_readlink().
5906         (getenv_default) Renamed fn_getenv_default().
5907         (open_file) Renamed fn_open().
5908         (close_file) Renamed fn_close().
5909         (open_file_ext) Renamed fn_open_ext().
5910         (close_file_ext) Renamed fn_close_ext().
5911
5912         * font.h: Migrate from arenas to pools.
5913
5914         * format.c: (parse_format_specifier_name) Deal with ds_* strings.
5915
5916         * frequencies.g: Migrate from arenas to pools.
5917
5918         * frequencies.q: Migrate to new q2c version.  Migrate from arenas
5919         to pools.
5920
5921         * getline.c: All references updated.
5922         (global getl_buf) Changed from char * to struct string.
5923         (static getl_include_path) Ditto.
5924         (global getl_buf_len) Removed.
5925         (global getl_buf_size) Removed.
5926         (getl_include_path) Deal with new getl_buf, getl_include_path.
5927         (getl_uninitialize) New function.
5928         (getl_get_current_directory) Rewritten.
5929         (getl_clear_include_path) Rewritten.
5930         (getl_add_include_dir) Rewritten.
5931         (getl_add_file) Assertion fixed.
5932         (getl_add_virtual_file) Change initial value of `remaining_loops'
5933         from 2 to 1.
5934         (welcome) Rewritten.
5935         (handle_line_buffer) Make static.  Change logic to make
5936         getl_add_virtual_file() change sensible.  Use ds_*() strings.
5937         (getl_read_line) Use ds_*() strings.  Implement SET ECHO.
5938         (getl_close_file) Moved.
5939         (getl_location) New function.
5940
5941         * getline.h: All references updated.
5942         (macro curln) Removed.
5943         (macro curfn) Removed.
5944         (macro am_interactive) Renamed getl_am_interactive.
5945         (macro am_reading_script) Renamed getl_reading_script.
5946
5947         * glob.c: (global fmt_parse_ignore_error) Removed.
5948         (init_glob) Use locale_dir not LOCALEDIR.  Use feholdexcept() on
5949         systems that support it (C99).  Turn off SET ECHO by default.  No
5950         necessary julcal initialization anymore.
5951
5952         * groff-font.c: Migrate from arenas to pools.
5953         (groff_read_font) Use err_push_file_locator().
5954         (groff_read_DESC) Ditto.
5955         (font_msg) Use tmsg().
5956
5957         * hash.c: (hsh_sort) Fix debug code.
5958         [GLOBAL_DEBUGGING] Include stdio.h.
5959
5960         * hash.h: (macro force_hsh_insert) Rephrase.
5961
5962         * heap.c: Rewritten.
5963         
5964         * heap.h: Rewritten.
5965
5966         * html.c: (html_option) Change from outp_value to struct string.
5967         (postopen) Change from curfn to getl_location().
5968         (escape_string) Remove rich-text code.  Signature changed.
5969         (output_tab_table) Switch from a_string to struct len_string.
5970         Remove rich text support.
5971
5972         * lexer.c: All references updated.  Largely rewritten.  Major
5973         changes listed below.  Removed tagged quote support.  Adapted to
5974         struct string tokstr.
5975         (global tokstr) Changed to struct string.
5976         (global tokstr_size) Removed.
5977         (global tokstr_len) Removed.
5978         (global tokid) New.
5979         (global tokint) Removed.
5980         (global toklongstr) Removed.
5981         (C* defines) Removed.
5982         (static tbl[]) Removed.
5983         (static id[]) Removed.
5984         (static une[]) Removed.
5985         (discard_line) Renamed lex_discard_line().
5986         (get_entire_line) Renamed lex_entire_line().
5987         (get_rest_of_line) Renamed lex_rest_of_line().
5988         (get_dotted_rest_of_line) Merged into lex_rest_of_line().
5989         (make_hexit) Removed.
5990         (syntax_error) Renamed lex_error().  Return value removed.
5991         (get_token_representation) Renamed lex_token_representation().
5992         (putback) Renamed lex_put_back().
5993         (putfwd) Renamed lex_put_forward().
5994         (convert_negative_to_dash) Renamed lex_negative_to_dash().
5995         (set_prog) Renamed lex_set_prog().
5996         (init_lex) Renamed lex_init().
5997         (reset_eof) Renamed lex_reset_eof().
5998         (lookahead) Renamed lex_look_ahead().
5999         (check_id) Rewritten.
6000         (yylex) Renamed lex_get(), rewritten.
6001         (lex_end_of_command) New function.  Many commands were rephrased
6002         using this.
6003         (lex_integer_p) New function.  Replaces compare of tokint against
6004         NOT_LONG.
6005         (lex_integer) New function.  Replaces tokint.
6006         (match_tok) Renamed lex_match().
6007         (match_id) Renamed lex_match_id().
6008         (match_int) Renamed lex_match_int().
6009         (force_match_id) Renamed lex_force_match_id(), added return value.
6010         (force_match) Renamed lex_force_match(), added return value.
6011         (force_string) Renamed lex_force_string(), added return value.
6012         (force_int) Renamed lex_force_int(), added return value.
6013         (lex_id_match_len) New function.
6014         (id_match) Renamed lex_id_match(), rewritten.
6015         (get_line) Renamed lex_get_line().
6016         (preprocess_line) Renamed lex_preprocess_line().
6017         (tokname) Renamed lex_token_name().
6018         (bin_value_func) Removed.
6019         (oct_value_func) Removed.
6020         (hex_value_func) Removed.
6021         (unexpected_eof) New function.
6022         (convert_numeric_string_to_char_string) New function.
6023         (parse_string) Rewritten, signature changed.
6024         (add_tokstr_char) Removed.
6025         (add_tokstr_unsigned) Removed.
6026         (add_tokstr_string) Removed.
6027         (parse_tagged_quote) Removed.
6028         (skip_comment) Renamed lex_skip_comment().
6029
6030         * lexer.h: All references updated.
6031         (macro is_id1) Renamed CHAR_IS_ID1.
6032         (macro is_idn) Renamed CHAR_IS_IDN.
6033         (token names ID, NUM, STRING, STOP, ... WITH, EXP) Renamed with
6034         prefix T_: T_ID, T_NUM, T_STRING, T_STOP, ... T_WITH, T_EXP.
6035         (macro get_token) Removed.
6036         (macro id_match) Removed.
6037         (macro force_match_id) Removed.
6038         (macro force_match) Removed.
6039         (macro force_string) Removed.
6040         (macro force_int) Removed.
6041         (macro force_num) Removed.
6042         (macro force_id) Removed.
6043
6044         * lexerP.h: Removed.
6045
6046         * list.q: Migrated to new q2c format.
6047         (write_line) Deal with struct len_string.
6048         (write_varname) Ditto.
6049         (write_fallback_headers) Ditto.
6050
6051         * magic.c: New file, incorporating the following global variables
6052         previously in other files: endian, second_lowest_value.  And both
6053         of those are conditional on #define's.
6054
6055         * magic.h: New file, incorporating the following global variable
6056         declarations: endian, second_lowest_value, and the following macro
6057         declarations: NOT_DOUBLE, NOT_LONG, NOT_INT.
6058
6059         * main.c: Added declarations of pgmname, finished, curdate,
6060         start_interactive.
6061         (main) Call new parse_script() function.
6062         (parse_script) New function.
6063         (execute_command) New function.
6064         (dump_token) Removed.
6065         (handle_error) New function.
6066
6067         * matrix.c: New file.
6068
6069         * matrix.h: New file.
6070
6071         * matrix-data.c: Migrated from arenas to pools.
6072         (mget_token) Change from parse_string_as_format() to data_in().
6073
6074         * means.q: Migrate to new q2c.
6075         (custom_tables) Renamed mns_custom_tables().
6076         (custom_crossbreak) Renamed mns_custom_crossbreak().
6077         (custom_variables) Renamed mns_custom_variables().
6078
6079         * mis-val.c: (static var width) Changed from `int' to `size_t'.
6080         (parse_varnames) Prototype.
6081         (parse_numeric) Rephrasings.
6082         (parse_alpha) Adapt to new struct string tokstr.
6083
6084         * misc.c: (intlog10) Rewritten.
6085         (spacing) Removed.
6086         (ansi_rand) Renamed real_rand(), moved into random.c.
6087         (ansi_srand) Renamed real_srand(), moved into random.c.
6088         (setup_randomize) Moved to random.c.
6089         (rand_uniform) Ditto.
6090         (rand_normal) Ditto.
6091         (rand_simple) Ditto.
6092         (get_config_line) Removed.
6093         (reverse) Removed (dead code).
6094
6095         * misc.h: (macro SET_BIT) Moved to bitvector.h.
6096         (macro CLEAR_BIT) Ditto.
6097         (macro TEST_BIT) Ditto.
6098         (macro SET_BIT_TO) Ditto.
6099         (macro BIT_INDEX) Ditto.
6100
6101         * output.c: (outp_read_devices) Move to err_push_file_locator()
6102         from push_cust().  Use struct string.
6103         (expand_op_tokstr) Removed.
6104         (static var op_tokstr) Changed to struct string.
6105         (static var op_tokstr_size) Removed.
6106         (tokener) Rephrasings.  Use struct string.
6107         (parse_options) Use struct string.
6108         (destroy_driver) Fix assertion.
6109         (outp_get_paper_size) Move to err_push_file_locator().
6110         [0] Removed dead code.
6111         (outp_string_width) Move to len_string.
6112
6113         * output.h: Comment fixes.
6114         (TAG_* enum series) Removed.
6115         (struct outp_value) Removed.
6116         (enum OUTP_T_FANCY) Removed.
6117         (struct outp_text) `s' changed from a_string to len_string.
6118         (struct outp_class) `option' change arg 3 from outp_value to
6119         struct string.
6120
6121         * pfm-read.c: (corrupt_msg) Rewritten.
6122
6123         * pfm-write.c: (bufwrite) Fix assertion.
6124
6125         * pool.c: New file, reference version.
6126
6127         * pool.h: New file, reference version.
6128
6129         * postscript.c: (ps_font_sizes) Fix assertion.
6130         (ps_option) Change arg 3 from outp_value to struct string.
6131         Adapt to struct string.
6132         (macro output_line) Removed.
6133         (macro add_string) Removed.
6134         (output_encodings) Adapted to struct string.  Moved to
6135         err_push_file_locator().
6136         (find_encoding_file) Fix assertion.
6137         (read_ps_encodings) Move to err_push_file_locator().
6138         (postopen) Use getl_location() instead of curfn.
6139         (out_text_plain) Move to len_string.
6140         (text) Ditto.  Remove rich text support.
6141
6142         * print.c: (cmd_print) Remove now-unneeded resource cleanup code.
6143         (cmd_print_eject) Ditto.
6144         (cmd_write) Ditto.
6145         (internal_cmd_print) Now cleans up after itself.  Uses
6146         fh_parse_file_handle() now.
6147         (cmd_print_space) Use PXP_NUMERIC to type-check.
6148
6149         * q2c.c: Overhauled.  Removed _("") i18n support.  All references
6150         updated.  All output functions updated to handle structures rather
6151         than local or static variables.  Adapt to new PSPP lex_*()
6152         functions.
6153         (macro _) Removed.
6154         (macro N_) Removed.
6155         (macro MAX_N_SBC) Removed.
6156         (global bare) Removed.
6157         (enum STRING) Renamed T_STRING.
6158         (enum ID) Renamed T_ID.
6159         (get_buffer) Buffer size increased.
6160         (strlower) Renamed st_lower(), rephrased.
6161         (strupper) Renamed st_upper(), rephrased.
6162         (skip_ws) New function.
6163         (get_line) Don't special-case any types of lines (like those
6164         beginning with ! or $, for instance).
6165         (get_token) Renamed lex_get().  Rephrased.
6166         (static var `prefix') New.
6167         (parse) New function.
6168         (parse_setting) Minor rephrasing.
6169         (dump_specifier_vars) Ditto.
6170         (make_identifier) Put null terminator on identifier, duh.
6171         (dump_vars) Renamed dump_declarations().  Never indent.  Never
6172         static.  Output changed entirely.
6173         (dump_specifier_init) Rephrase.
6174         (dump_vars_init) No index variable needed.  Other modifications.
6175         (dump_parser) Don't parse command name.  Do dump functions instead
6176         of just code fragments.
6177         (dump_free) Dump function instead of code fragment.
6178         (recognize_directive) New function.
6179         (main) Use recognize_directive().  Don't rely on magic $ line
6180         beginning: instead, parse comments.  Update list of headers.
6181
6182         * random.c: New file, containing the following functions:
6183         real_rand(), real_srand(), setup_randomize, shuffle, rand_uniform,
6184         rand_normal, rand_simple.
6185
6186         * random.h: New file.
6187
6188         * recode.c: (cmd_recode) Merge internal_cmd_recode() into this
6189         function.  `max_src_width', `max_dst_width' changed to size_t.
6190         (internal_cmd_recode) Removed.
6191         (parse_dest_spec) Merge similar cases.
6192         (parse_src_spec) Add assertion.
6193
6194         * repeat.c: (recognize_keyword) New function.
6195         (internal_cmd_do_repeat) Parse and handle PRINT keyword on END
6196         REPEAT.  Improve recognition of END REPEAT (use
6197         recognize_keyword()).  Move from curfn to getl_location().  Use
6198         struct string.
6199                 
6200         (perform_DO_REPEAT_substitutions) Adapt to struct string.
6201
6202         * set.q: Adapt to new q2c.
6203         (cmd_set) Range-check some values better.
6204         (custom_blanks) Renamed stc_custom_blanks().
6205         (custom_length) Renamed stc_custom_length().
6206         (custom_results) Renamed stc_custom_results().
6207         (custom_seed) Renamed stc_custom_seed().
6208         (custom_width) Renamed stc_custom_width().
6209         (custom_format) Renamed stc_custom_format().
6210         (custom_journal) Renamed stc_custom_journal().
6211         (custom_color) Renamed stc_custom_color().
6212         (custom_listing) Renamed stc_custom_listing().
6213         (custom_disk) Renamed stc_custom_disk().
6214         (custom_log) Renamed stc_custom_log().
6215         (custom_rcolor) Renamed stc_custom_rcolor().
6216         (custom_viewlength) Renamed stc_custom_viewlength().
6217         (custom_workdev) Renamed stc_custom_workdev().
6218
6219         * settings.h: Not necessary to include format.h any longer.
6220
6221         * sfm-read.h: (macro bswap_int32) Moved here from sfmP.h.
6222         (corrupt_msg) Rewritten.
6223
6224         * sort.c: Adapt to rewritten heap ADT.
6225
6226         * str.c: (aa_strcpy) Removed.
6227         (ab_strcpy) Removed.
6228         (ac_strcpy) Removed.
6229         (ba_strcpy) Removed.
6230         (bb_strcpy) Removed.
6231         (ca_strcpy) Removed.
6232         (aa_strdup) Removed.
6233         (aa_strdupcpy) Removed.
6234         (ba_strdup) Removed.
6235         (sa_strdup) Removed.
6236         (memrev) Renamed mm_reverse().
6237         (memrmem) Renamed mm_find_reverse().
6238         (cmp_str) Renamed st_compare_pad().
6239         (strmaxcpy) Removed.
6240         (strbarepadcpy) Renamed st_bare_pad_copy(), signature changed.
6241         (strbarepadlencpy) Renamed st_bare_pad_len_copy(), signature
6242         changed.
6243         (strpadcpy) Renamed st_pad_copy(), signature changed.
6244         (blpstrset) Removed.
6245         (ds_create) New function.
6246         (ds_init) New function.
6247         (ds_replace) New function.
6248         (ds_destroy) New function.
6249         (ds_clear) New function.
6250         (ds_extend) New function.
6251         (ds_shrink) New function.
6252         (ds_truncate) New function.
6253         (ds_length) New function.
6254         (ds_size) New function.
6255         (ds_value) New function.
6256         (ds_end) New function.
6257         (ds_concat) New function.
6258         (ds_concat_buffer) New function.
6259         (ds_printf) New function.
6260         (ds_putchar) New function.
6261         (ds_getline) New function.
6262         (ds_get_config_line) New function derived from the old
6263         misc.c:get_config_line().
6264         (ls_create) New function.
6265         (ls_create_buffer) New function.
6266         (ls_init) New function.
6267         (ls_shallow_copy) New function.
6268         (ls_destroy) New function.
6269         (ls_null) New function.
6270         (ls_null_p) New function.
6271         (ls_empty_p) New function.
6272         (ls_length) New function.
6273         (ls_value) New function.
6274         (ls_end) New function.
6275
6276         * str.h: Reformatted.
6277         (struct a_string) Removed.
6278         (struct b_string) Removed.
6279         (struct c_string) Removed.
6280         (struct len_string) New.
6281         (struct string) New.
6282         (macro as_streq) Removed.
6283         (macro bs_streq) Removed.
6284         (macro cs_streq) Removed.
6285         (macro sa_streq) Removed.
6286         (macro sb_streq) Removed.
6287         [__GNUC__] (inline function ds_putchar) New function.
6288         [__GNUC__] (inline function ds_length) New function.
6289         [__GNUC__] (inline function ds_value) New function.
6290         [__GNUC__] (inline function ds_end) New function.
6291
6292         * sysfile-info.c: (cmd_sysfile_info) Rephrased.
6293         (display_vectors) Fix missing i18n.
6294
6295         * t-test.q: Migrate to new q2c.
6296
6297         * tab.c: Migrate from arenas to pools.
6298         (tab_create) Use struct len_string.
6299         (tab_realloc) Ditto.
6300         (text_format) Ditto.
6301         (tab_joint_text) Ditto.
6302         (tab_natural_width) Remove rich text support.
6303         (tab_natural_height) Ditto.
6304         (tab_output_text) Handle TAT_FIX.
6305         (tab_raw) Change arg from a_string to len_string.
6306         (tabi_driver) Fix assertion.  Use struct len_string.
6307         (render_strip) Use struct len_string.  Remove rich text support.
6308         Add `const' qualifiers.
6309
6310         * tab.h: (enum TAB_RICH) Remove.
6311         (enums TAB_COL_NONE, TAB_COL_DONE) New.  Where appropriate,
6312         SOM_COL_* updated to read TAB_COL_*.
6313         (struct tab_table) Change arena to pool.  Change a_string to
6314         len_string.
6315
6316         * temporary.c: (restore_dictionary) Rewrite Checker code.
6317
6318         * var.h: (macros MAX_SHORT_STRING, MIN_LONG_STRING, SYSMIS,
6319         LOWEST, HIGHEST) Moved here from common.h.
6320         (typedef any_trns) Removed.  All references changed to `struct
6321         trns_header'.
6322
6323         * vars-atr.c: (force_create_variable) Fix assertion.
6324         (force_dup_variable) Fix assertion.
6325         
6326 Thu Jun  3 18:40:42 1999  Ben Pfaff  <blp@gnu.org>
6327
6328         Using alphanumeric variables in functions under AGGREGATE
6329         segfaulted.  Fixed.  Thanks to Dr. Dirk Melcher
6330         <BZN-mdksh@t-online.de> for reporting this bug.
6331         
6332         * aggregate.c: (parse_aggregate_functions) When setting the
6333         FSTRING bit, also allocate memory for the `string' member of
6334         agr_next.
6335         (free_aggregate_functions) Free iter->string.  Don't use the
6336         non-function bits when indexing the array of functions.
6337         [DEBUGGING] (debug_print) Don't use the non-function bits when
6338         indexing the array of functions.        
6339
6340 Sun May 30 00:00:54 1999  Ben Pfaff  <blp@gnu.org>
6341
6342         Under certain circumstances, the final case would be omitted from
6343         the results of an AGGREGATE operation.  Fixed.  Thanks to Dr. Dirk
6344         Melcher <BZN-mdksh@t-online.de> for reporting this bug.
6345         
6346         * aggregate.c (agr_00x_end_func): Increment number of cases in
6347         sink before writing case.  For streams that keep track of how many
6348         cases there are based on this value, this means that the last case
6349         will be read in on the next stream read.
6350
6351 Sat May 29 22:03:31 1999  Ben Pfaff  <blp@gnu.org>
6352
6353         Undefined behavior was invoked by referencing a freed pointer.
6354         
6355         * vfm.c (memory_stream_write): Free pointer *after* checking for
6356         non-null status.
6357
6358 Sat May 29 22:02:22 1999  Ben Pfaff  <blp@gnu.org>
6359
6360         A wrong record size was displayed when paging the active file to
6361         disk.
6362         
6363         * vfm.c: (memory_stream_write) Fix off-by-one error.
6364
6365 Sat May 29 21:50:26 1999  Ben Pfaff  <blp@gnu.org>
6366
6367         Not having enough temporary space for sorting caused a core dump.
6368         Fixed.
6369         
6370         * sort.c: (allocate_cases) Initialize i.
6371
6372 Sat May 29 21:40:54 1999  Ben Pfaff  <blp@gnu.org>
6373
6374         Syntax errors in function descriptions on AGGREGATE caused core
6375         dumps.  Fixed.
6376         
6377         * aggregate.c (cmd_aggregate): Don't free agr_dict after calling
6378         free_aggregate_functions(), since that function already frees
6379         agr_dict.
6380         
6381 Sat May 29 21:06:10 1999  Ben Pfaff  <blp@gnu.org>
6382
6383         A null pointer was dereferenced, causing a core dump, when
6384         PERCENTILES was specified on FREQUENCIES.  This fixes the problem,
6385         but PSPP still doesn't calculate percentiles.  Thanks to Regnor
6386         Jernsletten <rjernsle@eunet.no> for reporting this problem.
6387         
6388         * arena.c: (arena_malloc) If the arena hasn't been initialized
6389         already, initialize it.
6390
6391 Sat May 29 20:47:29 1999  Ben Pfaff  <blp@gnu.org>
6392
6393         * Makefile.cygwin: New file supplied by Hankin <hankin@dunno.com>
6394         for compilation with Cygnus Windows B20.  Not used by other
6395         systems.
6396
6397 Sat May 29 20:36:04 1999  Ben Pfaff  <blp@gnu.org>
6398
6399         SORT always sorted in ascending order.  Fixed.  Thanks to Dr. Dirk
6400         Melcher <BZN-mdksh@t-online.de> for reporting this bug.
6401
6402         * sort.c: (compare_case_lists) Reverse sense of comparison if
6403         sorting in descending order.
6404         (compare_record) Ditto.
6405
6406 Tue Mar  9 13:18:54 1999  Ben Pfaff  <blp@gnu.org>
6407
6408         SPLIT FILE with a string variable caused a core dump.  Fixed.
6409
6410         * vfm.c: If the variable is a string then make a temporary value
6411         struct pointing to it.  The underlying problem is a lot bigger
6412         than this (see TODO) but this is a stopgap for the simple case at
6413         least.
6414         
6415 Tue Mar  9 13:15:53 1999  Ben Pfaff  <blp@gnu.org>
6416
6417         Nested INCLUDEs didn't work.  Fixed.
6418
6419         * getline.c: (getl_include) Set first_line to NULL in allocated
6420         structure.
6421
6422 Tue Mar  9 13:13:46 1999  Ben Pfaff  <blp@gnu.org>
6423
6424         The MATCH FILES procedure set the values of variables not present
6425         to 0.  It should have been SYSMIS.  This is now fixed.
6426
6427         * get.c: (mtf_delete_file_in_place) Replace 0.0 by SYSMIS.
6428
6429 Tue Mar  9 12:52:23 1999  Ben Pfaff  <blp@gnu.org>
6430
6431         The REMARK command was too aggressive about skipping lines.  It
6432         didn't like being the last command in a file.
6433
6434         * command.c: (cmd_remark) Call get_entire_line() instead of
6435         get_line().
6436
6437 Tue Mar  9 12:48:05 1999  Ben Pfaff  <blp@gnu.org>
6438
6439         Comment parsing wasn't consistent with the rest of the code in its
6440         idea of where one command ends and another starts.  This meant
6441         that sometimes commands would be mysteriously ignored.  Thanks to
6442         Dr. Dirk Melcher <BZN-mdksh@t-online.de> for reporting this bug.
6443          
6444         * command.c: (parse_cmd) Hand off comment parsing to new function
6445         skip_comment() in lexer.c.
6446         * lexer.c: (skip_comment) New function.
6447
6448 Wed Jan 20 20:22:07 1999  Ben Pfaff  <blp@gnu.org>
6449
6450         The TABLE subcommand on MATCH FILES worked only erratically at
6451         best.  This fixes it.  Thanks to Dr. Dirk Melcher
6452         <BZN-mdksh@t-online.de> for reporting this bug.
6453
6454         * get.c: (mtf_compare_BY_values) When comparing string values, a
6455         difference of 1 is still a difference :-)
6456         (mtf_processing) Inverted TABLE reading logic fixed.  Also don't
6457         advance TABLE files automatically when matched.  Comment fixes.
6458
6459 Tue Jan 19 22:32:31 1999  Ben Pfaff  <blp@gnu.org>
6460
6461         VARIABLE LABELS rejected a slash before the first variable
6462         specification, contradicting the documentation.  Thanks to Walter
6463         M. Gray <graywm@northernc.on.ca> for reporting this bug.
6464
6465         * var-labs.c: (cmd_variable_labels) Ignore a leading slash in
6466         command specification.
6467
6468 Tue Jan 19 22:29:54 1999  Ben Pfaff  <blp@gnu.org>
6469
6470         Because of an incorrect optimization in memory allocation,
6471         CROSSTABS sometimes segfaulted when asked to output multiple
6472         tables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
6473         reporting this bug.
6474
6475         * crosstabs.q: (postcalc) New variables maxcols, maxcells, which
6476         are passed to output_pivot_table() for its use.
6477         (output_pivot_table) Instead of assuming the number of columns is
6478         constant, keep track with maxcols.  In general mode, use maxcells
6479         to determine whether more matrix cells need to be allocated.    
6480
6481 Tue Jan 19 22:27:46 1999  Ben Pfaff  <blp@gnu.org>
6482
6483         CROSSTABS didn't display value labels for column and row
6484         variables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
6485         reporting this bug.
6486
6487         * crosstabs.q: (table_value_missing) If the specified value has a
6488         value label for this variable, then show it instead of the raw
6489         value.
6490         (display_dimensions) Delegate display of value_labels to
6491         table_value_missing.
6492
6493 Mon Jan 18 20:04:06 1999  Ben Pfaff  <blp@gnu.org>
6494
6495         WRITE didn't write line ends.  Fixed.  Thanks to Dr. Dirk Melcher
6496         <BZN-mdksh@t-online.de> for reporting this bug.
6497
6498         * print.c: (print_trns_proc) Write (CR/)LF if PRINT is used _or_
6499         if the file isn't declared as binary.
6500
6501 Mon Jan 18 19:56:45 1999  Ben Pfaff  <blp@gnu.org>
6502
6503         MATCH FILES corrupted memory and dumped core on some syntax
6504         errors.  Fixed.
6505
6506         * get.c: (cmd_match_files) Set file->handle to NULL before
6507         jumping to lossage.
6508         (mtf_free_file) Don't free a null dictionary.   
6509
6510 Mon Jan 18 19:27:57 1999  Ben Pfaff  <blp@gnu.org>
6511
6512         MATCH FILES should set numeric values not available to the
6513         system-missing value, not to 0.  Thanks to Dr. Dirk Melcher
6514         <BZN-mdksh@t-online.de> for reporting this bug.
6515
6516         * get.c: (mtf_processing) Set unused records to system-missing,
6517         not 0.
6518
6519 Mon Jan 18 15:06:46 1999  Ben Pfaff  <blp@gnu.org>
6520
6521         KEEP didn't work properly on the SAVE procedure.  Fixed.  Thanks
6522         to Ralf Geschke <ralf@kuerbis.org> for reporting this bug.
6523
6524         * temporary.c: (save_dictionary) Initialize var_by_name AVL tree
6525         in newly created dictionary, and add each copied variable to the
6526         tree.
6527  
6528 Mon Jan 18 15:04:48 1999  Ben Pfaff  <blp@gnu.org>
6529
6530         Memory leak fix.
6531         
6532         * get.c: (trim_dictionary) Free variable list for KEEP after
6533         finishing with it.
6534
6535 Mon Jan 18 12:57:36 1999  Ben Pfaff  <blp@gnu.org>
6536
6537         Some systems didn't like the way open_file was coded.  Thanks to
6538         Hankin <hankin@rogue.consultco.com> for pointing this out.
6539
6540         * filename.c: (open_file) Don't try to store stdin, stdout,
6541         stderr as part of an array, because that doesn't always work.
6542
6543 Mon Jan 18 12:53:27 1999  Ben Pfaff  <blp@gnu.org>
6544
6545         The SAVE procedure didn't save long string variables properly.
6546         Fixed by this patch.  Thanks to Hankin
6547         <hankin@rogue.consultco.com> for this patch.
6548         
6549         * sfm-write.c: (write_variable) Fix off-by-one error in writing
6550         out variable pad records.
6551
6552 Tue Jan  5 14:29:27 1999  Ben Pfaff  <blp@gnu.org>
6553
6554         Previously, if PRINT SPACE were given a negative argument, it
6555         would report an error, then spin in an (almost) infinite loop.
6556         This fixes that behavior.
6557
6558         * print.c: (print_space_trns_proc) After reporting a negative
6559         argument, set number of lines to print to 1.
6560
6561 Tue Jan  5 13:59:55 1999  Ben Pfaff  <blp@gnu.org>
6562
6563         SPSS 8.0 outputs some new record types in its system files, and it
6564         allows longer value labels.  Accept these system files.
6565
6566         * sfm-read.c: (sfm_read_dictionary) Ignore record type 7 subtype
6567         11 emitted by SPSS 8.0.
6568         
6569 Tue Jan  5 13:55:50 1999  Ben Pfaff  <blp@gnu.org>
6570
6571         The LIST procedure was too conservative in allocating space for
6572         buffers, which caused a bug that only showed up with very long
6573         output variables.  Thanks to Hankin <hankin@dunno.com> for this
6574         bug report.
6575
6576         * list.q: (determine_layout) Allocate 1022 bytes instead of 256.
6577
6578 Tue Jan  5 13:34:34 1999  Ben Pfaff  <blp@gnu.org>
6579
6580         Typo meant string format specifiers weren't checked properly.  I
6581         think that Hankin <hankin@dunno.com> sent me this report, but I'm
6582         willing to be corrected on this point.
6583  
6584         * format.c: (check_string_specifier) Fix obvious typo.  
6585
6586 Tue Jan  5 12:50:42 1999  Ben Pfaff  <blp@gnu.org>
6587
6588         Using $CASENUM in an expression didn't work.  Here's a fix.
6589         Thanks to Dirk Melcher <BZN-mdksh@t-online.de> for reporting this
6590         bug.
6591          
6592         * expr-evl.c: (evaluate_expression) Add OP_CASENUM case.
6593
6594         * expr-opt.c: (dump_node) OP_CASENUM is acceptable.
6595
6596 Tue Jan  5 12:47:48 1999  Ben Pfaff  <blp@gnu.org>
6597
6598         The changes in 0.2.1 to fix DATA LIST FREE parsing broke some
6599         other behavior, *sigh*.  This patch hopefully fixes that.  This
6600         time I've actually tested it.
6601
6602         Thanks to Hankin <hankin@dunno.com> for reporting this bug.
6603
6604         * data-list.c: (read_from_data_list_free,
6605         read_from_data_list_list) Call parse_string_as_format() directly
6606         without mucking around with the field width.
6607
6608 Tue Jan  5 12:31:19 1999  Ben Pfaff  <blp@gnu.org>
6609
6610         Occasionally, you may encounter a script that wants to be
6611         interpreted in interactive mode.  Make -i emulate this behavior to
6612         allow such scripts to be executed with PSPP.
6613
6614         Thanks to Hankin <hankin@dunno.com> for reporting this behavior.
6615
6616         * cmdline.c: (pre_syntax_message[]) Update -i description.
6617
6618         * lexer.c: (preprocess_line) When getl_interactive is 2 (i.e.,
6619         when -i is given on the command line) don't treat unindented lines
6620         as starting a new command.
6621
6622 Tue Jan  5 12:30:10 1999  Ben Pfaff  <blp@gnu.org>
6623
6624         In conjunction with egcs 1.1.1, Checker emits some bogus warnings,
6625         mostly caused by local initialized aggregates.  After egcs is
6626         fixed upstream these can be removed, but for now they're not a big
6627         deal.
6628         
6629         * ascii.c: (ascii_postopen_driver) Checker chokes on local
6630         initialized arrays.  Avoid this.
6631
6632         * sfm-write.c: (sfm_write_dictionary) Don't use a local
6633         initialized struct.
6634
6635 Tue Jan  5 12:07:24 1999  Ben Pfaff  <blp@gnu.org>
6636
6637         egcs 1.1.1 has some new warnings relative to gcc 2.8.1, which the
6638         following changes avoid.  Currently I compile sources with egcs
6639         1.1.1 and gcc 2.7.2.3 before sending them out.
6640
6641         * apply-dict.c: (apply_dict) Use new avl_traverser_init() macro.
6642         
6643         * ascii.c: (option_tab[]) Initialize all struct members.
6644
6645         * avl.h: (avl_traverser_init) New macro.
6646         
6647         * command.c: (DEFCMD, UNIMPL macros, cmd_table[]) Initialize all
6648         struct members.
6649
6650         * crosstabs.q: (enum_var_values) Use new hsh_iterator_init()
6651         macro.
6652
6653         * hash.c: Comment fix.
6654
6655         * hash.h: (hsh_iterator_init) New macro.
6656
6657         * html.c: (option_tab[]) Initialize all struct members.
6658
6659         * pfm-write.c: (write_value_labels) Use new avl_traverser_init()
6660         macro.
6661
6662         * postscript.c: (option_tab[]) Initialize all struct members.
6663         (output_encodings, preclose, dump_lines) Use new
6664         hsh_iterator_init() macro.
6665
6666         * sfm-write.c: (write_value_labels) Use new avl_traverser_init()
6667         macro.
6668
6669         * sysfile-info.c: (describe_variable) Use new avl_traverser_init()
6670         macro.
6671
6672 Thu Nov 19 12:32:45 1998  Ben Pfaff  <blp@gnu.org>
6673
6674         * data-in.c: Examined each of the parsing functions to make sure
6675         that they wouldn't dump core if they were passed a string of the
6676         wrong length, since now the DATA LIST FREE/LIST routines don't
6677         check for field width before passing it to the data parser.
6678         (parse_RBHEX, parse_AHEX) Reject odd length input.
6679         (parse_string_as_format) Reject input that's too short or too
6680         long.
6681
6682         * data-list.c: Before, the DATA LIST FREE/LIST routines would pad
6683         a field to its entire declared output width then pass it to the
6684         data-in parsing routines.  This contradicted the documented
6685         behavior.  This is fixed in these changes.  Thanks to Mark H. Wood
6686         <mwood@IUPUI.Edu>.  In addition, this fixes a few more details of
6687         free-format parsing that differed from SPSS.
6688         (cut_field) Commas and spaces are treated identically.  Returns
6689         the proper column instead of a fixed 1 value.
6690         (parse_field) Removed.
6691         (read_from_data_list_free, read_from_data_list_list) Call
6692         parse_string_as_format directly instead of parse_field.
6693
6694         * heap.c: (heap_delete) Stylistic fixes.
6695
6696 Sun Aug  9 11:12:13 1998  Ben Pfaff  <blp@gnu.org>
6697
6698         * loop.c: (loop_2_trns_proc) Formatting fix.
6699
6700         * sel-if.c: (cmd_filter) Set FILTER_before_TEMPORARY.
6701
6702         * var.h: (glob var FILTER_before_TEMPORARY) New global var.
6703
6704         * vfm.c: (macro FILTERED) New.
6705         (static var filter_var) New.
6706         (process_active_file_write_case) Use FILTERED.
6707         (setup_filter) Set filter_var.
6708         (close_active_file) Delete the filter if not
6709         FILTER_before_TEMPORARY.
6710         (procedure_write_case) Use FILTERED.
6711
6712 Sat Aug  8 00:20:14 1998  Ben Pfaff  <blp@gnu.org>
6713
6714         * crosstabs.q: Changed /PIVOT={ON,OFF} to /FORMAT={PIVOT,NOPIVOT}.
6715
6716         * data-in.c: (parse_day_count) Message fix.
6717         (parse_month) Style fix.
6718
6719         * data-list.c: (struct data_list_pgm) New member eof.
6720         (cmd_data_list) Init eof to 0.
6721         (do_reading) Implement the /END subcommand and read-past-eof
6722         checking.
6723
6724         * do-if.c: Include stdio.h when debugging.
6725         (cmd_else_if) Make sure the command is .-terminated.
6726
6727         * glob.c: (init_glob) Capitalize the command prompt.
6728
6729         * inpt-pgm.c: (end_case_trns_proc) Debugging message.
6730         (end_file_trns_proc) Debugging message.
6731
6732         * loop.c: (internal_cmd_loop) Make it work when there's no loop
6733         index!
6734         (loop_2_trns_proc) Enable MXLOOPS (why was this disabled?)
6735
6736         * main.c: (dump_token) Make kwtab[] const.
6737
6738         * set.q: Spelling, comment fixes.
6739
6740         * sysfile-info.c: (cmd_display) DISPLAY VECTORS not DISPLAY
6741         VECTOR.
6742
6743         * vars-prs.c: (fill_all_vars) Style fix.
6744
6745         * vfm.c: (index_to_varname) Return const.
6746
6747 Tue Aug  4 23:49:23 1998  Ben Pfaff  <blp@gnu.org>
6748
6749         * Changes in many source files for partial -ansi -pedantic and
6750         no-debugging compliance: Remove trailing common in enum
6751         declarations; add `unused' attributes; insert some appropriate
6752         casts.
6753
6754         * cmdline.c: (parse_command_line) Add new --testing-mode flag.
6755
6756         * command.c: (shell) Make static.
6757         (run_command) Make static.
6758
6759         * data-list.c: (dump_fixed_table) Remove use of local_strdup().
6760
6761         * dfm.c: (cmd_begin_data) I18n fix.
6762
6763         * error.c: (verbose_msg) Define if __STRICT_ANSI__.
6764
6765         * error.h: (macro verbose_msg) Define if __STRICT_ANSI__.
6766
6767         * expr-opt.c: (evaluate_tree) Don't initialize local arrays if
6768         __STRICT_ANSI__.
6769
6770         * file-handle.q: Don't prepend the source file directory name to
6771         the data file name.  (Ongoing issue.)
6772         (prepend_current_directory) Comment out.
6773         (internal_cmd_file_handle) Don't call prepend_current_directory().
6774         (fh_get_handle_by_filename) Ditto.
6775
6776         * filename.c: Append zero byte to readlink() return value.
6777
6778         * getline.c: (getl_read_line) I18n fix.
6779
6780         * lexer.h: Don't use gcc features if __STRICT_ANSI__.
6781
6782         * misc.h: Don't use gcc features if __STRICT_ANSI__.
6783
6784         * pfm-write.c: (bufwrite) Don't try to increment a void * pointer
6785         directly.
6786
6787         * postscript.c: (output_encodings) Don't use local_strdup().
6788         (postopen) Ditto.
6789
6790         * print.c: Don't use gcc features if __STRICT_ANSI__.
6791
6792         * q2c.c: (dump_vars) Don't put a , at the end of the last enum.
6793
6794         * recode.c: (parse_src_spec) Fully brace nested if's.
6795
6796         * set.q: (global var set_testing_mode) New var.
6797
6798 Wed Jul 29 22:01:44 1998  Ben Pfaff  <blp@gnu.org>
6799
6800         * ascii.c: Add some more `unused' attributes that only come into
6801         play when NDEBUG is defined.
6802         (ascii_close_page) Set s_len when reallocating s.
6803         
6804         * crosstabs.q: (delete_missing) New function.
6805         (output_pivot_table) Call delete_missing() if /MISSING=REPORT.
6806         (make_summary_table) Create summary table reallocable.
6807
6808         * postscript.c: Add more `unused' attributes as above.
6809
6810         * tab.c: (tab_create) [GLOBAL_DEBUGGING] Set reallocable member.
6811         (tab_realloc) [GLOBAL_DEBUGGING] Assert that table is reallocable.
6812          
6813         * tab.h: (struct tab_table) [GLOBAL_DEBUGGING] New `reallocable'
6814         member.
6815
6816         * var.h: (macro force_dup_variable) [!GLOBAL_DEBUGGING] Remove
6817         gratuitous space between parameter definition.
6818
6819         * vars-atr.c: Changed some assert(0)'s to abort()'s to prevent
6820         complaints about running off the end of functions with NDEBUG
6821         enabled.
6822
6823 Sun Jul  5 00:17:25 1998  Ben Pfaff  <blp@gnu.org>
6824
6825         * Several source files: Removed some PORTME notes when reflection
6826         revealed that ANSI forbids that sort of breakage.  Also, added
6827         lots of `unused' qualifiers here and there.
6828
6829         * aggregate.c: (accumulate_aggregate_info) Remove local var
6830         weighting that turned out not to be used.
6831
6832         * avl.c: Update to version 1.1.0.  Add unused specifier.
6833         (avl_destroy) Initialize ab to 0.  Comment fixes.  Cast return
6834         value to void *.
6835         (avl_probe) Replace some instances of 1 with +1 where appropriate.
6836         (avl_find) Cast return value to void *.
6837         (avl_delete) q doesn't need to be initialized at the beginning of
6838         the function.  Replace some instances of 1 with +1.
6839         (force_avl_delete) Renamed avl_force_delete, all references changed.
6840         (compare_ints) `param' marked unused.
6841         (print_int) `param' marked unused.
6842         (recurse_tree) Replace some instances of 1 with +1.
6843
6844         * avl.h: Update to version 1.1.0.  Only declares avl function
6845         types if not already declared.
6846         (AVL_MAX_HEIGHT) Only define if not already defined.
6847         (struct avl_node) New unused member char pad[2].
6848         [GLOBAL_DEBUGGING] Change conditionalization to NDEBUG instead.
6849         (force_avl_insert) Renamed avl_force_insert.
6850         (force_avl_delete) Renamed avl_force_delete.
6851
6852         * crosstabs.q: (struct table_entry) Put `freq' into a union with
6853         new member `data'.
6854         (struct crosstab) Add new member `ofs'.
6855         (glob var int_tab) Removed.
6856         (custom_tables) In integer mode, assign v[i] properly through the
6857         indirect var_dict.
6858         (custom_variables) Now p.crs.max == max + 1.
6859         [DEBUGGING] (debug_print) p.crs.min and p.crs.max are now ints.
6860         (precalc) Implement integer mode.
6861         (calc_integer) Implement integer mode.
6862         (compare_table_entry) Remove unused local variable `comparing'.
6863         (make_summary_table) Implement integer mode.
6864         (macro ns_rows) Implemented as static variable now.
6865         (several variables) Made static, from global.
6866         (output_pivot_table) Use table_value_missing() for column heads.
6867         Remove several unused local variables.  Implement integer mode
6868         table summing.  Count up ns_rows.
6869         (crosstabs_dim) Make columns wider when /MISSING=REPORT requested.
6870         (find_pivot_extent) Moved into find_pivot_extent_general; now just
6871         calls that function or find_pivot_extent_integer.
6872         (find_pivot_extent_integer) New function.
6873         (enum_var_values) Implemented for integer mode.
6874         (table_value_missing) New function.
6875         (display_dimensions) Call table_value_missing() for heads.
6876         (float_M_suffix) New function.
6877         (display_crosstabulation) Call table_value_missing() for row
6878         heads.  Handle missing values in /MISSING=REPORT mode.
6879         (calc_fisher) Remove unused var N.
6880         (calc_r) Remove unused var fact.
6881
6882         * data-list.c: (dump_fixed_table) Fix table dimensioning.
6883         (read_one_set_of_repetitions) Remove unused vars var_spec, column.
6884
6885         * data-out.c: (insert_commas) Remove unused var cp.
6886         (convert_CCx) Remove unused vars save_set_decimal,
6887         save_set_grouping.
6888
6889         * descript.q: (dump_z_table) Fix table dimensioning.
6890         (pre_calc) Remove unused var j.
6891         (display) Remove unused vars title, s.  Fix table dimensioning.
6892
6893         * expr-evl.c: Comment fixes.
6894
6895         * frequencies.q: (full_dim) New function.
6896         (dump_full) Fix table dimensioning.
6897         (condensed_dim) New function.
6898         (dump_condensed) Fix table dimensioning.
6899
6900         * get.c: (cmd_match_files) Remove unused var n_val.  Remove unused
6901         label winnage.
6902
6903         * html.c: (html_close_drive) Remove unused var i.
6904         (postopen) Remove unused vars title, curfn_len, cp.
6905         (preclose) Remove unused vars this, x.
6906
6907         * lexer.c: Comment fixes.
6908
6909         * matrix-data.c: (cmd_matrix_data) Remove unused var index.
6910
6911         * means.q: (custom_tables) Remove unused var m_dim.
6912
6913         * mis-val.c: Format fix.
6914
6915         * modify-vars.c: (cmd_modify_vars) Remove unused var new_dict.
6916
6917         * output.c: (outp_get_paper_size) Remove unused var cp.
6918
6919         * pfm-read.c: (read_float) Remove unused var save, unused label
6920         underflow.
6921         (read_variables) Remove unused vars cp, j.
6922         (read_value_label) Remove unused var j.
6923
6924         * pfm-write.c: (bufwrite) Remove unused var i.
6925
6926         * postscript.c: (ps_postopen_drive) Remove unused vars dev_info,
6927         fn.
6928         (output_encodings) Remove unused vars char_cp, n_output.
6929         (read_ps_encodings) Remove unused var ep.
6930         (postopen) Remove unused var title.
6931         (preclose) Remove unused var fp.
6932         (ps_open_page) Remove unused vars true, false, orientation,
6933         mirror_horz, mirror_vert, width, length.
6934         (ps_text_metrics) Remove unused var x.
6935
6936         * q2c.c: (find_symbol) Remove unused var y.
6937         (parse_setting) Remove unused parameter sbc, all references
6938         changed.
6939         (dump_parser) Remove unused var cp.
6940         (dump_free) Remove unused var i.
6941
6942         * set.q: (static vars args, n) Removed.
6943         (internal_cmd_gset) Removed.
6944
6945         * sfm-read.c: (sfm_read_dictionary) Removed unused var i.
6946         (read_machine_flt64_info) Removed unused var file_endian.
6947         (read_documents) Removed unused var i.
6948         (read_compressed_data) Removed unused parameter dict, all
6949         references changed.
6950
6951         * sfm-write.c: (bufwrite) Removed unused var i.
6952         (sfm_write_case) Removed unused var i.
6953
6954         * sort.c: (merge_once) Remove unused var t.
6955         (write_separate) #if 0 out as dead code.
6956
6957         * split-file.c: (cmd_split_file) Remove unused var i.
6958
6959         * sysfile-info.c: (sysfile_info_dim) New function.
6960         (cmd_sysfile_info) Fix table dimensioning.
6961         (variables_dim) New function.
6962         (display_variables) Fix table dimensioning.
6963         (describe_variable) Remove unused var prev_r.
6964
6965         * t-test.q: (z_postcalc) Removed.
6966         (pairs_calc) Remove unused var bad_weight.
6967         (postcalc) Remove unused vars dfn, dfd.
6968
6969         * tab.c: (tab_create) Set t->dim to NULL.
6970         (tab_dim) Make sure t->dim is NULL first.
6971         (tab_natural_width) Remove parameter `clamp'.
6972         (tab_value) Remove duplicate assertion for table.
6973         (tab_raw) New function.
6974         (nowrap_dim) New function.
6975         (wrap_dim) New function.
6976         (tab_output_text) Fix table dimensioning.
6977
6978         * tab.h: (tab_raw) New macro.
6979
6980         * val-labs.c: (get_label) Remove unused var type.
6981         (copy_value_labels) Remove unused var trav.
6982
6983         * var.h: (struct crosstab_proc) Completely changed.
6984
6985         * vars-prs.c: (parse_dict_variable) Remove unused var v.
6986
6987         * vfm.c: (open_active_file) Remove unused vars i, lp.
6988
6989         * weight.c: (weight_trns_proc) #if 0 out as dead code.
6990         
6991 Tue Jun  2 23:37:21 1998  Ben Pfaff  <blp@gnu.org>
6992
6993         * Makefile.am: Add apply-dict.c, flip.c.
6994
6995         * apply-dict.c: New file.
6996         
6997         * command.c: (struct command) Make cmd[] larger for CLEAR
6998         TRANSFORMATIONS command name.
6999         (parse_cmd) Make sure we're in a valid state before using it as an
7000         index.  Discard variables and reset state on invalid transitions.
7001         (cmd_clear_transformations) New function.
7002
7003         * command.def: Add APPLY DICTIONARY, CLEAR TRANSFORMATIONS, FLIP.
7004         Add unimplemented PRESERVE, RESTORE.
7005
7006         * file-handle.h: Include stddef.h.
7007
7008         * flip.c: New file.
7009         
7010         * pfm-read.c: (parse_value) Pad value label values with spaces,
7011         not nulls.
7012
7013         * sfm-read.c: (struct sfm_fhuser_ext) Add reference count.
7014         (sfm_close) Decrement reference count, make sure it's zero.
7015         (sfm_maybe_close) New function.
7016         (sfm_read_dictionary) Handle reference counts.
7017
7018         * vars-atr.c: (clear_default_dict) New function.
7019         (discard_variables) Use clear_default_dict().
7020
7021 Sun May 31 00:58:05 1998  Ben Pfaff  <blp@gnu.org>
7022
7023         * Makefile.am: Add pfm-write.c.
7024         (LDADD) Add the libgmp2 libraries.
7025
7026         * command.def: Define EXPORT.
7027
7028         * get.c: (cmd_export) New function.
7029         (export_write_case_func) New function.
7030
7031         * pfm-read.c: (static spss2ascii[]) Make it const.
7032
7033         * pfm-write.c: New file.
7034
7035         * sfm-write.c: Formatting, comment fixes.
7036
7037         * var.h: Comment fix.
7038
7039 Fri May 29 21:44:12 1998  Ben Pfaff  <blp@gnu.org>
7040
7041         * Makefile.am: Add pfm.h, pfm-read.c.
7042
7043         * command.def: IMPORT is now implemented.
7044
7045         * format.c: (glob var translate_fmt[]) New var.
7046
7047         * get.c: (enum GTSV_NONE) Renamed GTSV_OPT_NONE.
7048         (cmd_import) New function.
7049         (import_source_read) New function.
7050         (glob var import_source) New var.
7051
7052         * pfm-read.c: New file.
7053
7054         * pfm.h: New file.
7055         
7056         * sfm-read.c: (parse_format_spec) Local variable translate_fmt[]
7057         moved in format.c.
7058         (dump_dictionary) Disabled printing a couple of items.
7059
7060 Mon May 25 12:42:37 1998  Ben Pfaff  <blp@gnu.org>
7061
7062         * crosstabs.q: (postcalc) Call make_summary_table().
7063         (make_summary_table) New function.
7064         (insert_summary) New function.
7065         (display_dimensions) Remove some unnecessary arguments, all
7066         references changed.
7067         (output_pivot_table) Fix lots of problems with the risk table
7068         setup.
7069         (submit) Don't display an empty table.
7070         (display_risk) Fix order of arguments to calc_risk().
7071
7072         * glob.c: Always include assert.h and stdlib.h.
7073
7074         * output.h: (enum OUTP_T_JUST_FULL) Removed, all references
7075         removed.
7076
7077         * tab.c: (tab_create) Cosmetic changes.
7078
7079         * tab.h: (enum TAB_JUSTIFY) Removed, all references removed.
7080
7081 Sun May 24 22:39:23 1998  Ben Pfaff  <blp@gnu.org>
7082
7083         * tab.def: Removed.
7084
7085         * crosstabs.q: (output_pivot_table) Headers drawing and submission
7086         code simplified, moved into new function submit().
7087         (submit) New function.
7088         (crosstabs_dim) New function.
7089         (display_directional) Substitute variable names for %s where
7090         appropriate.
7091         (somers_d_v[], somers_d_ase[], somers_d_t[]) New static vars.
7092         (calc_symmetric) Initialize parameters only if non-NULL.
7093         Calculate Somers' d.
7094         (calc_directional) Calculate Somers' d (or copy it, really).
7095         Calculate eta.
7096
7097         * output.c: (outp_string_width) New function.
7098
7099         * postscript.c: (postopen) Calculate font widths based on the
7100         width of the zero '0' character, not the width of the space
7101         character.  Set paper-width and paper-length based on points, not
7102         device units.
7103         (ps_open_page) Fix page setup string for landscape mode.
7104
7105         * som.h: (struct som_dimension) Removed.
7106         (struct som_table_class) height, width members take int * not
7107         som_dimesion * now.
7108
7109         * tab.c: Many functions now have added parameter validation.
7110         (tab_height, tab_width) These functions were removed and merged
7111         into a single function tab_resize(), and all references changed.
7112         (tab_dim) Rewritten since the interface changed; reduced from
7113         hundreds of lines to two.  All callers were changed.  Currently
7114         most of them just use tab_natural_dimensions as their callback and
7115         await detailed translation of functionality.
7116         (tab_natural_width) New function.
7117         (tab_natural_height) New function.
7118         (tab_natural_dimensions) New function.  This is a callback
7119         function, not something that you'd want to call directly.
7120         (tab_nat_dim) Removed.
7121         (tabi_table) Allocates t->w and t->h.
7122         (tabi_driver) Inlined sum_columns()'s functionality.  Calls the
7123         dimensions callback.
7124         (evaluate_dimensions) Removed.
7125         (sum_columns) Removed.
7126
7127         * tab.h: (enum TAL_1THIN) Removed.
7128         (enum series t_*) Removed.
7129         (struct tab_table) Members trh, trv changed to unsigned char *
7130         from int *.  Member dim changed to a function pointer from a
7131         unsigned char *.  Member max_stack_height removed.  New members
7132         hr_tot, vr_tot.
7133         (macros tab_l, tab_r, tab_t, tab_b) New.
7134
7135 Sat May 23 23:22:13 1998  Ben Pfaff  <blp@gnu.org>
7136
7137         * ascii.c: (delineate) Assign last_space_nchars before skipping
7138         spaces, to fix right justification.
7139
7140         * crosstabs.q: (static vars risk, direct) New vars.
7141         (static var pearson_r) Removed.
7142         (glob var chisq_fisher) Made static.
7143         (static vars row_tot[], col_tot[]) Don't include grand total
7144         anymore.
7145         (static var grand_total) Renamed W, all references changed.
7146         (output_pivot_table) Only make `table' if num_cells != 0.  Make
7147         risk and directional tables.  Deal with grand total no longer part
7148         of col_tot[].  Free rows and cols after we're done with them.
7149         (display_risk) New function.
7150         (display_directional) New function.
7151         (clac_r) Rewritten so that it stores all its results into its
7152         arguments, so it can be used for Spearman's correlation too.
7153         (calc_symmetric) Added a t[] argument, all references changed.
7154         Calculates ASEs for tau-b, tau-c, gamma.  Calculates Spearman's r,
7155         Pearson's r, Cohen's kappa.
7156         (calc_risk) New function.
7157         (calc_directional) New function.
7158
7159         * som.c: (som_submit) Improved debugging code.
7160
7161         * stats.c: (hypercube) New function.
7162         (cube) New function.
7163         (sqr) New function.
7164         (normal_sig) Went back to old implementation, which actually
7165         worked.
7166
7167         * stats.h: (macros square, cube, hypercube) Removed.  The
7168         equivalent functions in stats.c are inlined here; all references
7169         to square changed to sqr.
7170
7171 Fri May 22 00:03:41 1998  Ben Pfaff  <blp@gnu.org>
7172
7173         * crosstabs.q: (N_SYMMETRIC) New define.
7174         (postcalc) Disable debug printing.
7175         (static vars chisq_fisher, pearson_r) New.
7176         (output_pivot_table) Add support for symmetric measures.  Add
7177         chi-square output of exact sigs.
7178         (display_chisq) Rewritten.
7179         (display_symmetric) New function.
7180         (gamma_int) New function.
7181         (Pr) New function.
7182         (swap) New function.
7183         (calc_fisher) New function.
7184         (calc_chisq) Check boundary conditions better. Calculate Yates,
7185         Fisher, Mantel-Haenszel tests.
7186         (calc_r) New function.
7187         (calc_symmetric) New function.
7188
7189         * stats.c: (normal_sig) Rewritten with new algorithm.  Renamed
7190         from calc_normal.
7191         (chisq_sig) Better boundary conditions.  Renamed from
7192         calc_significance.
7193
7194         * tab.h: (struct tab_table) New member cf.
7195
7196         * tab.c: (tab_create) Set cf.
7197         (tab_width) New function.
7198         (tab_realloc) Handle cf.
7199         (tab_vline) Handle cf.
7200         (tab_hline) Handle cf.
7201         (tab_box) Handle cf.
7202         (tab_value) Handle cf.
7203         (tab_float) Handle cf.
7204         (tab_text) Handle cf.
7205         (tab_joint_text) Handle cf.
7206         (tab_offset) Handle cf.
7207         (tab_next_row) Handle cf.
7208         (evaluate_dimensions) Handle cf.
7209         (render_strip) Handle cf.
7210
7211 Wed May 20 00:03:59 1998  Ben Pfaff  <blp@gnu.org>
7212
7213         * crosstabs.q: (postcalc) New vars row_tot, col_tot, pass them to
7214         output_pivot_table().
7215         (output_pivot_table) Moved lots of local variables outside and
7216         made them static.  Add beginnings of chi-square statistic
7217         support.  Now column and row totals aren't in the main matrix.
7218         Always zero out any leftover rows & columns after we're done with
7219         the table entries.  Move all output stuff into
7220         display_dimensions(), display_crosstabs(), display_chisq().
7221         (display_dimensions) New function.
7222         (display_crosstabulation) New function.
7223         (display_chisq) New function.
7224         (calc_chisq) Implemented Pearson and likelihood-ratio chisquares.
7225
7226         * frequencies.q: (dump_full, dump_condensed) Remove tab_null()
7227         references, simplify logic.
7228
7229         * postscript.c: Remove scale, translate-x, translate-y,
7230         mirror-horz, mirror-vert, rotate-180 options.
7231         (struct ps_driver_ext) Remove scale, translate_x, translate_y.
7232         All references deleted.
7233         (macro YT) New macro.
7234         (array option_tab[]) Removed options.
7235         (ps_option) Removed options.
7236         (ps_open_page) Write page setup explicitly to output file, without
7237         using now-deleted BP function.
7238         (macro dump_line) Use YT().
7239         (macro dump_thick_line) Use YT().
7240         (draw_headers) Use YT().
7241         (switch_font) Reorder arguments to SF function.
7242         (write_text) Use YT().
7243
7244         * sfm-read.c: (sfm_read_case) Don't attempt to read variables that
7245         have get.fv == -1.
7246
7247         * sysfile-info.c: (describe_variables) Don't use tab_nulls().
7248
7249         * tab.c: (tab_create) Initialize t->ct to zeros.  Remove
7250         null-debugging code.
7251         (tab_realloc) Remove null-debugging code.  Initialize new regions
7252         of t->ct to zeros.
7253         (tab_vline) Support offsets.
7254         (tab_hline) Support offsets.
7255         (tab_box) Support offsets.
7256         (tab_null) Removed.
7257         (tab_nulls) Removed.
7258         (tab_row) Removed.
7259         (tab_col) Removed.
7260         (evaluate_dimensions) Remove null-debugging code.  Understand
7261         TAB_EMPTY attribute.  Assert that text.s.s is always non-NULL if
7262         TAB_EMPTY not present.
7263
7264         * tab.h: New cell attribute TAB_EMPTY.
7265         (macros tab_nr, tab_nc, tab_row, tab_col) New.
7266
7267         * vars-atr.c: (init_variable) Set get.fv to -1 so that GET doesn't
7268         try to read them from system files.
7269
7270         * vfm.c: (dump_splits) Don't call tab_null().   
7271
7272 Sat May 16 19:36:55 1998  Ben Pfaff  <blp@gnu.org>
7273
7274         * crosstabs.q: (struct crosstab) Added `missing' member.
7275         (custom_tables) Init missing.
7276         (calc_general) Handle missing values.
7277         (calc_chisq) New function.
7278         (output_pivot_table) Start work on chi-square output.  Update for
7279         new tab offset support functions.  Shorten statistic names.
7280
7281         * Several files: add in more `const's to placate gcc's warnings.
7282
7283         * tab.h: (struct tab_table) Add col_ofs, row_ofs members.  Comment
7284         fixes.
7285
7286         * tab.c: (tab_height, tab_realloc, tab_vline, tab_hline, tab_box,
7287         tab_null, tab_nulls, tab_value, tab_float, tab_text,
7288         tab_joint_text) Add col_ofs and row_ofs support.
7289         (tab_offset) New function.
7290         (tab_next_row) New function.
7291         (tab_row) New function.
7292         (tab_col) New function.
7293         (tabi_table) Add col_ofs and row_ofs support.
7294
7295         * vars-atr.c: (is_system_missing) New function.
7296
7297 Tue May 12 16:14:30 1998  Ben Pfaff  <blp@gnu.org>
7298
7299         * crosstabs.q: Expanded subcommand names RESID --> RESIDUAL, etc.
7300         (static var no_cells) Removed.
7301         (static var num_cells) New.
7302         (static var expected) New.
7303         (static var cells[]) New.
7304         (internal_cmd_crosstabs) Deal with new variables.
7305         (postcalc) Removed most of the meat and put it in new function
7306         output_pivot_table().
7307         (output_pivot_table) Calculates and outputs an entire pivot table.
7308
7309         * postscript.c: (postopen) Fix problems with free()ing addresses
7310         not obtained from malloc().
7311
7312         * som.c: (som_submit) Add assertion.
7313
7314         * sysfile-info.c: (describe_variable) Use new tab_nulls()
7315         function.
7316
7317         * tab.c: (static var tab_names[]) New.
7318         (tab_realloc) -1 for nc or nr indicates no change.
7319         (tab_nulls) New function.
7320         (tab_dim) Use tab_names[].
7321         (tabi_cumulate) Don't include bottom or right headers.  Furrfu.
7322         (evaluate_dimensions) Don't terminate on uninited cells, just put
7323         an X in them and emit a notice.  Use tab_names[].
7324
7325         * tab.h: Move bits into tab.def.
7326
7327         * tab.def: New.  Don't try to declare tab_table_class because then
7328         som.h has to be included.       
7329         
7330 Thu May  7 22:55:04 1998  Ben Pfaff  <blp@gnu.org>
7331
7332         * command.def: New file, contains all the command definitions
7333         previously included bodily in command.c.
7334
7335         * format.def: New file, contains all of the format definitions
7336         previously split across format.h, format.c, and sfm-write.c.
7337
7338         * lexer.h: Renamed from tokens.h in order to match corresponding
7339         .c file name.
7340
7341         * lexerP.h: Moved some rarely used functions exported by lexer.c
7342         into here.
7343
7344         * Makefile.am: Commemorate renamed files.
7345         (EXTRA_DIST) Add command.def, format.def.
7346
7347         * command.c: [0] (walk_cmdtable_func) Removed.
7348
7349         * crosstabs.q: (postcalc) Made it work and print out matrices
7350         proving it.
7351         (enum_column_values) Renamed enum_var_values, generalized for any
7352         variable.
7353
7354         * format.h: (struct fmt_desc) New member `spss'.
7355
7356         * q2c.c: (main) Generated code includes lexer.h instead of
7357         tokens.h.
7358
7359         * sfm-write.c: (write_format_spec) Use new spss member of fmt_spec
7360         instead of an independent translation table.
7361
7362 Tue May  5 13:19:03 1998  Ben Pfaff  <blp@gnu.org>
7363
7364         * Lots of source files: Added const to declarations.
7365
7366         * aggregate.c: (parse_aggregate_function) Rename inner i to j.
7367         
7368         * arena.c: (arena_clear) Set prev pointer to null when done.
7369
7370         * ascii.c: (ascii_option) Rename index as indx.
7371
7372         * avl.c: This is now a separate library called libavl.
7373         (xmalloc) Make static.
7374         (avl_probe) Step A7 can use the cache instead of an explicit
7375         compare.
7376         (avl_delete) Don't maintain a q pointer because it's always
7377         available in the pointer stack.  Comment fix.
7378
7379         * avl.h: This is now a separate library called libavl.
7380
7381         * command.c: (cmd_table[]) Remove spurious trailing "".
7382
7383         * common.h: Only include random() fix if this system needs it.
7384
7385         * crosstabs.q: Include alloca headers.
7386         (n_sorted_tab) New global var.
7387         (postcalc) Mostly rewritten.
7388         (find_pivot_extent) Rewritten.
7389         (enum_column_values) Rewritten.
7390
7391         * data-out.c: (convert_F) Rename inner n as n_spaces.
7392
7393         * error.c: (dump_message) Don't have an outer var i.
7394
7395         * file-handle.q: (static var f) Removed.  All references removed.
7396         (internal_cmd_file_handle) Uses a local variable instead of f.
7397
7398         * get.c: (trim_dictionary) Change scope of i, i1, i2.
7399         (cmd_match_files) Don't strcpy tokstr into sbc (why was this ever
7400         done?)
7401
7402         * getline.h: Declare getl_history as extern.  Reported by
7403         palme@uni-wuppertal.de (Hubert Palme).
7404
7405         * postscript.c: (postopen) Some large mods for constness.
7406
7407         * recode.c: Remove spurious copyrights since PSPP is owned by FSF
7408         anyway.
7409
7410 Fri Apr 24 12:52:47 1998  Ben Pfaff  <blp@gnu.org>
7411
7412         * Makefile.am: Rename BUILT_SOURCES to q_sources, all references
7413         changed.  Add avl.c, avl.h to pspp_SOURCES.  Remove avllib from
7414         LDADD.
7415
7416         * avl.c, avl.h: New files.  These form a clean-room
7417         reimplementation of avllib.  Iterative algorithms are used in
7418         place of recursive ones, so there is no resemblance in the code.
7419
7420         * Lots of headers: Don't include other headers by default.
7421
7422         * Lots of source files: Explicitly include all needed headers.
7423
7424         * arena.c: (arena_clear) New function.
7425
7426         * crosstabs.q: (ROW_VAR, COL_VAR) New enums.
7427         (static var ar) Removed.
7428         (staitc vars ar_tc, ar_col) New.
7429         (cmd_crosstabs) Destroy the arenas.
7430         (internal_cmd_crosstabs) Create the arenas.
7431         (precalc) Don't need a free function for the hash.
7432         (calc_general) Make sure to zero out the trailer on the key data
7433         before inserting.
7434         (print_table_entries) Updated.
7435         (postcalc) Worked on actually implementing.
7436         (find_pivot_extent) New function.
7437         (compare_value) New function.
7438         (enum_column_values) New function.
7439
7440         * data-in.c: (parse_month) Make local array `static const'.
7441         
7442         * data-out.c: (convert_date) Make local array `static const'.
7443         (convert_WKDAY) Same.
7444         (convert_MONTH) Same.
7445
7446         * frequencies.q: (postprocess_freq_tab) avl_walk_inorder() has
7447         been renamed to avl_walk().
7448         
7449         * hash.c: Rewritten more efficiently.
7450
7451         * hash.h: Add attribute const to hsh_next_prime declaration.
7452
7453         * lexer.c: (id_match) Make arguments const.
7454
7455         * postscript.c: (ps_postopen_driver) Make default fonts the
7456         Helvetica family.
7457
7458         * q2c.c: (main) Generated code needs stdlib.h.
7459
7460         * sfm-write.c: (write_value_labels) An avl_traverser needs to be
7461         initialized to 0 now, not to NULL.  All other references to
7462         avl_traverser were updated in the same way.
7463
7464         * tokens.h: Macro version of id_match updated to use const
7465         properly.
7466
7467         * val-labs.c: (inc_ref_count) New function.
7468         (copy_value_labels) Simply through use of new avl_copy() function.
7469
7470 Wed Apr 15 13:01:58 1998  Ben Pfaff  <blp@gnu.org>
7471
7472         * crosstabs.q: Probably doesn't compile.  New PIVOT subcommand.
7473         (postcalc) Worked on this.
7474
7475         * postscript.c: (OPO_DOUBLE_LINE) New enum.
7476         (struct ps_driver_ext) New line_width_thick member.
7477         (ps_preopen_drive) Init line_width_thick.
7478         (option_tab[]) Add line-* options.
7479         (ps_option) Parse line-* options.
7480         (postopen) Add line_width_thick support.  Strip leading spaces on
7481         prologue output lines.
7482         (ps_open_page) Include line_width_thick in output.
7483         (macro dump_thick_line) New.
7484         (dump_fancy_line) Support thick lines as well as double lines.
7485
7486 Tue Apr 14 00:50:08 1998  Ben Pfaff  <blp@gnu.org>
7487
7488         * Makefile.am: Add crosstabs.c to BUILT_SOURCES.  Add crosstabs.q
7489         to pspp_SOURCES.  Add crosstabs.q to EXTRA_DIST.
7490
7491         * Many source files: Rename `options' to `pv_opts' as appropriate.
7492
7493         * command.c: (static var cmd_table[]) Add CROSSTABS command.
7494
7495         * common.c: (xcalloc) New function.
7496
7497         * crosstabs.q: New file.  Not finished yet, though.
7498                 
7499         * data-list.c: Comment fix.
7500
7501         * error.c: Remove some old Checker cruft.
7502
7503         * frequencies.q: (dump_full) Cumulate valid percent instead of
7504         regular percent.
7505
7506         * getline.c: Comment fix.
7507
7508         * hash.c: Comment fixes.
7509
7510         * hash.h: (struct hsh_table) Make hash functions return unsigned
7511         instead of int to avoid problems with taking the modulo of
7512         negative return values.  All references changed.
7513
7514         * misc.c: (intlog10) Make its table static const instead of auto.
7515
7516         * sfm-read.c: (read_header) Make `prefix' static const instead of
7517         auto.
7518
7519         * var.h: (union value) Add member `hash'.
7520         (struct variable) Rename prv_index as `foo'--all references
7521         changed.  Reorder.
7522         (typedef pv_opts) Removed.  All references changed.
7523
7524         * vars-prs.c: (parse_variables) Message fixes.
7525         
7526 Mon Mar  9 15:35:08 1998  Ben Pfaff  <blp@gnu.org>
7527
7528         * get.c: (cmd_match_files) Don't reverse the order of FILEs as
7529         they are being inserted.  Don't check for BY variables of
7530         different types.  Discard variables if the active file isn't
7531         included in the merge.
7532         (mtf_processing) Essentially rewritten.
7533         (mtf_merge_dictionary) Check for master/slave variables of
7534         different types/widths.
7535
7536         * vfm.c: (static var not_canceled) New var.
7537         (process_active_file) Don't call vfm_source->read() if
7538         there's no vfm-source.  Initialize not_canceled.
7539         (process_active_file_write_case) Honor and update not_canceled.
7540         (prepare_for_writing) Rollback changes from yesterday, they were
7541         wrong.
7542         (close_active_file) Don't destroy vfm_source unless it exists.
7543         
7544 Mon Mar  9 00:56:16 1998  Ben Pfaff  <blp@gnu.org>
7545
7546         * Lots of source files: Added { } around nested if/else constructs
7547         to avoid new gcc 2.8 warnings.
7548
7549         * data-in.c: (parse_Z) Declare `int' type explicitly.
7550         (convert_Z) Ditto.
7551
7552         * get.c: (struct mtf_file) Add prev, next_min, by, input members.
7553         (cmd_match_files) Initialize mtf_by_values.  Manage by, input,
7554         prev members.  Put TABLEs at the end of the chain and FILEs at the
7555         beginning.  Don't allow the active file in STATE_INIT.  Use proper
7556         `seen' value for the active file.  Fill out the by members and
7557         make sure they're of consistent type.  Do the actual merge
7558         operation.
7559         (mtf_processing_finish) New function.
7560         (var_type_description) New function.
7561         (mtf_free_file) New function.
7562         (mtf_free) Rewritten.
7563         (mtf_delete_file_in_place) New function.
7564         (mtf_read_nonactive_records) New function.
7565         (mtf_compare_BY_values) New function.
7566         (static var mtf_seq_no) New var.
7567         (mtf_processing) New function.
7568         (mtf_merge_dictionary) Assign nval members for the system file
7569         dictionary.  Assign fv values for its variables.  Point each slave
7570         variable to the corresponding master variable.
7571
7572         * hash.c: Include str.h.
7573
7574         * mis-val.c: (copy_missing_values) src arg is const.
7575
7576         * misc.c: (spacing) Make `max' var explicitly int.
7577
7578         * sfm-read.c: (dump_dictionary) Message reformatting.
7579         (sfm_read_case) Add assertion.
7580
7581         * sort.c: Esthetic fixes.
7582
7583         * var.h: (struct match_files_proc) New struct.
7584         (struct variable) Add private data match_files_proc.
7585
7586         * vars-atr.c: (delete_variable) Implement.  Add argument for the
7587         dictionary that owning the variable.
7588         (dup_variable) Add assertion.
7589
7590         * vfm.c: Comment fixes, hopefully the comments are correct now.
7591         (process_active_file) New function.
7592         (process_active_file_write_case) New function.
7593         (process_active_file_output_case) New function.
7594         (prepare_for_writing) Use temp_dict->nval for vfm_info, not
7595         default_dict.nval.
7596         (write_case) Renamed procedure_write_case().  Now write_case is a
7597         pointer to a function.  Style fixes.
7598         
7599 1998-03-05  Ben Pfaff  <blp@gnu.org>
7600
7601         * Makefile.am: (q2c) Link with libmisc.
7602         (version.c) Define default_config_path, include_path,
7603         groff_font_path.
7604
7605         * ascii.c: (ascii_postopen_driver) When the default newline string
7606         is requested, open file in text mode.  Suggested by
7607         palme@uni-wuppertal.de (Hubert Palme).
7608         (static vars line_buf, line_p) Change from char * to unsigned char
7609         *.
7610         (ascii_close_page) char * to unsigned char *.
7611
7612         * cmdline.c: (parse_command_line) Implement -r option by
7613         prepending ~/.pspp/rc to the list of files to process.
7614
7615         * command.c: (cmd_remark) Reset getl_prompt to the standard prompt
7616         before pulling in a final line.
7617         (null_func, null_int_func) Removed (dead code).
7618
7619         * descript.q: (display) Calculate width of variable name column
7620         properly.  Calculate number of valid cases properly.  Reported by
7621         palme@uni-wuppertal.de (Hubert Palme).
7622
7623         * filename.c: (init_filename) Use default_config_path instead of
7624         now obsolete CONFIG_PATH.
7625
7626         * getline.c: (getl_initialize) Use include_path instead of now
7627         obsolete INCLUDE_PATH.
7628         (getl_add_file) New argument `where'.  All references changed.
7629
7630         * groff.c: (find_font_file) Use groff_font_path instead of now
7631         obsolete GROFF_FONT_PATH.
7632         
7633         * postscript.c: (find_ps_file) Use groff_font_path instead of now
7634         obsolete GROFF_FONT_PATH.  Copy through temporary variable to
7635         avoid problems with constness.
7636
7637         * str.h: (macro cs_streq) New macro.
7638
7639         * version.h: (glob var default_config_path, include_path,
7640         groff_font_path) New vars.
7641         
7642 1998-02-23  Ben Pfaff  <blp@gnu.org>
7643
7644         * Many source files: Change verbose_msg() priority levels and
7645         messages.
7646
7647         * aggregate.c: Include debug-print.h.
7648
7649         * cmdline.c: (parse_command_line) Add --safer/-s and --command/-c
7650         options.
7651         (static var pre_syntax_message) Document --safer/-s and
7652         --command/-c.
7653
7654         * command.c: (cmd_erase, cmd_host) Disable if set_safer is set.
7655
7656         * dfm.c: (open_inline_file) [__CHECKER__] Zero out ext->file,
7657         because it's not used but it's still copied.
7658         (open_file_r) Remove gratuitous debug message.
7659
7660         * filename.c: (safety_violation) New function.
7661         (open_file) Remove gratuitous debug messages.  Don't allow pipe
7662         files if set_safer is set.
7663
7664         * get.c: Turn off debugging.
7665
7666         * getline.c: (getl_add_virtual_file) New function.
7667         (getl_read_line) Add verbose_msg() call for opening new syntax
7668         file.
7669         (getl_perform_delayed_reset) Add a return value describing whether
7670         any action was taken.  Call reset_eof().
7671
7672         * getline.h: Comment fix.
7673
7674         * groff-font.c: (groff_read_font) Use `goto next_iteration' in
7675         place of incorrect `continue'.  Use strtok_r() instead of
7676         strtok().  Always check strtok_r() return value.
7677         (groff_read_DESC) Use strtok_r() instead of strtok().
7678
7679         * lexer.c: (reset_eof) New function.
7680
7681         * main.c: (parse) Get a token after performing a delayed reset
7682         action; allow empty syntax files.
7683
7684         * postscript.c: (output_encodings) Use strtok_r() instead of
7685         strtok().
7686
7687         * q2c.c: (dump_parser) Use strtok_r() instead of strtok().
7688
7689         * set.q: Comment fixes.
7690         (glob var set_safer) New var.
7691         (internal_cmd_set) Support SAFER.
7692
7693         * str.h: [!HAVE_STRTOK_R] Declare strtok_r() prototype.
7694
7695         * temporary.c: (free_dictionary) Set d->splits to NULL after
7696         freeing.
7697
7698         * vars-atr.c: (clear_variable) Decrement dict->n_splits if
7699         variable deleted, not if it *isn't* deleted.
7700
7701 1998-02-16  Ben Pfaff  <blp@gnu.org>
7702
7703         * command.c: (array cmd_table[]) Add MATCH FILES.
7704
7705         * common.c: Comment fixes.
7706
7707         * data-list.c, dfm.c, error.c, filename.c, list.q, matrix-data.c,
7708         modify-vars.c, postscript.c, sfm-read.c, sfm-write.c, tab.c:
7709         Include alloca.h.  Problem reported by palme@uni-wuppertal.de
7710         (Hubert Palme).
7711
7712         * expr-opt.c: Include str.h.  Problem reported by
7713         palme@uni-wuppertal.de (Hubert Palme).
7714
7715         * get.c: (cmd_get) [DEBUGGING] Update v->p.get to v->get.
7716         (static var mtf_by) Change from char ** to variable **.
7717         (static var mtf_master) New var.
7718         (mtf_merge_dictionary) New function.
7719         (cmd_match_files) Init mtf_master.  Parse mtf_by according to new
7720         var type.  Reorder tests properly.  Initialize file->dict.  Detect
7721         TABLE= without BY=.  Read file dictionaries and merge them.  Give
7722         subcommand name with IN, LAST, FIRST error messages.  Create IN,
7723         LAST, FIRST variables.  Comment fixes.
7724         (mtf_free) Don't free default_dict.  Free mtf_master.
7725
7726         * getline.c: Define getl_mode.  Change getl_buf_size to size_t
7727         from int.
7728         (handle_line_buffer) Cast int to size_t in comparison to avoid
7729         warning.
7730
7731         * getline.h: Declare getl_mode extern.
7732
7733         * groff-font.c: (groff_read_font) Type-fix calls to getline.
7734         (groff_read_DESC) Make line_size a size_t.
7735         (match_tok) Parenthesize name to avoid macro expansion.
7736
7737         * mis-val.c: (copy_missing_values) New function.
7738
7739         * postscript.c: (postopen) Make buf_size a size_t.
7740
7741         * sfm-read.c: (dump_dictionary) Make global from static.  Print
7742         variable info in parts for easier debugging with Checker.
7743
7744         * temporary.c: (copy_variable) Use copy_value_labels().
7745         (new_dictionary) New arg: whether to copy file label, documents.
7746
7747         * val-labs.c: (copy_value_labels) New function.
7748
7749         * var.h: (enums MISSING_*) Add MISSING_COUNT.
7750
7751         * vars-atr.c: [GLOBAL_DEBUGGING] (force_dup_variable) New
7752         function.
7753         (dup_variable) Set prv_index, get.fv, get.nv.
7754
7755 Fri Feb 13 15:38:36 1998  Ben Pfaff  <blp@gnu.org>
7756
7757         * Makefile.am: (pspp_SOURCE) Add htmlP.h.
7758
7759         * Many source files: For ANSI-compliance, add empty statement
7760         after label.  Reported by palme@uni-wuppertal.de (Hubert Palme)
7761         and Micah Altman <maltman@www-vdc.fas.harvard.edu>.
7762
7763         * data-in.c: (parse_numeric) Some header files break on
7764         -DBL_MIN_10_EXP because they get a --; add () for safety.
7765         Reported by palme@uni-wuppertal.de (Hubert Palme).
7766
7767         * dfm.c: Idea by Dr Eberhard W Lisse <el@linux.lisse.na>.
7768         (struct dfm_fhuser_ext) Change `file' from FILE * to file_ext.
7769         (dfm_close) Use close_file_ext.
7770         (open_inline_file) Set file.file to NULL, not file.
7771         (open_file_r, open_file_w) Initialize file.file; fill in file_ext
7772         struct and use open_file_ext().
7773         (read_record) Use file.file.
7774
7775         * file-handle.q: (prepend_current_directory) Pass through special
7776         filenames.
7777
7778         * filename.c: Only include unistd.h if HAVE_UNISTD_H.
7779         (normalize_filename) Pass through special filenames.
7780         (open_file, close_file) Accept pipe| and |pipe syntaxes as
7781         equivalent.
7782         (dirname) Rename blp_dirname() because of name conflict on some
7783         OS.  All references changed.  Reported by palme@uni-wuppertal.de
7784         (Hubert Palme).
7785         (is_special_filename) New function.
7786
7787         * get.c: (GTSV_OPT*) Add GTSV_OPT_MATCH_FILES.
7788         (trim_dictionary) Conditionalize some of the options on whether
7789         GTSV_OPT_MATCH_FILES is in *options.
7790         (rename_variables) Don't allow variables to be renamed as scratch
7791         variables.
7792         (MTF_*) New enum series.
7793         (struct mtf_file) New struct.
7794         (static vars mtf_head, mtf_tail, mtf_by, mtf_n_by, mtf_free) New
7795         vars.
7796         (cmd_match_files, mtf_free) New functions.
7797
7798         * lexer.c: (match_int) Needed parentheses around name to escape
7799         macro expansion.  Reported by Micah Altman
7800         <maltman@www-vdc.fas.harvard.edu>.
7801
7802         * print.c: Needed to include alloca.h.  Reported by Micah Altman
7803         <maltman@www-vdc.fas.harvard.edu>.
7804
7805         * recode.c: (convert_to_double) Parenthesize -DBL_MIN_10_EXP to
7806         -(DBL_MIN_10_EXP).  Reported by palme@uni-wuppertal.de (Hubert
7807         Palme).
7808         
7809         * str.h: Include stdarg.h.  Reported by palme@uni-wuppertal.de
7810         (Hubert Palme) and Micah Altman <maltman@www-vdc.fas.harvard.edu>.
7811
7812 Thu Feb  5 00:18:21 1998  Ben Pfaff  <blp@gnu.org>
7813
7814         * html.c: (struct html_driver_ext) Move into htmlP.h.
7815         (html_preopen_driver) Initialize cp_x, cp_y.
7816         (html_submit) Implement as call to output_tab_table().
7817         (change_attributes) New function.
7818         (escape_string) New function.
7819         (output_tab_table) New function.
7820
7821         * list.q: (write_all_headers) Add code for writing headers for the
7822         html driver.
7823         (clean_up) Write out the html close-table tag.
7824         (determine_layout) Ignore html driver.
7825         (list_cases) Write html data.
7826
7827         * som.c: (som_submit) Move more of the code into output_table().
7828
7829         * tab.c: (static var hit) Make a global var and rename tab_hit.
7830         (static var tab_table_class) Make a global var.
7831
7832         * htmlP.h: New file.
7833
7834 Tue Feb  3 16:12:18 1998  Ben Pfaff  <blp@gnu.org>
7835
7836         * dump-sysfile.c: Removed.
7837
7838         * html.c: (preclose) Change comment in emitted code.
7839
7840         * matrix-data.c: Debugging off by default.  Comment fixes.
7841         (static var container) New var.
7842         (cmd_matrix_data) Create and destroy container.  Initialize
7843         is_per_factor[] to 0s.  Move code into new function
7844         string_to_content_type().  Require split values to be present in
7845         the data when ROWTYPE_ is explicit.  Call specific function, not
7846         general read_matrices().
7847         (string_to_content_type) New function.
7848         (context) Exclude all whitespace, not just spaces.
7849         (mget_token) A dot is a number.  Add assertion.
7850         (static var data) Renamed nr_data.
7851         (static var factor_values) Renamed nr_factor_values.
7852         (read_matrices) Renamed read_matrices_without_rowtype().  Handle
7853         only specific case.  Close data_file before exit.
7854         (fill_matrix) New function.
7855         (read_data_lines) Renamed nr_read_data_lines().  Remove debug
7856         printing.  Style fixes.  Message fixes.  Move code into
7857         fill_matrix().
7858         (read_matrices_without_rowtype) Rename
7859         matrix_data_read_without_rowtype().  Fix off-by-one error on
7860         loops.  Allocate nr_data[] memory from arena.
7861         (read_matrices_with_rowtype) Removed.
7862         (read_splits) Renamed nr_read_splits().  Style fixes.
7863         (read_factors) Renamed nr_read_factors().
7864         (dump_cell_content) Comment fixes.  Arguments changed.  Change
7865         debug printing.  All references changed.
7866         (output_data) Renamed nr_output_data().
7867         (static var wr_content) New var.
7868         (struct factor_data) New struct.
7869         (static var wr_data) New var.
7870         (static var wr_current) New var.
7871         (matrix_data_source_destroy_source) Removed.
7872         (read_matrices_with_rowtype) New function.
7873         (matrix_data_read_with_rowtype) New function.
7874         (wr_read_splits) New function.
7875         (compare_factors) New function.
7876         (wr_output_data) New function.
7877         (wr_read_rowtype) New function.
7878         (wr_read_factors) New function.
7879         (wr_read_indeps) New function.
7880         (glob var matrix_data_source) Make destroy_source member NULL as
7881         well.
7882
7883 Fri Jan 23 00:09:08 1998  Ben Pfaff  <blp@gnu.org>
7884
7885         * lexer.c: (syntax_error) Give better error message when at end of
7886         file.
7887
7888         * matrix-data.c: (var content_names[]) Fix PROX spelling.  Change
7889         N_SCALAR to output as plain N.
7890         (mdump_token) Change output format.
7891         (context) Fix message output interaction with spaces in input.
7892         (another_token) New function.
7893         (force_eol) Improved error message.
7894         (static var max_cell_index) New var.
7895         (read_matrices) Init `cells'.  factor_values is now per-cell.
7896         Init max_cell_index.
7897         (read_data_lines) Replace `compare' local with new `compare' arg.
7898         Debugging messages changed.  Only read factors if per_factor.
7899         Propagate error return from read_factors(), force_eol().
7900         Copy N_SCALAR values across the N vector.
7901         (read_matrices_without_rowtype) Don't init `cells'.  Don't need to
7902         check parentheses manually since we now have is_per_factor[].
7903         Call read_data_lines() with new args.  Check for end of data after
7904         looping, using another_token().
7905         (read_factors) Arguments changed.  Use max_cell_index to determine
7906         whether to read or compare factors.  Message fixes.
7907         (dump_cell_content) New function.
7908         (output_data) Completely rewritten because content types were
7909         supported to be nested inside factor values, not vice versa.
7910         
7911 Thu Jan 22 00:26:38 1998  Ben Pfaff  <blp@gnu.org>
7912
7913         * lexer.c: (syntax_error) Support formatted varargs messages.
7914
7915         * matrix-data.c: Turn debugging on by default.
7916         (static content_type[]) New array.
7917         (static content_names[]) New array.
7918         (static rowtype_, varname_) New vars.
7919         (static is_per_factor[]) New array.
7920         (static split_values) Moved declaration.
7921         (static n_continuous, first_continuous) New var.
7922         (cmd_matrix_data) Don't init split_values.  Assign ROWTYPE_ to
7923         rowtype_.  Simplify SPLIT code.  Init is_per_factor[].  Assign
7924         VARNAME_ to varname_.  Initialize first_continuous, n_continuous.
7925         Check for continuous variables.
7926         [DEBUGGING] (debug_print) Remove content_names[].
7927         (mdump_token) New macro.
7928         (mget_token_dump) New function.
7929         (mdump_token) New function.
7930         (context) New function.
7931         (mget_token) Fix messages.
7932         (static var data, split_values, factor_values) New vars.
7933         (read_matrices) Manage split_values, factor_values.
7934         (read_data_lines) New function.
7935         (read_matrices_without_rowtype) Implemented.
7936         (read_splits) Message fixes.  Uses `just_read'.
7937         (read_factors) New function.
7938         (output_data) New function.
7939         (matrix_data_source_destroy_source) Close the file handle.
7940         (glob var matrix_source) Change name from "DATA LIST" to "MATRIX
7941         DATA".
7942
7943         * str.c: (strpadcmp) Removed.
7944
7945         * vfm.c: (dump_splits) Initialize i; fix test for end of splits.
7946
7947 Sun Jan 18 00:30:59 1998  Ben Pfaff  <blp@gnu.org>
7948
7949         * Lots of source files: Add cast to unsigned character to calls to
7950         tolower() and toupper().
7951
7952         * aggregate.c: Set default_dict.splits to NULL.
7953
7954         * command.c: (static variable tab[]) Add MATRIX DATA.
7955
7956         * data-in.c: Add debugging defines.  Formatting fixes.
7957
7958         * expr-opt.c: Formatting fixes.
7959
7960         * lexer.c: (syntax_error) Message fixes.
7961
7962         * matrix-data.c: New enum series.
7963         (static vars fmt, section, diag, explicit_rowtype, signle_split,
7964         split_values, n_factors, factors, cells, pop_n, contents,
7965         n_contents) New vars.
7966         (cmd_matrix_data) Finished implementation.
7967         (compare_variables_by_mxd_vartype) New function.
7968         [DEBUGGING] (debug_print) New function.
7969         (static vars mtoken, mtokstr, mtoklen, mtokval) New vars.
7970         (read_matrices) New function.
7971         (read_matrices_without_rowtype) New function.
7972         (read_matrices_with_rowtype) New function.
7973         (read_splits) New function.
7974         (mget_token) New function.
7975         (force_eol) New function.
7976         [0] (test_tokenizer) New function.
7977         (matrix_data_source_destroy_source) New function.
7978         (glob var matrix_data_source) New var.
7979
7980         * misc.h: Include ieeefp.h if present.
7981
7982         * split-file.h: (cmd_split_file) Changes corresponding to struct
7983         dictionary changes.
7984
7985         * str.h: Fix memmem prototype.
7986
7987         * temporary.c: (save_dictionary, restore_dictionary,
7988         free_dictionary) Changes corresponding to struct dictionary
7989         changes.
7990
7991         * var.h: (MXD_* enums) New enum series.
7992         (struct matrix_data_proc) New struct.
7993         (struct split) Removed.
7994         (struct dictionary) Changed `splits' member from `split *' to
7995         `variable **'.
7996         (macro force_create_variable) New macro.  Replaced lots of
7997         create_variable()/assert() calls with calls to this macro.
7998
7999         * vars-atr.c: (discard_variables) Changed assertion.
8000         [GLOBAL_DEBUGGING] (force_create_variable) New function
8001         called by the macro of the same name.
8002         (clear_variable) Changes to delete splits from the dictionary
8003         corresponding to struct dictionary changes.
8004
8005         * vars-prs.c: (parse_variables) [GLOBAL_DEBUGGING] Check for
8006         corrupted variable `index' values in the dictionary passed in
8007         every time this function is called.
8008
8009         * vfm.c: (dump_splits, SPLIT_FILE_procfunc) Changes corresponding
8010         to struct dictionary changes.
8011
8012 Tue Jan 13 23:45:02 1998  Ben Pfaff  <blp@gnu.org>
8013
8014         * Makefile.am: (pspp_SOURCES) Add matrix-data.c.
8015
8016         * command.c: New includes.
8017         (static array cmd_table[]) Add ERASE, HOST, NEW FILE.
8018         (cmd_erase) New function.
8019         [unix] (shell) New function.
8020         (run_command) New function.
8021         (cmd_host) New function.
8022         (cmd_new_file) New function.
8023
8024         * expr-prs.c: (parse_primary) Message fix.
8025
8026         * inpt-pgm.c: Formatting fix.
8027         (cmd_reread) Implement the FILE subcommand.
8028
8029         * matrix-data.c: New file.
8030
8031         * q2c.c: (dump_header) Change output commenting style.
8032
8033         * weight.c: Comment fix.
8034
8035 Tue Jan 13 00:53:39 1998  Ben Pfaff  <blp@gnu.org>
8036
8037         * aggregate.c: (buf64_10x) Renamed buf64_1xx, all references
8038         changed.
8039         (buf_10x) Renamed buf_1xx, all references changed.
8040         (cmd_aggregate) Implemented cases 010, 011, 110, and 111 (all
8041         cases now implemented).
8042         (create_sysfile) New function.
8043         (agr_11x_func) New function.
8044
8045         * data-in.c: (parse_numeric) Work properly if there's an
8046         explicitly coded decimal point in the data and decimal places are
8047         specified on DATA LIST.  Bug reported by Dr Eberhard W Lisse
8048         <el@linux.lisse.na>.
8049
8050         * get.c: (cmd_get, cmd_save_internal) Allow extraneous slash
8051         before file specification on GET, SAVE, XSAVE.  Bug reported by Dr
8052         Eberhard W Lisse <el@linux.lisse.na>.
8053
8054         * q2c.c: [!HAVE_STRERROR] Include misc/strerror.c, not
8055         strerror.c.  Bug reported by Alexandre Oliva
8056         <oliva@dcc.unicamp.br>.
8057
8058         * sort.c: Include sort.h.  Comment fixes.  A few esthetic fixes.
8059         (static var separate_case_tab) New var.
8060         (cmd_sort_cases) Cancel temporary transformations here.  Free
8061         v_sort before return.
8062         (sort_cases) Run an EXECUTE procedure if SEPARATE is nonzero and
8063         we're reading from a sort stream.  Don't cancel temporary
8064         transformations.  Offload internal sorting to do_internal_sort().
8065         (do_internal_sort) New function.  Handles internal sorting even
8066         when SEPARATE is nonzero.  Doesn't free v_sort.
8067         (do_external_sort) Take new arg SEPARATE.  Only destroy `x' if
8068         it's non-NULL.
8069         (write_initial_runs) Take new arg SEPARATE.  Only destroy the old
8070         sink if SEPARATE is zero.
8071         (read_output_cases) Renamed read_sort_output(), all references
8072         changed.  Now uses separate_case_tab when it exists.
8073         (write_separate) New function.
8074
8075         * vfm.c: (page_to_disk) Destroy memory_source_cases, not
8076         memory_sink_cases.  Don't redundantly call
8077         vfm_source->destroy_source().
8078         (memory_stream_mode) After switching over, set memory_sink_cases
8079         to NULL.
8080
8081 Sat Jan 10 23:35:51 1998  Ben Pfaff  <blp@gnu.org>
8082
8083         * aggregate.c: (struct agr_var) Expand dbl[] array from 2 to 3
8084         elements.
8085         (static var prev_case) New, moved out of aggregate_single_case()
8086         local scope.
8087         (static var buf64_10x, buf_10x) New.
8088         (cmd_aggregate) Initialize prev_case.  Comment fixes.  Implement
8089         the 000, 001, 100, and 101 cases.  Free prev_case.
8090         (parse_aggregate_functions) Disallow scratch variables.
8091         (free_aggregate_functions) Only free agr_dict if non-null.  Use
8092         iter->function to determine numeric/string type, not
8093         iter->src->type.
8094         (aggregate_single_case) Don't manage prev_case.  Initialize
8095         aggregate info after dumping it.
8096         (accumulate_aggregate_info) Fix sum, weighted sum, mean, weighted
8097         mean, stddev, weighted stddev definitions.
8098         (dump_aggregate_info) Implemented.
8099         (initialize_aggregate_info) Renamed from
8100         initialize_aggregate_functions().  Initializes dbl[2].
8101         (agr_00x_trns_proc, agr_00x_end_func, write_case_to_sfm,
8102         agr_10x_trns_proc, agr_10x_trns_free, agr_10x_end_func) New.
8103
8104         * cases.c: (alloc_val) Removed.
8105
8106         * get.c: (cmd_save_internal) Initialize new `dict' member.
8107
8108         * sfm-write.c: (sfm_write_dictionary, write_header,
8109         write_variable, write_value_labels, write_documents) Reorganize,
8110         simplify for new parameter structure.
8111         (write_variable) Only one variable * argument now.
8112
8113         * sfm.h: (struct sfm_write_info) Removed `pri', `sec', and
8114         replaced by new `dict' member.
8115
8116         * temporary.c: (new_dictionary) Initialize n_documents.
8117
8118         * vars-atr.c: (dup_variable) Allocate `value's from dict into
8119         v->fv manually.
8120         (init_variable, replace_variable) Eliminate usage of alloc_val().
8121
8122         * vars-prs.c: (parse_DATA_LIST_vars) Accept PV_NO_SCRATCH option.
8123
8124         * vfm.c: (arrange_compaction) Allow `temporary' value of 2 to
8125         signal that AGGREGATE is to be used for forming final cases.
8126         (close_active_file) Call end_func before stopping lagging.  Cancel
8127         temporary after finishing compaction.
8128         (write_case) Comment fixes.  Cleaned up.
8129         (compact_case) Let AGGREGATE handle compaction when `temporary' is
8130         2.
8131
8132 Sat Jan 10 02:10:47 1998  Ben Pfaff  <blp@gnu.org>
8133
8134         * Makefile.am: (BUILT_SOURCES) Add means.c.
8135         (pspp_SOURCES) Add means.c.
8136         (EXTRA_DIST) Add means.q.
8137
8138         * command.c: (array cmd_table[]) Add MEANS.
8139
8140         * common.h: Esthetic fixes.  Comment fixes.  Test for
8141         MAX_SHORT_STRING greater than 8.
8142         (macros LOWEST, HIGHEST) New.
8143
8144         * data-in.c, data-list.c, recode.c: Comment fixes.
8145
8146         * means.q: New file, base version.
8147
8148         * mis-val.c: (parse_num_or_range, parse_numeric) Replace -DBL_MAX
8149         with LOWEST, DBL_MAX with HIGHEST.
8150
8151         * q2c.c: (dump_vars) Add an enum to array types giving the number
8152         of values for the enum.
8153
8154         * sfm-read.c: (sfm_read_dictionary, read_machine_flt64_info)
8155         Replace second_lowest_value with second_lowest_flt64.
8156
8157         * sfm-write.c: (write_variable, write_rec_7_34) Replace
8158         second_lowest_value with second_lowest_flt64.
8159
8160         * t-test.q: Comment fix.
8161
8162         * temporary.c: (restore_dictionary) Esthetic fix.
8163
8164         * tokens.h: (force_match_id, force_match, force_string, force_int,
8165         force_num, force_id) Replace msg() with syntax_error().
8166
8167         * var.h: (struct means_proc) New.
8168         (struct variable) Add mns member to `p' union.
8169
8170         * vars-prs.c: (parse_variable, parse_dict_variable,
8171         parse_variables, parse_DATA_LIST_vars) Replace msg() with
8172         syntax_error().
8173
8174 Thu Jan  8 22:28:41 1998  Ben Pfaff  <blp@gnu.org>
8175
8176         * Makefile.am: (pspp_SOURCES) Add tab.h.
8177
8178         * Most source files: Added a cast to unsigned char in usages of
8179         the ctype is*() functions.  Replaced `end of command expected'
8180         calls to msg() with calls to syntax_error().
8181
8182         * frequencies.q: (dump_condensed) Fix tab_dim() column reference.
8183
8184         * lexer.c: (hex_val) Removed (was dead code).
8185         (idmatch) Parenthesize function name to avoid macro expansion.
8186
8187         * postscript.c: Comment fixes.
8188         (ps_preopen_driver) Change default font size to 10pt.
8189
8190         * sfm-read.c: (read_variables) Byteswap sv.print, sv.write as
8191         int32s.
8192         (parse_format_spec) Change system-file format spec argument type
8193         to int32.  Parse the format spec with bitwise operators.
8194
8195         * sfmP.h: (struct sysfile_format) Removed.
8196         (struct sysfile_variable) Changed print, write members from
8197         sysfile_format to int32.
8198
8199         * tokens.h: Esthetic fixes.
8200         [__GNUC__] (macro id_match) New macro to hopefully speed up
8201         identifier matching.
8202         (macros match_id, match_tok, match_int) Implemented in
8203         compiler-independent manner; no longer GNU C only.
8204
8205         * vfm.h: Include time.h.
8206
8207 Mon Jan  5 11:06:15 1998  Ben Pfaff  <blp@gnu.org>
8208
8209         * data-list.c: (dump_fixed_table) Change tab_dim().
8210
8211         * dump-sysfile.c: (open_sysfile) Fix mmap() call.
8212
8213         * error.c: Include command.h.
8214
8215         * frequencies.g: Formatting fixes.
8216
8217         * frequencies.q: Add tab_dim() calls.  Make the total cell a
8218         joined cell.
8219
8220         * glob.c: Include command.h.
8221
8222         * sfm-read.c: (struct sfm_fhuser_ext) New members sysmis, highest,
8223         lowest.
8224         (sfm_read_dictionary) Initialize sysmis, highest, lowest.
8225         (sfm_read_machine_flt64_info) Update sysmis, highest, lowest.
8226         (read_variables) Byteswap sv.type; byteswap sv.print, sv.write as
8227         the other elements (is this right?).
8228         (read_variables) Use lowest, highest members.
8229         (parse_format_spec) New arg `vv' for more stringent checking.
8230         (dump_dictionary) Byteswaps nonexplicit data.
8231         (sfm_read_case) Byteswap numeric data.
8232
8233         * som.c: Initialize table_num to 1.
8234         (render_segments) Remember to increment y_index after each table
8235         segment.
8236
8237         * sysfile-info.c: (cmd_sysfile_info) Change tab_dim().  Don't call
8238         avl_count() on a NULL tree.  No title for the second table.
8239         (cmd_display) Handle DISPLAY VECTORS by calling display_vectors().
8240         Handle AS_SCRATCH as AS_NAMES.  Warn if no variables.  Re-enable;
8241         fix call to display_variables().
8242         (display_variables) Default to 4 columns, not 3.  Set up headers.
8243         Column title is Variable, not Name.  Fix index column.
8244         Add joint text.  Add tab_dim().  Handle value labels properly.
8245         Handle DISPLAY LABELS properly.  Draw boxes correctly.
8246         (describe_variable) Value labels don't need titles.  Don't clear
8247         nonexistent index column.
8248         (compare_vectors_by_name) New function.
8249         (display_vectors) New function.
8250
8251         * tab.c: (tab_height) Add assertion.
8252         (tab_null) Add debug code.
8253         (evaluate_dimensions) Add debug code.
8254
8255         * var.h: (struct variable) get_proc data is sometimes used
8256         simultaneously with other per-procedure info, therefore it was
8257         removed from the union.  All references changed.        
8258
8259 Sun Jan  4 18:13:33 1998  Ben Pfaff  <blp@gnu.org>
8260
8261         * ascii.c: (ascii_close_page) Put title on second line of headers
8262         if there is no subtitle.
8263
8264         * command.c: (glob var cur_proc) Move definition here, from
8265         common.c.
8266         (cmd_remark) Emit blank line before remarks.
8267
8268         * command.h: (glob var cur_proc) Move declaration here, from
8269         common.h.
8270
8271         * data-list.c: (dump_fixed_table) Fix messages.
8272         (dump_free_table) Call tab_nat_dim().
8273
8274         * descript.q: (dump_z_table) Modify tab_dim() call.
8275
8276         * frequencies.q: (dump_condensed, dump_statistics) Add tab_dim()
8277         call.
8278         (dump_statistics) Don't output header.
8279
8280         * groff-font.c: Minor format fix.
8281
8282         * html.c: Comment fix.
8283
8284         * list.q: (write_varname) Indent after advancing page.
8285
8286         * output.h: Minor reordering.
8287
8288         * postscript.c: Comment fixes.  Many places, '\n' was replaced by
8289         a reference to eol[].
8290         (struct ps_driver_ext) New member eol[].
8291         (ps_preopen_driver) Initialize eol[].
8292         (ps_postopen_driver) Fix sense of text for text_opt, line_opt
8293         defaults.  Handle headers.  Fix test for minimum page length.
8294         (static var option_tab[]) Add `line-ends'.
8295         (ps_option) Handle line-ends to change eol[].
8296         (postopen) Scale prop_em_width and fixed_width properly.  Set the
8297         prologue title to outp_title if applicable.  Replace the prologue
8298         line ends with eol[].  Call draw_headers() if headers are enabled.
8299         (text_width) New function.
8300         (out_text_plain) New function.
8301         (draw_headers) New function.
8302
8303         * print.c: (dump_table) Call tab_nat_dim().
8304
8305         * som.c: (som_blank_line) Only advance a line if not at the top of
8306         a page.
8307         (som_submit) Move several informational table calls here.
8308         Increment subtable_num if SOMF_NO_TITLE not set.
8309         (output_table) Advance a line if SOMF_NO_SPACING not set.
8310         (render_columns, render_segments, render_simple) Handle spacing
8311         between tables.  Handle table titles.  Remove debug output.
8312
8313         * som.h: (SOMF_*) New enum series.
8314         (struct som_table_class) New member `flags'.
8315
8316         * sysfile-info.c: (cmd_sysfile_info) Calls tab_nat_dim().  No
8317         headers or spacing.
8318         (display_variables) Calls tab_nat_dim().
8319         (describe_variable) Remove restriction on number of value labels.
8320         Make value labels separated by thin lines.
8321
8322         * tab.c: (tab_create) Default `flags' to none.
8323         (tab_float) New arg `w'.  All references changed.
8324         (tab_nat_dim) New function.
8325         (tab_output_text) No title or spacing.
8326         (tab_flags) New function.
8327         (tabi_flags) New function.
8328         (tabi_title) New function.
8329         (strip_height) Removed.
8330         (tabi_render) Skip title when necessary.
8331         (static var tab_tab_class) Add tabi_flags, tabi_title.
8332         (evaluate_dimensions) Disable display of column, row size.
8333         (sum_columns) Add title height to top header.
8334         (render_strip) Moved within file.
8335
8336         * tab.h: (struct tab_table) New member `flags'.
8337
8338         * vfm.c: (dump_splits) Calls tab_nat_dim().  No title.
8339
8340 Sat Jan  3 16:55:44 1998  Ben Pfaff  <blp@gnu.org>
8341
8342         * Most source files: Add `const' attribute in all appropriate
8343         places.
8344         
8345         * sysfile-info.c: (cmd_sysfile_info) Add tab_dim() call, add a
8346         column to the variables table for use by describe_variable().
8347         (cmd_display) Disable for the present.
8348         (display_documents) Don't wrap documents.
8349         (display_variables) Table has four columns now.
8350         (describe_variable) Table has four columns now.  Don't use a
8351         subtable, use joined cells instead.
8352
8353         * tab.c: (tab_create) Don't set `join'.
8354         (tab_realloc) ct array is not made up of a_string's.
8355         Reallocate trh, hrh, h arrays, initialize trh array.  Initialize
8356         cell contents on GLOBAL_DEBUGGING, not DEBUGGING.
8357         (text_format) New function.
8358         (tab_title) Rewritten, uses text_format().
8359         (tab_text) Rewritten, uses text_format().
8360         (tab_joint_text) New function.
8361         (tab_join) Removed.
8362         (static var hit) New variable.
8363         (render_strip) New args r1, r2.  Implement joined cells that fit
8364         on a single page.
8365         (tabi_render) Increment hit.  Pass new args to render_strip().
8366         (evaluate_dimensions) [GLOBAL_DEBUGGING] Check for uninitialized
8367         cells.  For t_naw and t_nah, ignore joined cells and null cells in
8368         calculations.
8369         
8370         * tab.h: (struct tab_join_rect) Removed.
8371         (struct tab_table) Removed `join'.
8372         (TAB_JOIN_MAIN) Removed.
8373         (struct tab_joined_cell) New struct.
8374         (TAT_NOWRAP) New enum.
8375
8376 Fri Jan  2 01:39:58 1998  Ben Pfaff  <blp@gnu.org>
8377
8378         * ascii.c: (ascii_postopen) Replace ASCII_* macros with their
8379         expansions.
8380         (ascii_postopen_driver) Fix initialization of *_spacing so that
8381         the TAL_0 bit doesn't count.
8382
8383         * data-list.c: (dump_fixed_table) Use natural width for Format
8384         column.
8385
8386         * glob.c: (rerange) Removed.
8387         (get_date) Formatting fixes.  Internationalization fix.
8388
8389         * html.c: (html_postopen_driver) Replace HTML_DEFAULT_OUTPUT_FILE
8390         with "pspp.html".
8391
8392         * postscript.c: (ps_postopen_driver) Replace
8393         PS_DEFAULT_OUTPUT_FILE with "pspp.ps".
8394
8395         * som.c: (som_submit) Don't eject page before every table.
8396         (output_table) Fix order of arguments on call to area().
8397         (render_columns) Fix calculation of max_len.
8398         
8399         * tab.c: (tabi_cumulate) Minor change to increase elegance.
8400         (render_strip) New function.
8401         (strip_height) New function.
8402         (tabi_render) Rewrite as calls to render_strip().
8403
8404         * tab.h: (TAT_* enums) Removed TAT_RICH, all references removed.
8405         Renumbered TAT_PRINTF, TAT_TITLE, TAT_FIX to correspond better
8406         with the TAB_* and OUTP_T_* constants.
8407         
8408 Thu Jan  1 11:53:52 1998  Ben Pfaff  <blp@gnu.org>
8409
8410         * Makefile.am: Formatting fixes.
8411
8412         * ascii.c: (ascii_postopen_driver) Initialize *_line_spacing[],
8413         *_line_width[].
8414
8415         * data-list.c: (dump_fixed_table) Add tab_dim() call.
8416
8417         * descript.q: (dump_z_table, display) Add tab_dim() calls.
8418
8419         * dump-sysfile.c: (glob var length) Make type off_t.
8420         (usage) Fix arguments.
8421         (main) Return 0.
8422
8423         * output.h: (OUTP_T_*) Change constants' value to match tab.h.
8424         Now right-justification is the default so many references had to
8425         change.
8426         (struct outp_class) Removed line_width, all references changed.
8427         (OUTP_DEV_*) Add OUTP_DEV_DISABLED.
8428         (struct outp_driver) Add elements horiz_line_width,
8429         vert_line_width, horiz_line_spacing, vert_line_spacing.  Remove
8430         som element.
8431
8432         * postscript.c: (outp_encodings) Formatting fixes.  Fix garbage
8433         collection.
8434         (postopen) Initialize all the informational members of
8435         outp_driver.
8436
8437         * som.c: (som_blank_line) New function, renamed from blank_line(),
8438         all references changed.
8439         (som_submit) Disables drivers whose pages can't be opened.
8440         (render_columns, render_simple, render_segments) Add debug output.
8441         (render_columns) Fix loop range.
8442         (render_simple) Don't try to render the headers, they're taken
8443         care of automatically.  Advance cp_y past the table when done.
8444         (render_segments) Fix loop ranges.
8445
8446         * tab.c: Initialize new members of tab_table.
8447         (tab_vline) Handle trv[]; don't set style for spacing-only lines.
8448         (tab_hline) Handle trh[]; don't set style for spacing-only lines.
8449         (tab_box) Handle trh[], trv[]; don't set style for spacing-only
8450         lines.
8451         (set_expr) Removed.
8452         (tab_dim) New function.
8453         (tab_col_width) Removed.
8454         (tab_row_height) Removed.
8455         (tab_output_text) Call tab_dim().
8456         (tabi_driver) Call evaluate_dimensions(), sum_columns().
8457         (tabi_area) Implemented.
8458         (tabi_cumulate) Implemented.
8459         (tabi_render) Partially implemented, but broken.
8460         (var tab_table_class) Made static.
8461         (evaluate_dimensions) New function.
8462         (sum_columns) New function.
8463
8464         * tab.h: (enum t_*) Now start at t_end.  New: t_ptw, t_nr, t_nc,
8465         t_nah, t_naw, t_neg, t_xch, t_dup, t_lbl, t_jnz, t_sac, t_sar,
8466         t_scr, t_srr, t_sentinel.  Removed: t_nat.
8467         (struct tab_table) New: wl, wr, ht, hb, trh, hrh, trv, wrv, dim,
8468         max_stack_height, w, h.  Removed: ce, re.
8469         (macro blank_line) Removed.
8470         (glob var zero_length) Removed.
8471
8472 Fri Dec 26 15:44:31 1997  Ben Pfaff  <blp@gnu.org>
8473
8474         * Most source files: include some of the new include files broken
8475         out of var.h.
8476         
8477         * Makefile.am: (pspp_SOURCES) Add all the new source files to the
8478         list.
8479
8480         * aggregate.c: (glob var outfile) Make static.
8481
8482         * command.c: (glob var pgm_state) Move here.
8483
8484         * common.c: (glob vars endian, second_lowest_value, pgmname,
8485         finished, curdate, cur_proc, start_interactive, history_file) Move
8486         here.
8487
8488         * descript.q: (structs dsc_z_score, descriptives_trns) Move here.
8489
8490         * file-handle.q: (glob vars files, inline_file) Move here.
8491
8492         * glob.c: Lost lots of glob vars, detailed in individual file
8493         entries.
8494         (init_glob) set_printer, set_screen were obsolete, deleted.
8495         set_cprompt has fewer spaces because pspp has fewer letters than
8496         fiasco.
8497
8498         * inpt-pgm.c: (glob vars inp_init, inp_init_size) Move here.
8499         (inp_nval) Made static.
8500
8501         * lexer.c: (glob vars token, tokval, tokstr, tokstr_size,
8502         tokstr_len, toklongstr, tokint) Move here.
8503
8504         * misc.c: Lost several vars and functions.
8505
8506         * set.q: (all the set_* variables) Move here.
8507
8508         * str.c: (strmaxcpy, strbarepadcpy, strbarepadlencpy, strpadcpy,
8509         blpstrset, strpadcmp, memrev, memrmem, cmp_str) Move here from
8510         misc.c.
8511
8512         * tab.c: (set_expr, tab_col_width, tab_row_height) New functions.
8513
8514         * tab.h: (enum series t_*) New enums.
8515         (struct tab_table) Use arena struct tag.  New members ce, re.
8516
8517         * tokens.h: Comment fixes.
8518
8519         * var.h: Move lots of enums and variables and functions and
8520         structures to other files.  Use and declare a lot more union and
8521         struct tags.  Comment fixes.  
8522
8523         * vector.c: (glob vars vec, nvec) Move here.
8524
8525         * vfm.c: (glob vars reinit_sysmis, reinit_blanks, init_zero,
8526         init_blanks, last_vfm_invocation) Move here.
8527
8528         * cases.h: New file.
8529         (struct long_vec) Move here.
8530         (vec_init, vec_clear, vec_insert, vec_delete, devector, envector)
8531         Move here.
8532
8533         * command.h: New file.
8534         (STATE_* enums) Move here.
8535         (glob var pgm_state) Move here.
8536
8537         * format.c: New file.
8538         (glob var formats) Move here.
8539         (parse_format_specifier_name, fmt_to_string,
8540         check_input_specifier, check_output_specifier,
8541         check_string_specifier, convert_fmt_ItoO, parse_format_specifier)
8542         Move here.
8543
8544         * format.h: New file.  Move functions now in format.c here.
8545         (FMT_* enums) Move here.
8546         (struct fmt_desc) Move here.
8547         (FCAT_* enums) Move here.
8548         (struct fmt_spec) Move here.
8549         (glob vars formats, fmt_parse_ignore_error) Move here.
8550
8551         * inpt-pgm.h: New file.
8552         (INP_* enums) Move here, make #defines into enums.
8553         (glob vars inp_init, inp_init_size) Move here.
8554
8555         * sort.h: New file.
8556         (glob vars v_sort, nv_sort) Move here.
8557         (sort_cases, read_sort_output) Move here.
8558
8559         * vector.h: New file.
8560         (struct vector) Move here, add struct tag.
8561         (glob vars vec, nvec) Move here.
8562         (find_vector) Move here.
8563
8564         * New file.
8565         (glob vars last_vfm_invocation, temp_case, reinit_sysmis,
8566         reinit_blanks, init_zero, init_blanks) Move here.
8567         (struct case_stream) Move here.
8568         (glob vars vfm_source, vfm_sink, vfm_memory_stream,
8569         vfm_disk_stream, sort_stream, data_list_source,
8570         input_program_source, file_type_source, get_source, n_lag) Move
8571         here.
8572         (procedure, write_case, lagged_case, compact_case, page_to_disk)
8573         Move here.
8574                 
8575 Wed Dec 24 22:40:42 1997  Ben Pfaff  <blp@gnu.org>
8576
8577         * Makefile.am: (pspp_SOURCES) Added html.c, som.c, som.h.
8578         (LDADD) Add libdcdflib.
8579
8580         * ascii.c: Comment and formatting fixes.  Almost every external
8581         function had an assert added, checking driver_open and page_open.
8582         (ascii_init_driver) Broken into ascii_preopen_driver,
8583         ascii_postopen_driver, ascii_close_driver.  Manages driver_open.
8584         (ascii_open_page) Sets page_open.
8585         (ascii_close_page) Clears page_open.
8586
8587         * html.c: Comment and formatting fixes.  Almost every external
8588         function had an assert added, checking driver_open and page_open.
8589         (html_init_driver) Broken into html_preopen_driver,
8590         html_postopen_driver, html_close_driver.  Manages driver_open.
8591         (html_open_page) Sets page_open.
8592         (html_close_page) Clears page_open.
8593         (html_submit) Disabled.
8594
8595         * lexer.c: (parse_string) Remove debugging printf.
8596
8597         * list.q: (determine_layout) Open a page if one is not yet open.
8598
8599         * output.c: Comment fixes.
8600         (add_class) Set the class member of the new list element.
8601         (parse_options) Don't handle device type.
8602         (colon_tokenize) New function.
8603         (configure_driver) New four-field format with a field for device
8604         type.  Now initialize driver_open, page_open, next, and prev
8605         fields.  Use new colon_tokenize() function.  Don't do a memory
8606         copy to replace a driver, it doesn't work; instead delete the old
8607         driver and insert a new one.
8608         (destroy_driver) Don't call som_destroy_driver().  Close the page
8609         if it's open.  Find the class in the list of classes and decrement
8610         that reference count.  Remove the driver from the global driver
8611         list.
8612         (outp_iterate_enabled_drivers) Renamed outp_drivers().  All
8613         references changed.  Rewritten.  Don't return a driver that's not
8614         enabled.
8615         (outp_eject_page) All references to som_internal_eject_page()
8616         changed to use this.  Sets cp_x to 0 as well as cp_y.
8617
8618         * output.h: (OUTP_I_* enums) Removed.
8619         (struct som_submission_form) Removed.
8620         (struct outp_class) init_driver broken into preopen_driver,
8621         postopen_driver, and close_driver.  submit changed to take a
8622         som_table argument.
8623
8624         * postscript.c: Comment and formatting fixes.  Almost every
8625         external function had an assert added, checking driver_open and
8626         page_open.
8627         (ps_init_driver) Broken into ps_preopen_driver,
8628         ps_postopen_driver, ps_close_driver.  Manages driver_open.
8629         (ps_open_page) Sets page_open.
8630         (ps_close_page) Clears page_open.
8631
8632         * som.c: New file, base implementation.
8633         
8634         * som.h: (struct som_table) Add struct tag.
8635         (enum SOM_COL_ACROSS) Removed.
8636         (SOM_ROWS, SOM_COLUMNS) New enums.
8637         (struct som_table_class) Add member `cumulate'.  Remove `segment';
8638         change `render' arguments.
8639         (struct som_point, struct som_rect) Removed.
8640         (som_submit_table) Fixed typo, should have been som_submit.
8641
8642         * sysfile-info: (describe_variable) Don't try to insert a
8643         subtable; just destroy it for now.
8644
8645         * t-test.q: Include dcdflib/cdflib.h instead of cdflib.h.  Fix
8646         references to value labels.
8647
8648         * tab.c: (tab_destroy) New function.
8649         (tab_columns) Change argument.
8650         [0] (tab_submit) Remove dead code.
8651         (tab_title) Allocate string from the table's arena.
8652         (tab_output_text) Only free the buffer if we allocated it.
8653         (tab_submit) New function.
8654         (static vars t, d) New static vars.
8655         (tabi_table, tabi_driver, tabi_count, tabi_area, tabi_columns,
8656         tabi_headers, tabi_cumulate, tabi_render) New functions.
8657         (glob var tab_table_class) New global var.
8658
8659         * tab.h: (struct tab_join_rect) Don't use a som_rect; directly
8660         encapsulate the rectangle.  All references changed.
8661         
8662 Sun Dec 21 16:18:58 1997  Ben Pfaff  <blp@gnu.org>
8663
8664         * All header files updated to use struct tags in addition to
8665         typedefs for all structures.  Don't use word `struct' in struct
8666         tags.
8667         
8668         * Makefile.am: (pspp_SOURCES) Remove html.c.
8669         (INCLUDES) Replace the lib/* includes with a single lib/ include;
8670         all references updated.
8671
8672         * command.c: (parse_cmd) Remove call to som_check_workspace.
8673         (output_line) Update to new som.
8674
8675         * data-in.c: (parse_numeric) A single dot is not an error; it is
8676         the system-missing value.
8677
8678         * data-list.c: (dump_fixed_table, dump_free_table) Update to new
8679         som.
8680
8681         * data-out.c: Added `const' as appropriate to many prototypes.
8682         (convert_E, convert_F, convert_CCx) Take double argument instead
8683         of value * argument.
8684         (convert_format_to_string) Call changed functions appropriately.
8685         Instead of modifying the caller's value for FCAT_SHIFT_DECIMAL,
8686         make a local copy of the value.
8687
8688         * descript.q: Remove custom_variables() prototype now provided by
8689         q2c.  
8690         (custom_variables) Don't increment sbc_variables, the caller does
8691         this.
8692         (dump_z_table, display) Update to new som.
8693
8694         * error.c: (vmsg) Add const to prototype.  Remove code to handle
8695         `too many errors' condition.
8696         (check_error_count) New function.
8697         (msg) Add const to prototype.
8698
8699         * filename.c: (open_file) Rewrite for elegance.
8700
8701         * frequencies.q: Remove custom_*() prototypes now provided by q2c.
8702         (dump_full, dump_condensed, dump_statistics) Update for new som.
8703
8704         * list.q: Don't include somP.h.  Change all references to
8705         som_driver_ext to refer to the new members of som_driver.  Change
8706         som_internal_eject_page() references to outp_eject_page().
8707
8708         * main.c: (parse) Rewrite for elegance.  Add call to
8709         check_error_count().
8710
8711         * output.c: (add_class, outp_list_classes, outp_configure_driver)
8712         Rewrite or revise for new outp_driver_class_list structure.
8713         (outp_iterate_enabled_drivers) Fix comparison between disabled
8714         devices and current device type.
8715         (outp_eject_page) New function.
8716
8717         * output.h: Comment fixes.
8718         (struct outp_driver) New members driver_open, page_open, cp_x,
8719         cp_y, font_height, prop_em_width, fixed_width.  Deleted members
8720         ref_count, next.
8721         (struct outp_driver_class_list) New struct.
8722         (outp_class_list) Changed to type outp_driver_class_list; all
8723         references updated.
8724
8725         * print.c: (dump_table, print_trns_proc) Updated for new som.
8726
8727         * q2c.c: (dump_vars) Simplify array subcommand code.  Declare
8728         prototypes for custom subcommands.
8729         (dump_subcommand) Always include the `else'.
8730         (dump_parser) Fix comments in output code.
8731
8732         * set.q: Reordered functions.
8733
8734         * som-frnt.c, som-high.c, som-low.c, somP.h: Removed.
8735         
8736         * som.h: Rewritten from scratch.
8737
8738         * str.h: Remove dead code.
8739
8740         * tab.c, tab.h: New files, base implementation.
8741
8742         * sysfile-info.c: (cmd_sysfile_info, describe_variable) Update to
8743         new som.
8744
8745         * t-test.q: New code from John Williams
8746         <johnr.williams@stonebow.otago.ac.nz>.  Include math.h, cdflib.h.
8747         Many many new static vars and defines.
8748         (precalc, postcalc, g_postcalc, z_postcalc, t_pairs, t_groups,
8749         groups_calc, pairs_calc, z_dev_calc, z_calc) New functions.
8750         (struct value_list) New struct.
8751         (variance, covariance, pooled_variance, oneway, pearson_r, f_sig,
8752         t_crt, t_sig, print_t_groups) New functions.
8753         (cmd_t_test) Implemented.
8754
8755         * temporary.c: (cancel_temporary) Only free the temp_dict if it's
8756         non-NULL.
8757
8758         * vfm.c: (dump_splits) Update to new som.
8759
8760 Thu Dec  4 23:02:22 1997  Ben Pfaff  <blp@gnu.org>
8761
8762         * Makefile.am: (fiasco_SOURCES) Add html.c.
8763
8764         * aggregate.c: Base source.
8765
8766         * ascii.c: (postopen, preclose) Reformat.
8767
8768         * data-out.c, expr-evl.c: Comment fixes.
8769         
8770         * filename.c: (open_file) When opening a file for writing, use
8771         line buffering instead of full buffering for better interactive
8772         performance.  Suggested by Valerio Aimale
8773         <valerio@svpop.com.dist.unige.it>.  Also, recognize special file
8774         names `stdin', `stdout', `stderr'.
8775
8776         * groff-font.c: Comment fixes.
8777
8778         * html.c: New file; base version.
8779
8780         * list.q: (write_all_headers, clean_up, determine_layout,
8781         list_cases) Ignore `special' devices for now.  Needs to be fixed
8782         later.
8783
8784         * output.c: (outp_init) Add html driver to list; reverse list
8785         order.
8786
8787         * output.h: (struct outp_class_struct) New members `special',
8788         `submit'; comment fixes.  All references changed.
8789
8790         * postscript.c: (ps_init_driver) Make defaults for text_opt,
8791         line_opt depend on whether the OUTP_DEV_SCREEN bit is set on the
8792         device.
8793         (postopen) Comment fix.
8794         (preclose) Comment fixes, formatting fixes.  Change x->file.file
8795         references to more proper f->file.
8796
8797         * som-high.c: (som_submit_table) Special classes use their own
8798         renderers.
8799
8800         * som.h: Comment fixes.
8801
8802         * temporary.c: (new_dictionary) Don't try to xstrdup() a NULL
8803         string.
8804         
8805 Tue Dec  2 14:36:07 1997  Ben Pfaff  <blp@gnu.org>
8806
8807         * Makefile.am: (fiasco_SOURCES) Add aggregate.c back in.
8808
8809         * aggregate.c: Still working on this.
8810
8811         * command.c: (cmd_table[]) Add AGGREGATE back in.
8812         (split_words) Make '-' a legal word separator as well as ' '.
8813
8814         * main.c: Comment fixes.
8815
8816         * q2c.c: (dump_parser) Don't require the procedure's full name to
8817         be present, in the generated source.
8818
8819         * t-test.q: Change name to `t-test' from `t test'.  Let PAIRS be
8820         multiply specified and let it be default; let MISSING, CRITERIA,
8821         FORMAT be multiply specified.
8822         (cmd_t_test) Parse command name.  [DEBUGGING] Call debug_print().
8823         (custom_groups) Fix defaults.
8824         (custom_pairs) Check whether this is a PAIRS subcommand before
8825         attempting to parse.  Better garbage collection.  Proper storage
8826         allocation.
8827         [DEBUGGING] (debug_print) New function.
8828
8829         * temporary.c: Comment fixes.
8830         (copy_variable) Don't copy variable name and index.
8831         (save_dictionary) Copy variable name and index by hand.
8832
8833         * vars-atr.c: Comment fixes.
8834         (create_variable) New dictionary argument.  All references
8835         changed.
8836         (common_init_stuff) New dictionary argument.  All references
8837         changed.
8838         (init_variable) New dictionary argument.  All references changed.
8839         (dup_variable) New function.
8840
8841         * vars-prs.c: (parse_variables) If there are any errors, we always
8842         return 0.  Previously, it was possible for some types of errors to
8843         be ignored.
8844         
8845 Sat Nov 22 01:20:59 1997  Ben Pfaff  <blp@gnu.org>
8846
8847         * Makefile.am: (fiasco_SOURCES) For 0.1.5 release, remove
8848         aggregate.c.
8849
8850         * command.c: (cmd_table[]) Comment out AGGREGATE; add T TEST.
8851
8852         * list.q, t-test.q: Remove ALL option from VARLIST declaration in
8853         grammar rules.
8854
8855         * q2c.c: Comment fixes.
8856         (SBC_* enums) Remove SBC_VARLIST_ALL; all references removed.
8857         
8858         * t-test.q: (cmd_list) Rename cmd_t_test.
8859
8860         * temporary.c: (new_dictionary) Don't declare as static.
8861         
8862 Fri Nov 21 00:03:06 1997  Ben Pfaff  <blp@gnu.org>
8863
8864         * aggregate.c: Changes, still not finished.
8865
8866         * file-handle.q, frequencies.q, list.q, set.q: Comment fixes.
8867
8868         * q2c.c: Comment fixes.  Now its output is internationalized.
8869         (get_token) Fix parsing of escapes within literal strings.
8870         (main) Fix bad #line directives in output.
8871
8872         * t-test.q: Base implementation.
8873
8874         * temporary.c: (new_dictionary) New function.
8875         (restore_dictionary) [__CHECKER__] Change fill character to *
8876         (from @).
8877         
8878 Sun Nov 16 01:29:57 1997  Ben Pfaff  <blp@gnu.org>
8879
8880         * Makefile.am: (BUILT_SOURCES, fiasco_SOURCES) Add t-test.c
8881
8882         * aggregate.c: Changes, still not finished.
8883
8884         * descript.q, list.q: Comment fixes.
8885
8886         * q2c.c: Almost completely rewritten.
8887
8888         * t-test.q: New file, not complete.
8889
8890 Fri Nov 14 00:14:48 1997  Ben Pfaff  <blp@gnu.org>
8891
8892         * aggregate.c: Changes, still not finished.
8893
8894         * sort.c: (sort_cases) Call cancel_temporary() instead of doing it
8895         by hand.
8896
8897         * temporary.c: (cancel_temporary) New function.
8898
8899         * vars-atr.c: (discard_variables) Call cancel_temporary() instead
8900         of doing it by hand.
8901
8902         * vfm.c: (close_active_file) After restoring a TEMPORARY
8903         dictionary, set temp_dict to NULL.  Cancel TEMPORARY through
8904         cancel_temporary().
8905         (SPLIT_FILE_procfunc) Comment fix.
8906
8907 Tue Oct 28 16:08:45 1997  Ben Pfaff  <blp@gnu.org>
8908
8909         * Makefile.am: (fiasco_SOURCES) Add aggregate.c.
8910
8911         * aggregate.c: New file, not finished yet.
8912
8913         * command.c: (cmd_table) Add AGGREGATE.
8914
8915         * common.h: (pgm_state) Move declaration to var.h.
8916
8917         * lexer.c: (bin_value_func, oct_value_func, hex_value_func) i18n
8918         fixes.
8919         (parse_string) Message fix.
8920
8921         * recode.c: Comment fix.
8922
8923         * sfm-read.c: (read_variables) Code esthetic fixes.
8924         (write_header) Default date is `Jan', not `JAN'.
8925
8926         * sfmP.h: (bswap_int32) [!__linux__] Fix off-by-one errors.
8927
8928         * sort.c: (cmd_sort_cases) Farm the work out to new function
8929         parse_sort_variables().
8930         (parse_sort_variables) New function.
8931         (sort_cases) New function.  Cancels temporary transformations,
8932         which sorting didn't do previously.
8933         (cmd_sort_cases) Better garbage collection on error.  Uses
8934         do_external_sort().
8935         (write_initial_runs, merge_once) Improved code esthetics.
8936         (sort_stream_read) Reduced to one call to read_output_cases().
8937         (read_output_cases) New function.
8938
8939         * var-labs.c: (cmd_variable_labels) Re-enabled truncation of
8940         variable labels to 120 characters.
8941
8942         * var.h: Comment fixes.
8943         (glob var pgm_state) From common.h.
8944
8945         * vars-atr.c: (discard_variables) Set pgm_state to STATE_INIT.
8946
8947         * vars-prs.c: (parse_DATA_LIST_vars) Support PV_SINGLE in
8948         options.  Set *names to NULL on error.
8949
8950         * vfm.c: (memory_stream_init) Assert compaction_nval != 0.
8951
8952 Thu Oct  9 09:59:49 1997  Ben Pfaff  <blp@gnu.org>
8953
8954         * sfm-write.c, vfm.c: [HAVE_UNISTD] #include <unistd.h>, needed by
8955         SunOS4.  From Alexandre Oliva <oliva@dcc.unicamp.br>.
8956
8957 Wed Oct  8 18:55:24 1997  Ben Pfaff  <blp@gnu.org>
8958
8959         * vfm.c: (page_to_disk) Added missing local variables.
8960
8961 Tue Oct  7 20:23:17 1997  Ben Pfaff  <blp@gnu.org>
8962
8963         * get.c: Comment fix.
8964
8965         * sort.c: (cmd_sort_cases) Attempt to perform internal sort if the
8966         source is anything other than a disk stream, not just if it's in a
8967         memory stream.  Call page_to_disk() before external sort.
8968         (allocate_cases) Message fix.
8969
8970         * vfm.c: (prepare_for_writing) Warn user when paging workspace to
8971         disk.
8972         (page_to_disk) New function.
8973
8974 Sun Oct  5 15:56:14 1997  Ben Pfaff  <blp@gnu.org>
8975
8976         * Makefile.am: (INCLUDES) Include .. instead of $(top_srcdir).
8977
8978         * common.h: (macro strerror) Remove.  From Alexandre Oliva
8979         <oliva@dcc.unicamp.br>.
8980
8981         * get.c: (dict_delete_run) The number of variables to delete is
8982         not necessarily the number of variables that need to be shifted
8983         up.
8984         (trim_dictionary) Don't set *options to 0.  Fix bug that caused
8985         too many variables to be deleted.
8986
8987         * postscript.c: Comment fix.
8988
8989         * q2c.c: Include strerror.c.  From Alexandre Oliva
8990         <oliva@dcc.unicamp.br>.
8991
8992         * set.q: #undef ON and OFF.  From Alexandre Oliva
8993         <oliva@dcc.unicamp.br>.
8994
8995         * sfm-read.c: (sfm_read_dictionary) Don't set the file class too
8996         early, otherwise errors cause a bad free().
8997
8998         * str.h: (macro nvsprintf) s/FORMATS/FORMAT/ typo.  From Alexandre
8999         Oliva <oliva@dcc.unicamp.br>.
9000
9001         * temporary.c: (save_dictionary) Don't allocate memory if
9002         n_documents is 0.
9003
9004         * vfm.c: (memory_stream_write) Message fix.
9005
9006 Sat Oct  4 16:20:43 1997  Ben Pfaff  <blp@gnu.org>
9007
9008         * command.c: (static var cmd_table[]) Define REPEATING DATA
9009         command.
9010
9011         * common.h: Added support for broken systems that are missing
9012         EXIT_SUCCESS, EXIT_FAILURE, RAND_MAX, and/or strerror().
9013
9014         * Many source files: Replace syntax error messages via msg() with
9015         call to syntax_error().
9016
9017         * data-list.c: (dump_fixed_table) Add support for dumping table
9018         for REPEATING DATA as well as DATA LIST FIXED.
9019         (cmd_repeating_data) Allows and requires `/' between subcommands.
9020         Does proper thing with allowing rpd.starts_end to stay 0.  Allows
9021         CONTINUED specifications to be omitted.  Forces CONTINUED to be
9022         specified if ID is.  Calculates starts_end, cont_end from logical
9023         record length as reported by fhp.  Calls dump_fixed_table() if
9024         requested.  Fixed length of record copied by memcpy.
9025         (parse_num_or_var) Sets `num' to 0, not NOT_INT, for variables.
9026         Message fix.
9027         (realize_value) Returns sensible value for out-of-range variable
9028         values.
9029         (rpd_parse_record) New argument `ofs'.  Fixed confusion between
9030         length of occurrences and length of line.  Added warning for
9031         fields that exceed the line length.  Fixed infinite loop.
9032         (read_one_set_of_repetitions) Numerous minor changes for more
9033         complete SPSS compliance.  Message fixes.
9034
9035         * dfm.c: (dfm_close) If the file being closed is the inline file,
9036         read all the remaining data before closing it.
9037         (dfm_get_record) Don't close the file on lossage, as either it
9038         has been closed already or it doesn't belong to us.
9039
9040         * error.c: (puts_stdout) New function.
9041         (vmsg) Use puts_stdout instead of puts.
9042
9043         * file-handle.q: (fh_record_width) New function.
9044
9045         * inpt-pgm.c: (init_case) Fixed buffer overrun when inp_nval % 4
9046         == 0.
9047         (clear_case) Ditto.
9048         (input_program_source_read) Made an old kluge an approved method.
9049
9050         * lexer.c: (syntax_error) New function.
9051
9052         * misc.c: [BROKEN_RAND] (ansi_rand, ansi_srand; static var next)
9053         New.
9054
9055         * output.c: (oupt_get_paper_size) Message fix.
9056
9057         * q2c.c: Numerous fixes to formatting of generated code made to
9058         conform to GNU coding standards.  Uses syntax_error() in generated
9059         code.  Other miscellaneous generated message fixes.  Added support
9060         for broken systems that are missing EXIT_SUCCESS, EXIT_FAILURE,
9061         RAND_MAX, and/or strerror().
9062
9063 Sat Oct  4 02:09:56 1997  Ben Pfaff  <blp@gnu.org>
9064
9065         * data-in.c: Comment fixes.
9066
9067         * data-list.c: (struct repeating_data_trns) New member `id_spec'.
9068         (find_variable_input_spec) New function.
9069         (cmd_repeating_data) Initializes id_spec.
9070         (rpd_parse_record) Implemented.
9071         (read_one_set_of_repetitions) Returns -3 by default in order to
9072         kluge out some potential bugs.
9073
9074         * data-out.c: Comment fixes.
9075
9076         * file-type.c: (internal_cmd_record_type) Message fix.
9077
9078         * inpt-pgm.c: (input_program_source_read) Special temporary kluge
9079         for handling -3 return value.
9080
9081 Sat Sep 20 23:58:15 1997  Ben Pfaff  <blp@gnu.org>
9082
9083         * data-list.c: Comment fixes.
9084         (struct dls_var_spec) Reordered members.
9085         (read_from_data_list_fixed) Restructured.
9086         (struct repeating_data_trns) Reordered members.  Renamed `starts'
9087         as `starts_beg', `ends' as `starts_end'.
9088         (cmd_repeating_data) Calculates length of repeated data if
9089         necessary and possible.
9090         (parse_num_or_var) Don't allow string variables.
9091         (realize_value) New function.
9092         (rpd_msg) New function.
9093         (rpd_parse_record) New function.  Currently stubbed out.
9094         (read_one_set_of_repetitions) Implemented.
9095
9096         * inpt-pgm.c: (input_program_source_read) Comment fix.
9097
9098 Thu Sep 18 21:34:57 1997  Ben Pfaff  <blp@gnu.org>
9099
9100         * command.c: (cmd_end_repeat_p) Removed.
9101         (init_cmd_parser) Doesn't set cmd_end_repeat_p.
9102         (parse_cmd_name) Removed.
9103
9104         * data-list.c: Comment fixes.
9105         (data_list_pgm) Removed `eof' member.
9106         (static var first) New var.
9107         (cmd_data_list) Sets `first'.  Ensures that DATA LIST uses the
9108         FILE TYPE file inside FILE TYPE structures.
9109         (append_var_spec) Appends to *first, not dls.spec.
9110         (parse_fixed) Message fixes.
9111         (struct rpd_num_or_var) New.
9112         (struct repeating_data_trns) New.
9113         (static var rpd) New.
9114         (cmd_repeating_data) New function.
9115         (parse_num_or_var) New function.
9116         (parse_repeating_data) New function.
9117         (read_one_set_of_repetitions) New function.
9118
9119         * file-type.c: (cmd_file_type) Message fixes.  Always
9120         default_handle to FILE TYPE file handle.
9121         (internal_cmd_record_type) Message fixes.
9122
9123 Wed Aug 20 14:22:03 1997  Ben Pfaff  <blp@gnu.org>
9124
9125         * repeat.c: Comment fix.  Disable debugging.
9126
9127         * temporary.c: (restore_dictionary) Sets splits to NULL and
9128         n_splits to 0 before destroying the variables because now doing
9129         this tries to remove split variables.
9130
9131         * vars-atr.c: (discard_variables) Asserts that n_splits is 0 after
9132         destroying the dictionary.
9133         (clear_variable) Removes a variable from splits after destroying
9134         it.
9135
9136 Mon Aug 18 18:06:55 1997  Ben Pfaff  <blp@gnu.org>
9137
9138         * cmdline.c: (set_compat) Removed.
9139         (pick_compat) Removed.
9140         (parse_command_line) Removed -c option.
9141         (pre_syntax_message) Removed -c option.
9142         (usage) Remove compatibility code.
9143
9144         * common.h: (macros VER_PC, VER_WND, VER_X) Removed.
9145         (glob var compat) Removed.
9146
9147         * compute.c: (type_check) Fixed messages about type mismatches.
9148
9149         * data-list.c: (cmd_data_list) Removed compatibility code.
9150         (fixed_parse_compatible) Calls convert_negative_to_dash().
9151         Fixed bug where it only set the variable in fx.spec if it created
9152         the variable itself.
9153         (dump_fmt_list) Spelling fix.
9154         (cut_field) Removed compatibility code.
9155
9156         * dfm.c: (cmd_begin_data) Don't require a command terminator on
9157         BEGIN DATA command.
9158
9159         * expr-evl.c: (evaluate_expression) Implement LAG.
9160
9161         * expr-prs.c: (parse_add) Calls convert_negative_to_dash().
9162         (parse_neg) Calls convert_negative_to_dash().
9163         (LAG_func) Increases n_lag to the lag requested.  Fixed assignment
9164         bug.
9165
9166         * expr.h: (struct expression_struct) Removed member max_lag.
9167
9168         * file-type.c: (parse_col_spec) Calls convert_negative_to_dash().
9169         (internal_cmd_record_type) Removed special handling to produce
9170         negative numbers from dash tokens.
9171
9172         * getline.c: (static var DO_REPEAT_level) New var.
9173         (getl_add_DO_REPEAT_file) Increments DO_REPEAT_level.
9174         (handle_line_buffer) Copies the line into getl_buf; doesn't call
9175         copy_with_DO_REPEAT_substitutions().
9176         (getl_read_line) Maintains value of getl_mode.  Calls
9177         perform_DO_REPEAT_substitutions() whenever DO_REPEAT_level is
9178         positive.
9179         (getl_close_file) Decrements DO_REPEAT_level when appropriate.
9180
9181         * getline.h: (getl_mode) New glob var.
9182
9183         * glob.c: Comment fixes.
9184         (init_glob) Restructured.  Sets set_seed.
9185         (init_compat_dependent) Removed.  All references removed.
9186         (get_date) Format changed from MM/DD/YY to DD MMM YYYY.
9187         (__htonl, __htons) Removed.  (What were these for?)
9188
9189         * lexer.c: (static var tbl) Dash set to class CNUM.
9190         (make_hexit) New function from data-out.c.
9191         (get_token_representation) Rewritten.
9192         (convert_negative_to_dash) New function.
9193         (lex_init_compat_dependent) Removed.
9194         (yylex) A dash is parsed as part of a number if it is followed by
9195         a digit.  The ASCII representation of a number is copied to
9196         tokstr.  String parsing farmed out to parse_string().  Comment
9197         fixes.
9198         (bin_value_func, oct_value_func, hex_value_func, parse_string) New
9199         functions.
9200         (preprocess_line) Line processing depends on interactive/batch
9201         mode, not on compatibility mode.  Removed PC+ compatibility code.
9202
9203         * loop.c: (loop_3_trns_proc) Comment fix.
9204
9205         * main.c: Remove dead code.
9206         (main) Remove call to init_compat_dependent().
9207
9208         * misc.c: (convert_fmt_ItoO) Make E format conversion more
9209         conformant.
9210
9211         * print.c: (parse_string_argument) Calls
9212         convert_negative_to_dash().
9213         (fixed_parse_compatible) Calls convert_negative_to_dash().
9214
9215         * repeat.c: (RPT_* defines) Removed.
9216         (struct rpt_numeric) Removed.
9217         (struct repeat_entry) New member type, changed `replacement' from
9218         char * to char **.
9219         (clean_up) Deallocation adapted to new repeat_entry.
9220         (internal_cmd_do_repeat) `type' defaults to 0.  Remove lookahead()
9221         usage.  Creates vars for `type' of 1.
9222         (parse_ids) Sets type of 1.  Adapted to new repeat_entry.
9223         (store_numeric) Rewritten, new interface.
9224         (parse_numbers) Rewritten.
9225         (parse_strings) Rewritten.
9226         (find_DO_REPEAT_substitution) New function.
9227         (perform_DO_REPEAT_substitutions) New function.
9228         (copy_with_DO_REPEAT_substitutions) Removed.
9229         (debug_print) Rewritten.
9230
9231         * set.q: Comment fix.
9232         (custom_results) Removed compatibility code.
9233         (internal_cmd_set) Removed SET EMULATION subcommand.  Removed
9234         compatibility code.
9235
9236         * sysfile-info.c: (cmd_display) Removed compatibility code.
9237
9238         * tokens.h: Comment fixes.
9239         (token types enum) Removed `toktype' typedef name for this int
9240         type.  Removed SUBST.  Restructured.
9241
9242         * vars-atr.c: (discard_variables) Sets n_lag to 0.
9243
9244         * vars-prs.c: Comment fix.
9245
9246         * vfm.c: Comment fixes.
9247         (glob var n_lag) New var.
9248         (static vars lag_count, lag_head, lag_queue) New vars.
9249         (procedure) Removed argument nlag.
9250         (setup_lag) New function.
9251         (close_active_file) Discards lagging state.
9252         (lag_case) New function.
9253         (lagged_case) New function.
9254         (write_case) Lags a case if lagging.
9255
9256         * weight.c: (cmd_weight) Removed compatibility code.
9257         
9258 Sun Aug 17 22:34:40 1997  Ben Pfaff  <blp@gnu.org>
9259
9260         * getline.h: (struct getl_script) New members loop_index, macros.
9261
9262         * getline.c: (getl_add_file) Sets first_line field to NULL.
9263         (getl_add_DO_REPEAT_file) New function.
9264         (handle_line_buffer) When the current line's length is negative,
9265         set the filename and line number.  Increment line number after
9266         reading line.  Pass the line to
9267         copy_with_DO_REPEAT_substitutions() for processing.
9268         (getl_close_file) Free DO REPEAT lines before freeing the
9269         filename, and just set the filename to NULL when doing this,
9270         because otherwise the filename gets freed twice.
9271
9272         * glob.c: (glob var queuing) Removed.  All references removed.
9273
9274         * lexer.c: Comment fixes.
9275         (get_token_representation) New function.
9276
9277         * repeat.c: Comment fixes.
9278         (struct repeat_entry) Replaced type and v union members with a
9279         simple string.
9280         (append_record) New function.
9281         (internal_cmd_do_repeat) Started reforming it for the new
9282         repeat_entry struct.  Properly records filename changes in the
9283         getl_line_buf.  Fixed improper use of = for ==.  Fixed sense of
9284         strncasecmp() result usage.  Uses append_record() to simplify.
9285         Properly discards END REPEAT line.  Calls getl_add_DO_REPEAT_file
9286         to add in the file.
9287
9288         (copy_with_DO_REPEAT_substitutions) Started coding.
9289
9290         [DEBUGGING] (debug_print_lines) New function.
9291
9292         * set.q: (custom_results, internal_cmd_set) s/VER_PCP40/VER_PC/;
9293
9294         * tokens.h: (macro is_id1, is_idn) New macros.
9295
9296 Sat Aug 16 10:57:41 1997  Ben Pfaff  <blp@gnu.org>
9297
9298         * cmdline.c: (static var pre_syntax_message) Changed `win'
9299         compatibility mode to `wnd'.
9300
9301         * data-list.c: (fixed_parse_spss) Renamed
9302         fixed_parse_compatible().
9303
9304         * glob.c: (init_glob) Excise unused code for
9305         program_invocation_short_name.
9306
9307         * lexer.c: (preprocess_line) Leading indentors are ignored in Wnd
9308         as well as in X.
9309
9310         * print.c: (fixed_parse_spss) Renamed fixed_parse_compatible().
9311
9312         * set.q: `win' compatibility renamed `wnd'.
9313
9314 Thu Aug 14 22:11:12 1997  Ben Pfaff  <blp@gnu.org>
9315
9316         * filename.c: [__WIN32__] Change the included Windows header files
9317         (again).
9318         (absolute_filename_p) [__MSDOS__] A filename with a colon as the
9319         second character is absolute.
9320         (dirname) Fix logic error.  Don't printf() the results.
9321         (prepend_dir) Don't printf() the results.
9322
9323         * getline.c: (handle_line_buffer) New function.
9324         (getl_read_line) Reads line with handle_line_buffer() when
9325         appropriate.
9326         (getl_close_file) Discard line buffer data.
9327
9328         * getline.h: Comment fixes.
9329         (struct getl_line_list) New struct.
9330         (getl_script_struct) Added line buffer members.  These are hooks
9331         for use by DO REPEAT to allow it to insert virtual source code
9332         into the program.
9333
9334         * glob.c: (init_glob) [__DJGPP__ || (__WIN32__ && __BORLANDC__)]
9335         Override Borland C++ stupidity that claims Windows has a console
9336         window size of 0x3.
9337
9338         * repeat.c: This is in the process of being restructured from
9339         using a token-buffering approach to the DO REPEAT facility to
9340         using the more flexible approach of a line-buffering approach in
9341         conjunction with the getline module.  Comment fixes.
9342         (struct tok_struct) Removed.
9343         (static vars queue_index, queue_head, queue) Removed.
9344         (static vars line_buf_head, line_buf_tail) New vars.
9345         (internal_cmd_do_repeat) Instead of queuing tokens, queue lines.
9346         Not complete.
9347         (pull_queue, destroy_queue) Removed.
9348         [DEBUGGING] (debug_print_tokens) Removed.
9349
9350 Tue Aug  5 13:57:58 1997  Ben Pfaff  <blp@gnu.org>
9351
9352         * file-handle.q: (prepend_current_directory) New function.
9353         (internal_cmd_file_handle, fh_get_handle_by_filename) Prepends
9354         current directory before normalizing filename.
9355
9356         * filename.c: (gnu_getcwd) New function.
9357         (absolute_filename_p) New function.
9358         (search_path) New argument, PREPEND.  All references changed to
9359         pass NULL except those explicitly mentioned.  Uses
9360         absolute_filename_p().  Prepends PREPEND before trying the
9361         filename.
9362         (dirname, prepend_dir) New functions.
9363
9364         * getline.c: (getl_get_current_directory) New function.
9365         (getl_include) Passes getl_get_current_directory() as PREPEND arg
9366         to search_path().
9367                 
9368 Sun Aug  3 11:42:36 1997  Ben Pfaff  <blp@gnu.org>
9369
9370         * In several source files, the term `script' was replaced with
9371         `syntax file' inside error messages.  Usage of the term `script'
9372         in the sense of a syntax file is now deprecated.
9373
9374         * cmdline.c: (static vars pre_syntax_message, post_syntax_message)
9375         Updated messages.
9376
9377         * dump-sysfile.c: (usage) Update message.
9378
9379         * getline.c: (getl_read_line) Ignore lines beginning with `#!'.
9380
9381         * getline.h: (glob var getl_include_path) Declare extern.
9382
9383         * list.q: Define EXTERN as extern before #including somP.h.
9384
9385         * var.h: Remove declaration of `disptype' variable.
9386
9387         * vfm.c: (close_active_file) After switching the data sink to a
9388         data source, set vfm_sink to NULL, because it doesn't exist any
9389         more.
9390
9391 Thu Jul 17 21:41:44 1997  Ben Pfaff  <blp@gnu.org>
9392
9393         * glob.c: [__BORLANDC__] Include math.h.  Define _matherr() and
9394         _matherrl() to ignore all math errors.
9395
9396         * sfm-read.c: (read_value_labels) When reading the labels from
9397         disk, read the little parts separately instead of as a struct;
9398         this avoids alignment problems.
9399
9400         * sfm-write.c: (struct sfm_fhuser_ext) New member `elem_type'.
9401         (sfm_write_dictionary) Sets elem_type and frees it on lossage.
9402         (write_header) Allocates and initializes elem_type.
9403         (sfm_write_case) Uses elem_type to determine how to handle each
9404         flt64 element.
9405         (sfm_close) Frees elem_type.
9406
9407         * sfmP.h: Comment fix.
9408         [__BORLANDC__] Uses #pragma -a to adjust structure member
9409         alignment.
9410         
9411 Thu Jul 17 01:55:12 1997  Ben Pfaff  <blp@gnu.org>
9412
9413         * Makefile.am: (fiasco_SOURCES) Remove display.c.
9414
9415         * common.c: Fix typo.
9416
9417         * dfm.c: (read_record) Remove strncasecmp() emulation and fix the
9418         sense of the condition.
9419
9420         * expr-evl.c: (macro ALLOC_STRING_SPACE) [!PAGED_STACK] Add
9421         line-continuation backslash.
9422
9423         * filename.c: [__WIN32__] Include <windef.h> before <winbase.h>.
9424
9425         * frequencies.q: (custom_grouped, add_percentile) Don't use a
9426         non-constant expression as an argument to sizeof.
9427
9428         * glob.c: [__WIN32__ && __BORLANDC__] When including <conio.h>,
9429         undefine gettext macro because that's a conio function.
9430
9431         * hash.h: (hsh_prime_tab declaration) Remove.
9432
9433         * list.q: (write_fallback_headers) Move `leader' allocation out of
9434         main loop.  Change to local_alloc() allocation.
9435
9436         * output.h: Formatting fixes.  Put __attribute__ in right place on
9437         function prototypes.
9438
9439         * sfm-read.c: (read_machine_flt64_info, read_variables) Change
9440         incorrect `SECOND_LOWEST_VALUE' references to proper
9441         `second_lowest_value'.
9442
9443         * som-frnt.c: (EXTERN macro) Define as `extern' instead of null
9444         value.  This way 2 out of 3 of the som files define the vars
9445         extern, the correct way, that actually works under BC++.
9446         (som_set_float) Don't use nonconstant initializers for a struct.
9447
9448         * som-high.c: Add the standard alloca() header.
9449         (replicate_table) Add prototype.
9450
9451         Merged DISPLAY routine.
9452         * sysfile-info.c: (AS_*) New enum series.
9453         (cmd_sysfile_info) Gutted.  Calls describe_variable() to do the
9454         dirty work.
9455         (cmd_display, display_macros, display_documents,
9456         display_variables) Stolen from defunct display.c.
9457         (describe_variable) New function.
9458
9459         * temporary.c: [0] (display_tree) New debug function.
9460         (copy_variable) Performs shallow copy of value labels instead of
9461         deep copy; i.e., just copys the AVL tree and increments the
9462         reference counts.
9463
9464         * val-labs.c: Comment fixes.
9465         (do_value_labels) Optionally skip leading forward slash.
9466         (get_label) Creates only a single value label instead of many
9467         copies of one, and sets the reference count.
9468
9469         * display.c: Removed.
9470
9471         * dump-sysfile.c: New file, not yet complete.
9472
9473 Fri Jul 11 23:02:18 1997  Ben Pfaff  <blp@gnu.org>
9474
9475         For lots of source files I added more verbose_msg's.  These aren't
9476         listed below as they have tested as being benign.  In some cases
9477         these replaced debug_printf() calls.
9478
9479         * output.c: (outp_read_devices) Message fix.
9480
9481         * postscript.c: (output_encodings) Message fix.  Reports errors on
9482         fclose().
9483         (postopen) Message fix.
9484         
9485 Fri Jul 11 14:09:40 1997  Ben Pfaff  <blp@gnu.org>
9486
9487         * dfm.c: (dfm_close) Don't call fclose() for a NULL FILE.
9488
9489         * filename.c: (close_file_ext) Set f->file to NULL *after* closing
9490         it.
9491
9492         * main.c: Remove <malloc.h> #include.
9493
9494         * mis-val.c: (parse_numeric) Set .f member for each missing[]
9495         instead of trying to just set the missing[] itself, which is a
9496         gcc-specific idiom.
9497
9498         * sfm-read.c: (read_variables) Same.
9499
9500         * str.h: Add memmem() prototype.
9501
9502         * val-labs.c, var-labs.c: Replace <malloc.h> with <stdlib.h>.
9503
9504 Thu Jul 10 22:13:53 1997  Ben Pfaff  <blp@gnu.org>
9505
9506         * Makefile.am: (q2c) Don't include any libraries in the link.
9507
9508         * dfm.c: (force_line_buffer_extension) New macro.
9509         (count_tabs) New function.
9510         (tabs_To_spaces) New function.
9511         (read_record) Calls tabs_to_spaces() on the line being processed.
9512
9513         * q2c.c: Disabled i18n for this proglet so that libintl.a doesn't
9514         have to be compiled twice (once for CC, once for LOCAL_CC).
9515  
9516 Sun Jul  6 19:14:33 1997  Ben Pfaff  <blp@gnu.org>
9517
9518         * Makefile.am: (INCLUDES) Add intl directory; fix directories.
9519         (LDADD) Add @INTLLIBS@.
9520         (q2c) Add LIBS, @INTLLIBS@ to link step.
9521
9522         * inpt-pgm.c: Turn off debugging.
9523
9524         * postscript.c: (postopen) Format fix.  local_free() blocks
9525         returned by local_alloc(); don't free() them.
9526
9527 Sat Jul  5 23:44:51 1997  Ben Pfaff  <blp@gnu.org>
9528
9529         * data-in.c: (parse_string_as_format) Comment fix.  Fix check for
9530         string length.
9531
9532         * data-list.c: (read_from_data_list_fixed) Pass proper value for
9533         LEN arg, not simply the full string length.
9534
9535         * sort.c: (allocate_file_handles) Check SPSS compatible temp file
9536         directories before generic temp file directories.
9537
9538         * vfm.c: Disable debugging.
9539
9540 Fri Jul  4 13:26:41 1997  Ben Pfaff  <blp@gnu.org>
9541
9542         * get.c: Comment fix.
9543         (cmd_save_internal) Always passes GTSV_OPT_SAVE option.
9544
9545 Wed Jun 25 22:52:28 1997  Ben Pfaff  <blp@gnu.org>
9546
9547         * expr-prs.c: (debug_print_postfix) Conditionally included on
9548         GLOBAL_DEBUGGING.  Removed out_header() reference.
9549
9550         * exprP.h: Removed #undef GLOBAL_DEBUGGING.
9551
9552 Sun Jun 22 22:00:28 1997  Ben Pfaff  <blp@gnu.org>
9553
9554         * ascii.c: Removed obsolete ascii_close_page() prototype.
9555
9556         * command.c: (output_line) Comment fix.
9557
9558         * data-in.c: Formatting fix.
9559         (parse_string_as_format) Now the `fc' argument is used only for
9560         the purpose of error messages; it is not an index into the string
9561         passed.  All references changed.
9562
9563         * data-list.c: Comment fix.
9564         (cut_field) Comment fix.  Now returns the column number of the
9565         position of the field cut out on success.
9566         (parse_field) Added `column' argument.  Puts the column numbers in
9567         the error message.
9568         (read_from_data_list_free, read_from_data_list_list) Record the
9569         column number returned by cut_field(), pass it to parse_field().
9570
9571         * dfm.c: Comment fix.
9572
9573         * do-ifP.h: Comment fix.
9574
9575         * expr-prs.c: (SYSMIS_func) Implemented string-type arguments for
9576         the SYSMIS function.
9577
9578         * expr.h, exprP.h: Comment fix.
9579
9580         * glob.c: (init_glob) Only calls setlocale() and family if
9581         ENABLE_NLS set.
9582
9583         * hash.h: Comment fix.
9584
9585         * include.c: Comment fix.
9586
9587         * output.c: Comment fix.
9588
9589         * postscript.c: (ps_line_intersection) Simplified assertion.
9590
9591         * repeat.c: Comment fix.
9592
9593         * vars-atr.c: Comment fix.
9594
9595         * vars-prs.c: Comment fix.
9596
9597         * vfm.c: (vector_initialization) [DEBUGGING] Fixed undefined
9598         behavior with usage of postincrement.
9599         (memory_stream_read) Discards cases as it goes. 
9600
9601 Sun Jun 15 16:45:17 1997  Ben Pfaff  <blp@gnu.org>
9602
9603         * Makefile.am: Cleans q2c, not just distcleans it.  Distcleans
9604         foo.
9605
9606         * Most source files: Includes debug-print.h, related comment
9607         fixes.
9608
9609         * cases.c: (alloc_val) Removed complex allocation code.  Merely
9610         increments default_dict.nval and returns the former value.
9611         (envector, devector) Removed references to lv member of struct
9612         variable.
9613
9614         * common.h: (macro VME) Replaced complex definition with simple
9615         one.
9616
9617         * data-list.c: (cmd_data_list) Sets vfm_source instead of
9618         read_active_file and cancel_input_pgm.
9619         (read_from_data_list, cancel_data_list) Removed.
9620         (data_list_source_read, data_list_source_destroy_source) New
9621         functions.
9622         (glob var data_list_source) New var.
9623
9624         * dfm.c: (open_file_r, open_file_w) Simplified debug output.
9625         (cmd_begin_data) Improved criteria for an input program accessing
9626         the inline file.  Still not perfect.
9627
9628         * do-if.c: (do_if_trns_proc) Simplified debug output.
9629
9630         * expr-prs.c: Comment fixes.
9631         [DEBUGGING] (debug_print_postfix) Simplified debug output.
9632
9633         * file-handle.q: (fh_close_handle) Simplified debug output.
9634
9635         * file-type.c: Comment fixes.
9636         (cmd_file_type) Sets vfm_source instead of read_active_file and
9637         cancel_input_pgm.
9638         (cmd_end_file_type) On failure, discards variables in place of
9639         just canceling the input program.
9640         (read_from_file_type) Renamed file_type_source_read.
9641         (cancel_file_type) Renamed file_type_source_destroy_source.
9642         (glob var file_type_source) New var.
9643
9644         * get.c: (GTSV_* enum series) New enums GTSV_OPT_SAVE, GTSV_NONE.
9645         (cmd_get) Initializes options to GTSV_NONE before passing to
9646         trim_dictionary().  Removed `lv' reference.  Sets vfm_source
9647         instead of read_active_file and cancel_input_pgm.
9648         (cmd_save_internal) Initializes options before passing to
9649         trim_dictionary().  Local var `nval' removed.
9650         (dict_delete_run) Comment fixes.
9651         (trim_dictionary) Comment fixes.  Disallows scratch variables if
9652         GTSV_OPT_SAVE set in options.
9653         (read_from_get) Renamed get_source_read.
9654         (cancel_get) Renamed get_source_destroy_source.
9655         (glob var get_source) New var.
9656
9657         * inpt-pgm.c: (cmd_input_program) Sets vfm_source instead of
9658         read_active_file and cancel_input_pgm.
9659         (read_from_input_program) Renamed input_program_source_read.
9660         Simplified debug output.
9661         (cancel_input_program) Renamed
9662         input_program_source_destroy_source.
9663         (glob var input_program_source) New var.
9664
9665         * loop.c: (loop_1_trns_proc) Simplified debug output.
9666
9667         * main.c: (dump_token) Made eof output more explicit.
9668
9669         * sfm-read.c: (read_variables, dump_dictionary) Removed `lv'
9670         references.
9671
9672         * sort.c: (cmd_sort_cases) Disallows scratch variables.  Removed
9673         code for always-memory or always-disk cases.  malloc's case-list
9674         based on vfm_source_info.ncases.  Explicit support for
9675         memory_stream via memory_source_cases.
9676         (do_external_sort) Sets vfm_source instead of read_active_file and
9677         cancel_input_pgm.
9678         (allocate_file_handles) The temporary directory permissions are
9679         set to 0700 instead of 0777.
9680         (allocate_cases) Formatting fixes.  Simplified debug output.
9681         (output_record) Compacts the case if necessary before writing it
9682         out.
9683         (close_handle, open_handle_w) Simplified debug output.
9684         (write_initial_runs) Destroys vfm_sink, then sets it to
9685         sort_stream.  Writes records to memory based on
9686         vfm_sink_info.case_size.
9687         (write_to_sort_cases) Renamed sort_stream_write().
9688         (merge) Simplified error handling.  Simplified debug output.
9689         Formatting fixes.
9690         (read_from_external_sort) Renamed sort_stream_read().
9691         Reads records based on vfm_source_info.case_size.
9692         (sort_stream_write) Writes records to memory based on
9693         vfm_sink_info.case_size.
9694         (sort_stream_mode) New function.
9695         (glob var sort_stream) New variable.
9696
9697         * temporary.c: (cmd_temporary) Simplified debug output.
9698         (copy_variable) Removed references to `lv'.
9699
9700         * title.c: (get_title) Simplified debug output.
9701
9702         * var.h: Comment fixes.
9703         (struct get_proc) Removed member `lv'.
9704         (struct variable) Removed member `lv'.  Comment fixes.
9705         (glob vars read_active_file, write_active_file, cancel_input_pgm)
9706         Removed.
9707         (struct case_stream) New.
9708
9709         * vars-atr.c: (discard_variables) Changed cancel_input_pgm,
9710         read_active_file references to use vfm_source.
9711         (init_variable, replace_variable) Removed references to `lv'.
9712
9713         * vfm.c: Comment fixes.
9714         (glob var vfm_source, vfm_sink, vfm_source_info, vfm_sink_info)
9715         New variables.
9716         (static var queue, qh, qt, n_lag) Removed.  All references
9717         removed.
9718         (glob var compaction_necessary, compaction_nval, compaction_case,
9719         paging) New variables.
9720         (record_case) Removed.
9721         (procedure) Comment fixes.  Calls vfm_source->read() instead of
9722         read_active_file().
9723         (lag) Removed.
9724         (prepare_for_writing, arrange_compaction, make_temp_case,
9725         vector_initialization, setup_filter) New function.
9726         (open_active_file) Most of the code moved into the abovementioned
9727         new functions.  Now sets temp_dict to &default_dict if there is no
9728         temporary dictionary, for convenience.  New debug output.
9729         (close_active_file) Deals with changing the sink to the source.
9730         Calls finish_compaction().  Frees compaction_case.  Mostly
9731         rewritten.
9732         (glob vars disk_source_file, disk_sink_file) New vars.
9733         (destroy_active_file, read_from_memory) Removed.
9734         (disk_stream_init, disk_stream_read, disk_stream_write,
9735         disk_stream_mode, disk_stream_destroy_source,
9736         disk_stream_destroy_sink) New functions.
9737         (glob var vfm_disk_stream) New var.
9738         (glob vars memory_source_cases, memory_sink_cases,
9739         memory_sink_iter, memory_sink_max_cases) New vars.
9740         (memory_stream_init, memory_stream_read, memory_stream_write,
9741         memory_stream_mode, memory_stream_destroy_source,
9742         memory_stream_destroy_sink) New functions.
9743         (glob var vfm_memory_stream) New var.
9744         (write_case) Local var `i' renamed `cur_trns'; local var `retval'
9745         named `more_cases'.  Simplified debug output.  Otherwise mostly
9746         rewritten.
9747         (record_case) Moved into the stream drivers.  Removed.
9748         (transform) Removed (was dead code).
9749         (SPLIT_FILE_procfunc) s/vfm_replacement/vfm_sink_info/.  In the
9750         common case that the splits don't change, we don't need to copy
9751         the case into prev_case again--pointless.
9752         (compact_case) New function.
9753         (finish_compaction) New function.
9754
9755         * vfmP.h: Comment fixes.
9756         (DEV_* enum series) Removed. 
9757         (struct storage) Renamed `stream_info'.  Removed variant record.
9758         Removed `device' member.
9759
9760         * debug-print.h: New file.
9761         
9762 Sun Jun  8 01:12:38 1997  Ben Pfaff  <blp@gnu.org>
9763
9764         * autorecode.c: Turned off debugging.
9765
9766         * data-list.c: (destroy_dls) Closes the associated file handle.
9767
9768         * descript.q: (custom_variables) Added PV_NO_SCRATCH to
9769         parse_variables() options.
9770
9771         * dfm.c: (open_file_r) Removed gratuituous argument to msg() call.
9772
9773         * display.c: (display_variables) Really fixed null cell bug.
9774
9775         * file-handle.q: (fh_close_handle) Changed debugging message.
9776
9777         * frequencies.q: (custom_variables) Added PV_NO_SCRATCH to
9778         parse_variables() options.
9779
9780         * list.q: Added PV_NO_SCRATCH in q2c varlist options.
9781         (cmd_list) Fails if no variables specified.
9782         (determine_layout) Writes blank lines manually.
9783
9784         * loop.c: (loop_1_trns_proc) Made debugging code only print
9785         messages if debugging.
9786
9787         * q2c.c: (dump_subcommand) Appends sbc->message to SBC_VARLIST
9788         parse_variables() arguments.
9789         (main) Parses optional parenthesized options to varlist
9790         subcommands into sbc->message.
9791
9792         * sfm-read.c: Format fix.
9793
9794         * var.h: (FV_*) New enum series.
9795         (PV_*) New enum PV_NO_SCRATCH.
9796
9797         * vars-prs.c: (find_var) Removed.
9798         (fill_all_vars) Takes FV_* enum instead of boolean third
9799         argument.  Rewritten to deal with scratch as well as system
9800         variables.
9801         (parse_variables) Error message on scratch variable if
9802         PV_NO_SCRATCH set.
9803
9804         * vfm.c: (static var virt_begin_func) New var.
9805         (procedure) Sets up virt_begin_func.
9806         (SPLIT_FILE_procfunc) For the first case, calls virt_begin_func()
9807         after dump_splits().  For succeeding groups changes, calls
9808         virt_begin_func() instead of begin_func().      
9809
9810 Fri Jun  6 22:42:23 1997  Ben Pfaff  <blp@gnu.org>
9811
9812         * count.c, data-out.c, file-handle.q, list.q, loop.c: Turned off
9813         debugging.
9814
9815         * dfm.c: Added some debugging messages, disabled by default.
9816         (open_file_r) Fixed error message.
9817         (read_record) On eof on inline_file, instead of calling
9818         fh_close_handle(), simply jump to eof label like a normal file.
9819         Message fixes.
9820
9821         * display.c: Thin lines between rows for certain kinds of
9822         listing.  Fixed `null cell' bug.
9823
9824         * error.c: (failure) Flush stdout, stderr before failing.
9825
9826         * file-handle.q: (fh_close_handle) Added debugging message.
9827
9828         * frequencies.q: (dump_full) Bottom line extends across entire
9829         table width.  Changed title formatting.
9830         (dump_condensed) Changed title formatting.
9831         (dump_statistics) Fixed title formatting.
9832
9833         * glob.c: (init_glob) Moved initialization of cur_proc out of #if.
9834         Sets default value of set_format.
9835
9836         * list.q: (cmd_list) Calls blank_line() before determine_layout().
9837         Passes write_all_headers() to procedure() as pre-group func.
9838         (write_all_headers) New function.
9839         (determine_layout) Removed calls to write_header().
9840         Calls blank_line() before and after write_fallback_headers().
9841
9842         * recode.c: (recode_trns_free) Only attempts to free head->map if
9843         non-NULL.
9844
9845         * sfm-read.c: (read_variables) Allows `#' at beginning of system
9846         file variable names but gives a warning.  Sets `left' based on
9847         first character being/not being `#'.  On lossage frees dict->var.
9848
9849         * som-high.c: (som_draw_title) Simplified title formatting.
9850
9851         * vfm.c: (dump_splits) Fixed and changed splits formatting.
9852
9853 Thu Jun  5 22:51:15 1997  Ben Pfaff  <blp@gnu.org>
9854
9855         * autorecode.c: (cmd_autorecode) Sets h_trans to NULL at
9856         beginning.  Frees v_src, v_dest on successful exit.  Frees
9857         h_trans[*], h_trans on lossage.
9858         (recode) Frees h_trans[*], h_trans.
9859
9860         * dfm.c: (dfm_close) Formatting change.
9861         (open_inline_file) Now passed a dfm_fhuser_ext to initialize; no
9862         longer allocates its own in inline_file.
9863         (open_file_r) Passes the local dfm_fhuser_ext to
9864         open_inline_file().
9865         (open_file_w) Message fix. 
9866         (read_record) Buffer reallocation strategy changed.  Frees
9867         ext->line even in inline_file to prevent leaks.
9868         (dfm_put_record) Fixed bug where `ext' was cached before the file
9869         was opened and thus it would be NULL when the file really was
9870         open.
9871         (cmd_begin_data) Sets up inline_file basics itself, then calls
9872         open_inline_file() for the dfm_fhuser_ext.  Formatting fix.
9873
9874         * list.q: (write_line) Formatting fix.
9875         (clean_up) Minor strategy change.  Sets proportional font after
9876         finishing cleanup.
9877         (determine_layout) Sets fixed font before writing regular headers,
9878         or after writing fallback headers.
9879
9880         * modify-vars.c: (cmd_modify_vars) Frees variable lists for DROP
9881         and KEEP vars after using them.
9882
9883         * postscript.c: (ps_init_driver) Frees x->family.
9884         (postopen) When loading fonts, free the temporary font name buffer
9885         after using it.
9886         (ps_text_set_font_by_position) Free temporary font name buffer
9887         after using it.
9888         (text) Fixed code that calculated `lig' so that `lig' always gets
9889         initialized.  Formatting fix.
9890
9891         * som-low.c: (get_cell_size, som_get_table_size) `prop_height' ->
9892         `font_height'.
9893         [GLOBAL_DEBUGGIGN] (check_table) Use arena_alloc() to allocate
9894         cells, not xmalloc(), so that the cells will get destroyed
9895         automatically.
9896
9897         * sysfile-info.c: (cmd_sysfile_info) Frees the dictionary after
9898         using it.
9899
9900 Tue Jun  3 23:33:22 1997  Ben Pfaff  <blp@gnu.org>
9901
9902         * ascii.c: (ascii_text_draw) Always sets metrics for strings that
9903         are drawn.
9904
9905         * dfm.c: Comment fix.
9906
9907         * list.q: Comment fixes.  Include somP.h.  Removed static vars
9908         table, n_columns, n_rows, part.  New struct list_ext.  New static
9909         var line_buf.
9910         (n_lines_remaining, n_chars_width, write_line) New functions.
9911         (cmd_list, list_cases) Rewritten.
9912         (begin_row, end_row, flush_table) Removed.
9913         (write_header, clean_up, write_varname, write_fallback_headers,
9914         determine_layout) New functions.
9915
9916         * output.c: (outp_iterate_enabled_drivers) Minor reformat.
9917
9918         * output.h: Comment fix.
9919
9920         * postscript.c: Comment fix.
9921         (struct ps_driver_ext) Removed prop_size, fixed_size members;
9922         added font_size.  All references changed.
9923         (ps_init_driver) Initializes font_size.  Simplified space checking
9924         code.
9925         (static var option_tab[]) Removed prop-size, fixed-size; added
9926         font-size.
9927         (ps_option) Handles font_size.
9928
9929         * som-high.c: Moved prototypes into somP.h.
9930         (som_init_driver) New function.
9931         (som_submit_table) Moved some code into new function
9932         som_init_driver().
9933         (build_target) Moved some code into new function
9934         som_internal_eject_page().
9935         (som_eject_page) Uses som_internal_eject_page().
9936         (som_internal_eject_page) New function.
9937
9938         * som-low.c: Moved prototypes into somP.h.
9939
9940         * som.h: Formatting fixes.
9941
9942         * somP.h: (struct som_driver_ext) Removed em_width;
9943         added prop_em_width, fixed_width.
9944
9945 Mon Jun  2 14:25:25 1997  Ben Pfaff  <blp@gnu.org>
9946
9947         * Makefile.am: Added `localedir' definition.  Added
9948         -DLOCALEDIR="..." to DEFS.  Added -I. to INCLUDES.
9949
9950         * ascii.c: (macro draw_line) Fixed capitalization.
9951
9952         * ascii.c, autorecode.c, cases.c, cmdline.c, command.c, common.c,
9953         compute.c, count.c, data-in.c, data-list.c, data-out.c,
9954         descript.q, dfm.c, display.c, do-if.c, error.c, expr-evl.c,
9955         expr-opt.c, expr-prs.c, file-handle.q, file-type.c, filename.c,
9956         formats.c, frequencies.q, get.c, getline.c, glob.c, groff-font.c,
9957         hash.c, heap.c, include.c, inpt-pgm.c, lexer.c, list.q, loop.c,
9958         main.c, mis-val.c, misc.c, modify-vars.c, numeric.c, output.c,
9959         postscript.c, print.c, q2c.c, recode.c, rename-vars.c, repeat.c,
9960         sample.c, sel-if.c, sfm-read.c, sfm-write.c, sfmP.h, som-frnt.c,
9961         som-high.c, som-low.c, sort.c, split-file.c, sysfile-info.c,
9962         temporary.c, title.c, tokens.h, val-labs.c, var-labs.c,
9963         vars-atr.c, vars-prs.c, vector.c, vfm.c, weight.c: Marked strings
9964         for internationlization.
9965
9966         * glob.c: [HAVE_LOCALE_H] Includes locale.h.
9967
9968 Sun Jun  1 23:31:18 1997  Ben Pfaff  <blp@gnu.org>
9969
9970         * do-if.c, sort.c, val-labs.c: Comment fixes.
9971
9972         * glob.c: (init_glob) Uncommented, updated i18n support.
9973         
9974         * arena.c, ascii.c, data-in.c, descript.q, error.c, expr-evl.c,
9975         expr-opt.c, expr-prs.c, filename.c, frequencies.q, groff-font.c,
9976         output.c, postscript.c, sfm-read.c, som-high.c, vars-prs.c: Made
9977         the declarations of macros taking arguments a lot nicer.
9978
9979 Sun Jun  1 17:22:04 1997  Ben Pfaff  <blp@gnu.org>
9980
9981         * error.h: Removed CE, CW aliases for SE, SW.
9982
9983         * q2c.c: Removed explicit streq() definition since it's duplicated
9984         in str.h.
9985         
9986         * approx.h, error.h, font.h, hash.h, misc.h, output.h, somP.h,
9987         stats.h, str.h, tokens.h: Made the declarations of macros taking
9988         arguments a lot nicer-looking of <pinard@iro.umontreal.ca>.
9989         Comment fixes.
9990
9991 Sun Jun  1 12:02:06 1997  Ben Pfaff  <blp@gnu.org>
9992
9993         * cmdline.c: Comment fixes.
9994         (pick_compat) Changed return type to int.  Now, instead of setting
9995         glob var `compat' to the emulation, returns the emulation.  All
9996         references changed.
9997         (parse_command_line) Added terminating null to end of
9998         `long_options' array definition.
9999         (pre_syntax_message) Fixes.
10000         (usage) Shows the default emulation in the syntax message by
10001         calling pick_compat().
10002
10003         * getline.c: (getl_add_include_dir) Separates paths with
10004         PATH_DELIMITER, not DIR_SEPARATOR.
10005
10006         * glob.c: (init_glob) Fixed references to DEFAULT_VER_PCP40,
10007         DEFAULT_VER_WIN61, DEFAULT_VER_X40.
10008
10009         * output.c: (outp_configure_macro) Make earlier definitions for a
10010         particular key override later ones for the same key.
10011         
10012 Fri May 30 19:40:49 1997  Ben Pfaff  <blp@gnu.org>
10013
10014         * ascii.c: Comment fixes.
10015
10016         * output.c: (outp_get_paper_size)
10017         s/STAT_OUTPUT_INIT_FILE/STAT_OUTPUT_PAPERSIZE_FILE/.
10018         
10019 Sun May 25 22:34:07 1997  Ben Pfaff  <blp@gnu.org>
10020
10021         * ascii.c, postscript.c, sfm-read.c, sfm-write.c, sort.c: Include
10022         <errno.h>.  GNU libc 2 enforces this!
10023
10024         * command.c: (parse_cmd) Fixed problem with `else' clause being
10025         paired with wrong `if'.  Comment fix.
10026
10027 Fri May  9 16:53:52 1997  Ben Pfaff  <blp@gnu.org>
10028
10029         * getline.c: [!HAVE_LIBREADLINE] (read_console) Changed
10030         blp_getline() to getline().
10031
10032         * output.c: (outp_eval_dimension) Changed the fix from last time;
10033         there was no variable `a'.
10034
10035         * q2c.c: (get_line) Fixed boundary condition overrun bug.
10036
10037 Mon May  5 21:58:22 1997  Ben Pfaff  <blp@gnu.org>
10038
10039         * output.c: (outp_evaluate_dimension) Fixed handling of negative
10040         numbers having fractional parts.  Added case of a fraction without
10041         a whole-number part.
10042
10043 Fri May  2 22:08:05 1997  Ben Pfaff  <blp@gnu.org>
10044
10045         * ascii.c: (ascii_text_get_font_position) Removed.
10046
10047         * expr.h, exprP.h: Disabled debugging.
10048
10049         * groff-font.c, postscript.c: Changed `groff' to `Groff' in
10050         several places.
10051
10052         * output.h: (struct outp_class_struct) Removed
10053         text_get_font_position method.  All references deleted.
10054
10055         * postscript.c: Big change here.  Fontmaps were completely
10056         eliminated because of a change in philosophy.  Comment fixes.
10057         (struct ps_fontmap, ps2dit_map, font_family, dit2family_map)
10058         Removed.
10059         (struct ps_driver_ext) `position', `fontmap', `prop_name',
10060         `fixed_name' members removed.  New members `prop_family',
10061         `fixed_family'.  `family' member changed to type char *.
10062         (static var ps_fontmaps) Removed.
10063         () Removed.
10064         (ps_init_driver) Removed obsolete references, updated.
10065         Initializes `translate_x', `translate_y', `scale'.  Doesn't read
10066         fontmap, of course.  Refers to font names through internal_name
10067         rather than subversive means.  Frees proper items.
10068         (static var option_tab[]) Removed `fontmap-file' option; renamed
10069         `fixed-font', `prop-font'.
10070         (ps_option) Corresponds to option_tab[].
10071         (read_fontmap, release_fontmap, ps_to_dit, compare_ps2dit,
10072         hash_ps2dit, compare_dit2family, hash_dit2family, compare_family,
10073         hash_family) Removed.
10074         (postopen) Generates font names from family names.  Gets
10075         PostScript font name properly.  New prologue file comment `!!!'
10076         style.
10077         (ps_open_page) Adds translate_x, translate_y to BP prologue
10078         function; gives SF argument floating-point format.
10079         (ps_text_set_font_by_name) Doesn't try to map PostScript->Groff
10080         font name.  Doesn't change font family.
10081         (ps_text_set_font_by_position) Generates Groff font name from font
10082         family name instead of through table lookup.
10083         (ps_text_set_font_by_family) Renamed `ps_text_set_font_family',
10084         all references changed.  Reduced to simple string assignment.
10085         (ps_get_font_name) Removed.
10086         (ps_get_font_family) Reduced to string return.
10087         (text) Doesn't save `position' since it no longer exists.  Ugly
10088         kluge to save font family--fix soon?
10089         (load_font) Removed PostScript name argument.
10090         
10091 Thu May  1 14:58:59 1997  Ben Pfaff  <blp@gnu.org>
10092
10093         * postscript.c: Comment fix.
10094         (ps_open_page) Puts scale factor in PostScript output.
10095         
10096 Sat Apr 26 11:49:32 1997  Ben Pfaff  <blp@gnu.org>
10097
10098         * Makefile.am: Distcleans q2c.
10099
10100 Wed Apr 23 21:33:48 1997  Ben Pfaff  <blp@gnu.org>
10101
10102         * ascii.c: (delineate) Sets text size even if width is zero.
10103
10104         * command.c: Comment fix.
10105         (static var cmd_table[]) Re-enabled EVALUATE command.
10106         (parse_cmd) Lotsa comment fixes.  Fixed infinite loop in parsing
10107         of comments in script files.  Now more liberal on criteria for
10108         performing a state transition--if *anything* happened correctly,
10109         not just if *everything* happened correctly.
10110
10111         * data-out.c: (convert_F) Comment fix.  Why in the fsck does
10112         Checker segfault on formatting large numbers and why in the fsck
10113         hadn't I noticed this before?
10114
10115         * expr.h, exprP.h: No longer turn off GLOBAL_DEBUGGING.
10116
10117         * list.q: (cmd_list) Commented out the actual output routine
10118         because of various problems.  Probably will abandon the idea of
10119         using the general `crushed tables' for the LIST procedure.
10120
10121         * temporary.c: (restore_dictionary) Sets var_by_name to NULL after
10122         clearing it.  Allocates a new var_by_name dictionary before trying
10123         to add members to it.
10124
10125         * vars-atr.c: [DEBUGGING] (dump_one_var_node) Removed argument
10126         `sib'.  Changed type of `node' argument.
10127         [DEBUGGING] (dump_var_tree) Replaced avlwalk() with
10128         avl_walk_inorder().
10129         (clear_variable) Only dumps the var tree if var_by_name non-NULL.
10130         [DEBUGGING] Only deletes the variable from var_by_name if that var
10131         non-NULL.
10132
10133 Fri Apr 18 16:48:41 1997  Ben Pfaff  <blp@gnu.org>
10134
10135         * Makefile.am: Added include files to SOURCES.  Added
10136         frequencies.q to EXTRA_DIST.  Removed include/ from INCLUDES.  Now
10137         includes rules for q2c.  Added `boast' target.
10138
10139 Fri Apr 18 15:42:22 1997  Ben Pfaff  <blp@gnu.org>
10140
10141         * Makefile.am: Maintainer-clean Makefile.in.
10142         
10143         * Makefile.am: Fixed redundant EXTRA_DIST line.
10144
10145         * ascii.c: Comment fixes.
10146         (ascii_line_vert) Fixed overly aggressive range check.
10147
10148         * display.c: Removed dead code.
10149
10150         * list.q: Turn debugging on.
10151         (flush_table) New debug code.
10152
10153         * sfm-read.c: (read_value_labels) malloc's the structure before
10154         trying to assign to its members.
10155
10156         * sfm-write.c: Comment fix.
10157
10158         * som-high.c: (som_submit_table) Sets som.t and som.d on each call
10159         to output_table().
10160         (output_table) No arguments anymore--gets them through `som'
10161         global.  New debug code.  In crushed tables, now sets `htv' as
10162         well as `hv' to avoid bad confusion later.
10163         (dump_crush_page) New debug code.
10164
10165         * som-low.c: (som_dump_crush_page) New debug code.
10166
10167 Thu Mar 27 01:11:29 1997  Ben Pfaff  <blp@gnu.org>
10168
10169         All source files: Broke long lines into multiple lines.
10170         
10171         * ascii.c: (ascii_close_page) Uses host_system var in place of
10172         HOST_SYSTEM constant.
10173
10174         * cmdline.c: (var syntax_message[]) Broke into
10175         pre_syntax_message[] and post_syntax_message[].
10176         (usage) Outputs both parts, separated by driver list.
10177
10178         * error.h: Fixed broken formatting.
10179
10180         * expr-opt.c: (str_search, str_rsearch) New functions.
10181
10182         * misc.c: (blp_getdelim) Removed.  All references changed to
10183         `getdelim'.
10184         (str_search, str_rsearch) Removed.
10185         (memrmem) New function.
10186
10187         * misc.h: (blp_getline) Removed.  All reference changed to
10188         `getline'.
10189
10190         * stat.h: New file.
10191
10192         * filename.c: Includes "stat.h", not <sys/stat.h>.
10193         (blp_getenv) Uses host_system var instead of HOST_SYSTEM constant.
10194
10195         * output.c: (outp_list_classes) Changed output formatting.
10196
10197         * sfm-write.c: (write_header) Uses host_system var instead of
10198         HOST_SYSTEM constant.
10199         (write_rec_7_34) Extracts version numbers from the version string.
10200         Untested.
10201
10202         * sort.c: Includes "stat.h", not <sys/stat.h>.
10203
10204         * str.c: (strcasecmp) Removed.
10205
10206         * title.c: (cmd_document) Uses host_system var instead of
10207         HOST_SYSTEM constant.
10208
10209         * version.c: Generated on-the-fly by the Makefile instead of being
10210         static.
10211
10212         * str.h: Comment fixes.  Doesn't substitute for missing memmove or
10213         memcpy.
10214         [!HAVE_STRNCASECMP] Declares strncasecmp().
10215
10216         * version.h: Removed stray character.  Comment fixes.
10217         (vars host_system, build_system) New vars.
10218
10219 Mon Mar 24 21:47:31 1997  Ben Pfaff  <blp@gnu.org>
10220
10221         * Most source files: Changed formatting of copyright notice; fixed
10222         FSF address; reformatted to better conform to GNU standards;
10223         comment fixes.  Added markups to prevent GNU indent from messing
10224         up my beautiful formatting :-).
10225         
10226         * q2c.c: (get_line) Ignores lines that begin with `/* *INDENT' so
10227         that GNU indent markups can be passed through without problems.
10228
10229 Wed Feb 19 21:30:31 1997  Ben Pfaff  <blp@gnu.org>
10230
10231         * get.c: Turned off debugging.
10232
10233         * glob.c: (init_glob) Turned on save-file compression by default.
10234
10235         * sfm-write.c: (sfm_write_case) Fixed bug which resulted in less
10236         compression than was possible in save files.
10237
10238 Sun Feb 16 20:57:20 1997  Ben Pfaff  <blp@gnu.org>
10239
10240         * data-out.c: (convert_F) Comment fixes.  Debug message fixes.
10241
10242         * frequencies.q: Removed Fiasco extensions.  Updated calculation
10243         algorithms.  Polished output format. 
10244         (struct frq_info_struct) Removed members `max_degree', `min_n',
10245         all references removed.
10246         (macro frq_extensions) Removed.
10247         (static vars min_n, max_degree) Removed, all references removed.
10248         (internal_cmd_frequencies) Doesn't handle extensions.  Doesn't
10249         calculate `min_n', `max_degree'.
10250         (postcalc) Passes new arg to dump_statistics().
10251         (dump_full) Honor NOLABEL option.  Buggy?  Adds variable name
10252         title.
10253         (dump_condensed) Adds variable name title.
10254         (sum_freqs) Removed.
10255         (calc_stats) Updated calculation algorithm.
10256         (dump_statistics) Removed warning for too-few observations.
10257         Changed table formatting.  Adds variable name title if passed new
10258         arg is nonzero.
10259
10260         * output.h: Comment fix.
10261
10262         * recode.c, sample.c, sort.c: Disabled debug code.
10263
10264         * som-frnt.c: (som_set_value, som_set_float, som_set_text)
10265         Improved debug code.
10266
10267         * var.h: (enum series frq_*) Removed Fiasco extensions.
10268
10269 Sat Feb 15 21:26:53 1997  Ben Pfaff  <blp@gnu.org>
10270
10271         * command.c: Added PROCESS IF to command table.
10272
10273         * Lots & lots of places, removed checks for NULLs preceding calls
10274         to free_expression(), which itself checks.
10275
10276         * descript.q: Removed Fiasco extensions.  Removed optimizations
10277         for non-weighted active files.  Implemented some options.
10278         Finished polishing output format.  Comment fixes.  Merged
10279         `descript.g'.
10280         (static vars n_glob_miss_list, n_glob_valid, n_glob_missing,
10281         max_degree, min_n) Removed.
10282         (macro dsc_extensions) Removed.
10283         (struct dsc_info_struct) Removed `min_n' member, all references
10284         fixed.
10285         (internal_cmd_descriptives) Removed calculation of min_n,
10286         max_degree.  Only deals with one `calc' routine instead of two
10287         flavors.
10288         (precalc) Eliminated redundancy.  Updated for changes to
10289         descriptives_proc structure.
10290         (calc) Moved here from `descript.g'.  Rewritten to calculate
10291         statistics via `moments about the mean' rather than by summing,
10292         summing squares, summing cubes, and so on.
10293         (postcalc) Rewritten for new-style statistical calculation.
10294         (display) Removed support for displaying variables across rows.
10295         No longer crushes the descriptives table.  Removed ancient code.
10296         Added display of N, by variable and listwise.
10297
10298         * descript.g: Removed; merged into `descript.q'.
10299
10300         * expr-evl.c: (evaluate_expression) Now returns a double.  For
10301         numeric results, it returns the result as well as storing it in
10302         the passed `value' structure if non-NULL.  For string results it
10303         just returns 0.0 and it must be passed non-NULL.  Many references
10304         to this function were optimized by use of this change, especially
10305         but not exclusively in `compute.c'.
10306
10307         * frequencies.g: Comment fix.
10308
10309         * glob.c: (glob var process_if_expr) New global var.
10310
10311         * postscript.c: (static var option_tab[]) Corrected entry for
10312         `fixed_size'.
10313         (postopen) Sets x->size to x->prop_size.
10314         (ps_text_set_font_by_name) Sets font size as well as typeface for
10315         PROP and FIXED fonts.
10316         
10317         * sel-if.c: (cmd_process_if) New function.
10318
10319         * sfm-write.c: (struct sfm_fhuser_ext) New member `n_cases'.
10320         (sfm_write_dictionary) Sets `n_cases' to 0.
10321         (sfm_write_case) Increments `n_cases'.
10322         (sfm_close) Attempts to seek the system file back to the header
10323         and write the number of cases in its proper slot.
10324
10325         * som-frnt.c: (som_insert_table) Masks off expansion options since
10326         only SOPT_X_NORM seems to work sensibly.
10327
10328         * som-low.c: (get_cell_size) Fixed bug when a table cell was sized
10329         with a `fixed' value of 2.
10330
10331         * sort.c: (cmd_sort_cases) Cancels PROCESS IF.
10332
10333         * sysfile-info.c: (cmd_sysfile_info) Doesn't display more than 10
10334         value labels; uses SOPT_NONE instead of SOPT_X_BOTH.
10335
10336         * var.h: (enum series dsc_*) Removed Fiasco extensions.
10337         (struct descriptives_proc) Removed `miss_noweight'; new members
10338         `X_bar', `M2', `M3', `M4', `min', `max'.
10339
10340         * vars-atr.c: (discard_variables) Cancels PROCESS IF.
10341
10342         * vfm.c: (close_active_file) Cancels PROCESS IF.
10343         (write_case) Doesn't process cases unselected by PROCESS IF.
10344
10345 Fri Feb 14 23:32:58 1997  Ben Pfaff  <blp@gnu.org>
10346
10347         * glob.c: (glob var err) Removed.
10348
10349         * sysfile-info.c: (cmd_sysfile_info) When adjusting table size,
10350         doesn't have to take into account number of value labels since
10351         they're in a subtable anyway.  Also, doesn't display more than 10
10352         value labels since we can't yet break pages in subtables.
10353
10354 Tue Feb  4 15:15:50 1997  Ben Pfaff  <blp@gnu.org>
10355
10356         * som-frnt.c: (som_change_table_size) Simple change for elegance
10357         that shouldn't change behavior.
10358         (som_set_value) Comment fix.
10359
10360         * som-high.c: (som_submit_table) Message fix.
10361
10362 Wed Jan 22 21:54:00 1997  Ben Pfaff  <blp@gnu.org>
10363
10364         * command.c: Added SYSFILE INFO to command table.
10365
10366         * file-handle.q: (fh_handle_filename) New function.
10367
10368         * get.c: (save_trns_proc) Fixed a bug in padding of output data
10369         with spaces.
10370
10371         * main.c: (parse) New return value for command functions, -3.
10372
10373         * misc.h: Comment fix.
10374
10375         * output.h: Comment fixes.
10376         (macro COMPONENTS) Removed.
10377
10378         * postscript.c: (write_text) Modified literal_chars[] so that `('
10379         and ')' are not written to the output in strings as literals.
10380
10381         * sfm-read.c: (sfm_read_dictionary) New argument.
10382         (read_header) New argument.  Sets the information structure's
10383         values from the header information.  
10384         (read_variables) [__CHECKER__] Redefines isalnum()--some sort of
10385         bizarre Checker problem, I guess.
10386         (read_variables) Proper cleanup on lossage.
10387
10388         * sfm.h: (struct sfm_read_info) New struct for use by
10389         sfm_read_dictionary().
10390
10391         * som-frnt.c: (som_create_table) New argument CREATE_FLAGS,
10392         currently used just for tables that can be dynamically resized and
10393         thus have to be allocated with arena_malloc() instead of
10394         arena_alloc().  All references changed.
10395         (som_change_table_size) New function.
10396         (som_insert_table) Bugfix: now inserts `cell', not `c'!
10397
10398         * som-high.c: [GLOBAL_DEBUGGING] (check_table) Moved to som-low.c.
10399         (som_submit_table) [GLOBAL_DEBUGGING] Doesn't call check_table()
10400         any more.
10401
10402         * som-low.c: (draw_cell) Calls draw_table_cell() for SCON_TABLE
10403         cells.
10404         (draw_intersection) Now takes an argument specifying the table in
10405         question.  All references changed.
10406         (draw_table_cell) New function.
10407         (som_get_table_size) [GLOBAL_DEBUGGING] Calls check_table().
10408         (som_get_table_size) Many nice new explanatory comments.
10409         [GLOBAL_DEBUGGING] (check_table) Moved here from som-high.c.
10410
10411         * som.h: New enum series SOM_CREATE_* for use as create flags with
10412         som_create_table().
10413
10414         * str.h: Moved a comment here from TODO.
10415
10416         * sysfile-info.c: New file.  Reference implementation.
10417
10418 Sun Jan 19 14:22:11 1997  Ben Pfaff  <blp@gnu.org>
10419
10420         * command.c: Added RENAME VARIABLES to table of commands.
10421
10422         * data-in.c: (dls_error) Sets `cust_field'.
10423         (parse_N) Message fix.
10424         (parse_day_count) New function.
10425         (to_roman) Never outputs VX as a `short form' of V.
10426         (parse_month) Fixed parsing of Roman numerals.
10427         (parse_trailer) Message fix.
10428         (parse_DATE, parse_ADATE, parse_EDATE, parse_SDATE, parse_JDATE,
10429         parse_QYR, parse_MOYR, parse_WKYR, parse_DTIME) Issue a message if
10430         the date is invalid.
10431         (parse_SDATE) Fixed swapped day, year.
10432         (parse_JDATE) Fixed bug for dates in 1582.
10433         (parse_DTIME) Allows days not between 1 and 31.
10434         (parse_numeric) Makes local copy of f.type for easier usage.
10435         FMT_DOLLAR fixed.
10436
10437         * data-out.c: (convert_F) When outputting as scientific, properly
10438         sets f.type as fp->type.
10439         (insert_commas) Fixed operator precedence problem with setting of
10440         nitems.  Changed strcpy to memcpy (no null terminator). 
10441         (convert_date) Fixed FMT_JDATE: added 1900 to year.
10442         (convert_CCx) Essentially rewritten, but now it works.
10443
10444         * display.c: (cmd_display) Added DISPLAY FILE LABEL (undocumented
10445         feature of Fiasco).
10446         (display_documents) Implemented.
10447
10448         * error.c: (glob var cust_field) New var.
10449         (vmsg) Displays cust_field as part of message classes DE and DW.
10450
10451         * formats.c: (debug_print) Fixed to compile under updated
10452         dictionary format.
10453
10454         * get.c: (cmd_get, cmd_save_internal) Close file handle on
10455         failure.
10456
10457         * misc.c: (parse_format_specifier) Formatting fix.
10458
10459         * modify-vars.c: (struct var_modification) Renamed `n_reorder' as
10460         `n_rename' for clarity.
10461         (cmd_modify_vars) Initializes `forward' and `positional' at
10462         appropriate times.  Frees lists of vars to rename on failure.
10463         Comment fix.  Frees memory on success.  
10464         (rearrange_dict) Simplified `for' loop condition.
10465
10466         * rename-vars.c: New file (reference implementation).
10467         
10468         * set.q: (internal_cmd_set) Fixed `emu' test condition.
10469
10470         * sfm-read.c: (read_header) File label is created only if file
10471         label in file is not blank.
10472         (read_variables) Initializes `dict' local variable.
10473         (read_documents) Proper behavior on lossage.
10474
10475         * sfm-write.c: (write_header) Doesn't blank out the file label
10476         (why was this here to begin with?!)
10477
10478         * temporary.c: (save_dictionary) File label is copied only if
10479         non-NULL.  Doesn't try to xstrdup() dictionary documents.
10480         Adapted so as to not irritate Checker.
10481         (free_dictionary) Only destroys var_by_name if non-NULL.
10482
10483         * title.c: (cmd_file_label) Doesn't skip FILE, LABEL tokens.
10484         (cmd_document) Doesn't skip DOCUMENT token.  Adds some header
10485         lines to the document, indents the document.  Also, it works now.
10486         (add_document_line) New function.
10487
10488         * var.h: (struct dictionary) Reordering.
10489
10490         * vars-prs.c: (parse_variables) On lossage, only local_free()'s
10491         bits if it was allocated to begin with.
10492
10493 Thu Jan 16 13:08:57 1997  Ben Pfaff  <blp@gnu.org>
10494
10495         * command.c: Added MODIFY VARS to list of commands.
10496
10497         * configure.in: Updated custom macros for autoconf 2.12.  Removed
10498         mmap reference; fixed termcap library reference.
10499
10500         * display.c: (display_variables) Fixed a few bugs although it's
10501         still not well written.
10502
10503         * error.c: [!__CHECKER__] (chkr_disp_call_chain) New function.
10504         (induce_segfault) Calls chkr_disp_call_chain() instead of
10505         inducing an actual SIGSEGV.
10506
10507         * expr-opt.c: (evaluate_tree) Swapped order of arguments to
10508         str_search() and str_rsearch().  Fixed tests for matches on
10509         OP_INDEX and OP_RINDEX.
10510
10511         * filename.c: (good_getcwd) Removed as the new libc for Checker
10512         doesn't contain this bug, apparently.
10513
10514         * misc.c: (str_search, str_rsearch) Changed order of arguments for
10515         consistency with GNU memmem.
10516         (blp_getdelim) Changed `len' from `int' to `size_t'.
10517
10518         * modify-vars.c: Reference implementation.
10519
10520         * som-frnt.c: (zero_length) New global var.
10521         (som_create_table) Message fix.
10522
10523         * som.h: Added gcc attributions to som_set_text(),
10524         som_output_text() prototypes.  blank_line() refers to
10525         zero_length[] instead of a literal null string to suppress gcc
10526         warnings.
10527
10528         * sort.c: (do_external_sort) Fixed fencepost error on lossage.
10529         (allocate_cases) Decrements x_max so the last element of x[] can
10530         be used by the algorithm.
10531
10532         * var.h: Changed minor details of `variable' declaration.  
10533         (struct modify_vars_proc) New struct.
10534         (struct variable) Added field p.mfv.
10535
10536         * vars-atr.c: Comment fix.
10537
10538         * vars-prs.c: (fill_all_vars) More optimal implementation.
10539
10540         * vfm.c: (dump_splits) Sets the last byte of temp_buf to a null
10541         character, which it shouldn't have to do but printf() seems to
10542         read the null byte even though I supply a maximum length...
10543
10544 Fri Jan 10 20:22:08 1997  Ben Pfaff  <blp@gnu.org>
10545
10546         * command.c: Removed command alias X for QUIT.
10547         (parse_cmd) Fixed comment parsing.
10548
10549         * dfm.c: (struct dfm_fhuser_ext) Fields `len', `size' are now of
10550         type size_t.
10551         (read_record) Fixed references to len, size.
10552         (dfm_get_record) Restructured.
10553
10554         * file-handle.h: (struct file_handle) Field `lrecl' now of type
10555         size_t.
10556
10557         * file-handle.q: (internal_cmd_file_handle) Checks for nonpositive
10558         record length.
10559
10560         * modify-vars.c: New file.  Not complete.
10561         
10562         * set.q: (set_ccx) Fixed operator precedence problem regarding ^
10563         and ==.
10564
10565         * sfm-read.c: (bswap_flt64, read_header, write_variable) Fixed
10566         problems caused by int/size_t differences.
10567
10568         * sort.c: (output_record, merge_once) Cast `size_t's to `int's in
10569         appropriate spots.
10570
10571         * str.c: (strcasecmp) Fixed bug that cropped up when the strings
10572         being compared were of equal length.
10573
10574 Thu Jan  2 19:08:23 1997  Ben Pfaff  <blp@gnu.org>
10575
10576         * command.c: Added DOCUMENT, DROP DOCUMENTS, FILE LABEL.
10577
10578         * lexer.c: (get_dotted_rest_of_line) New function.
10579
10580         * sel-if.c: (cmd_filter) Cannot choose string or scratch variables
10581         as filters.
10582
10583         * sfm-read.c: (sfm_read_dictionary) Calls read_documents() to read
10584         type 6 records.  Frees the dictionary properly.
10585         (read_header) Initializes the dictionary instead of letting
10586         read_variables() do it.  Sets the dictionary file label from the
10587         system file.
10588         (read_documents) New function.
10589
10590         * sfm-write.c: (sfm_write_dictionary) Calls write_documents() to
10591         write type 6 record if appropriate.
10592         (write_header) Writes file label from dictionary.
10593         (write_documents) New function.
10594
10595         * temporary.c: (save_dictionary, restore_dictionary,
10596         free_dictionary) Properly handle new fields in dictionary struct.
10597
10598         * title.c: (get_title) Returns after failure().
10599         (cmd_file_label, cmd_document, cmd_drop_documents) New functions
10600         for new commands FILE LABEL, DOCUMENT, DROP DOCUMENTS.  Untested.
10601
10602         * var.h: (struct dictionary) New fields `label', `n_documents',
10603         `documents'.
10604
10605 Wed Jan  1 22:08:10 1997  Ben Pfaff  <blp@gnu.org>
10606
10607         * command.c: Added FILTER to list of commands.
10608
10609         * frequencies.g: [WEIGHTING] Removed test for weighting!=-1 since
10610         it's always true.
10611
10612         * get.c: (cmd_save_internal) Removed weighting code since it's now
10613         handled by sfm-write.c.  Properly commented out debug code.
10614
10615         * glob.c: (glob var weighting) Removed.
10616
10617         * sel-if.c: Comment fixes.
10618         (cmd_filter) New function.
10619
10620         * sfm-read.c: (struct sfm_fhuser_ext) New field `weight_index'.
10621         (sfm_read_dictionary) Sets weighting variable direct in the
10622         created dictionary now.  (Apparently we previously didn't support
10623         weighting on GET?)
10624         (read_header) Sets weight_index field in sfm_fhuser_ext from
10625         header read from disk.
10626
10627         * sfm-write.c: (sfm_write_dictionary) Comment fix.
10628         (write_header) Now sets the weighting in the header from the
10629         passed primary dictionary instead of from the sfm_write_info.
10630
10631         * sfm.h: (struct sfm_write_info) Removed field `weight'.
10632
10633         * som-high.c: (dump_crush_table) Fixed a couple of assertions that
10634         broke on boundary conditions.
10635
10636         * var.h: (struct dictionary) New fields `weight_var',
10637         `weight_index', and `filter_var'.
10638         (glob var weighting) Removed.  This is now part of struct
10639         dictionary.  All references changed; the less mechanical changes
10640         are described above.
10641
10642         * vars-atr.c: (find_dict_variable) New function.
10643
10644         * vfm.c: (static var filter_index) New variable.
10645         (open_active_file) Initializes filter_index from default_dict.
10646         (write_case) Calls proc_func() only if the filter variable is
10647         nonzero; this implements FILTER behavior.
10648
10649         * weight.c: (static var weight_varname) Removed.
10650         (cmd_weight) Modified default_dict instead of glob vars.
10651         (update_weighting) Changed the signature to modify a dictionary
10652         instead of glob vars.  Now returns the weighting variable.
10653         (get_weighting_variable) Removed; its function is absorbed by
10654         update_weighting().
10655         (stop_weighting) Operates on a dictionary now.
10656
10657 Wed Jan  1 17:00:59 1997  Ben Pfaff  <blp@gnu.org>
10658
10659         * sort.c: Removed debugging info from messages.
10660         (do_external_sort) Cleans up after itself by deleting the
10661         temporary directory on failure.  (On success it is deleted by the
10662         input program.)
10663         (allocate_cases) Removed debug code.  Added clean up code.
10664         (output_record) Removed debug code.
10665         (merge) Added code to close all the input files that are currently
10666         open.  This is a likely location for bugs, because I'm not sure
10667         about boundary conditions.  Removed an unnecesary heap_delete().
10668         (merge_once) Removed input file "optimization" that in fact
10669         screwed up the rest of the code.  Message and comment fixes.
10670
10671 Sun Dec 29 21:36:48 1996  Ben Pfaff  <blp@gnu.org>
10672
10673         * error.c: [__CHECKER__] (induce_segfault) Flushes output streams.
10674
10675         * heap.c: (heap_delete) New argument.
10676
10677         * sort.c: Finished implementation of external sort.
10678
10679         * vfm.c: (read_from_disk) Returns after a disk error.
10680
10681 Sun Dec 22 23:10:39 1996  Ben Pfaff  <blp@gnu.org>
10682
10683         * sort.c: (static var state) Removed.
10684         (static vars max_handles, tmp_basename, tmp_extname,
10685         huffman_queue) New variables.
10686         (do_external_sort) Moved most code to new functions.
10687         Creates huffman_queue.
10688         (allocate_file_handles, allocate_cases) New functions.
10689         (static vars run_no, run_length, file_index, case_count) New
10690         variables. 
10691         (output_record) Returns success.  Now really writes to the output
10692         file.
10693         (begin_run, end_run) New functions.
10694         (write_initial_runs) Returns success.  Initializes run_no to -1.
10695         Calls begin_run(), end_run() at appropriate times.  Outputs debug
10696         messages.
10697         (write_to_sort_cases) Calls begin_run(), end_run() at appropriate
10698         times.
10699         (merge) New function.
10700
10701         * heap.c, heap.h: New files.  Hopefully in near-final form.
10702
10703 Sat Dec 21 21:51:04 1996  Ben Pfaff  <blp@gnu.org>
10704
10705         * glob.c: Added write_active_file to global vars.
10706
10707         * sort.c: Several new miscellaneous static variables.
10708         (cmd_sort_cases) Big comment fix.
10709         (perform_case_2) Renamed `do_external_sort' and completely
10710         rewritten.
10711         (case_2_proc_func) Removed.
10712         (output_record, write_initial_runs, write_to_sort_cases,
10713         compare_record) New functions.
10714
10715         * vfm.c: [DEBUGGING] (index_to_varname) Excised bit rot.
10716
10717 Tue Dec 17 18:57:59 1996  Ben Pfaff  <blp@gnu.org>
10718
10719         * sort.c: (perform_case_2) Changed the method for allocation of
10720         lots of memory--now allocates one case at a time in hopes that
10721         more cases can be allocated with heavily fragmented memory.
10722
10723         * var.h: (write_active_file) New global var.
10724
10725         * vfm.c: (procedure, close_active_file, write_case,
10726         SPLIT_FILE_procfunc) Now allow beginfunc, procfunc, and endfunc
10727         arguments to procedure() to be NULL.  All references to
10728         procedure() that made use of dummy functions were changed to NULL
10729         functions.
10730         (open_active_file) If write_active_file is non-NULL, the output
10731         device becomes DEV_PGM (a new enum).
10732         (close_active_file) Sets write_active_file to NULL.
10733         (read_from_memory) Comment fix.
10734         (record_case) Calls write_active_file() when the output device is
10735         DEV_PGM.
10736
10737 Sun Dec 15 15:32:16 1996  Ben Pfaff  <blp@gnu.org>
10738
10739         * sort.c: New file.
10740
10741         * autorecode.c: (cmd_autorecode) Fixed parsing of options.
10742         Fixed checking for duplicate varnames.
10743         (recode) xmalloc()'s the transformation instead of arena_alloc()'ing
10744         it.
10745         (autorecode_trns_free) Destroys hash tables for each recoding
10746         specification.
10747         (autorecode_proc_func) Compares NULL to *vpp instead of vpp.
10748
10749         * command.c: Added SORT CASES to cmd_table.
10750         (null_func, null_int_func) Prototyped.
10751
10752         * descript.g: (calc_weight, calc_noweight) Computes own case
10753         number now.
10754         
10755         * frequencies.q: (dump_statistics) Fixed problem with
10756         too-few-cases warning message.
10757
10758         * get.c: (cmd_save_internal) Handles weighting properly.
10759
10760         * hash.c: (hsh_dump) Output format changed.
10761         (force_hsh_insert) Actually works now, prototype changed.
10762
10763         * list.q: (static var case_num) New variable.
10764         (cmd_list) Initializes case_num.
10765         (list_cases) Increments case_num.
10766
10767         * var.h: Added definitions for SORT CASES.  Comment fixes.
10768
10769         * vfm.c: Some definitions moved to new file vfmP.h.  Comment
10770         fixes.  `active' renamed vfm_active, `rep' renamed
10771         vfm_replacement, all references changed.
10772         (procedure) The procfunc no longer receives a case number.  All
10773         references changed.
10774         (write_case) Subtle reordering.
10775         (SPLIT_FILE_procfunc) Counts cases differently.  Slightly less
10776         redundant.
10777
10778         * weight.c: (get_weighting_variable) New function.
10779
10780         * vfmP.h: New file with definitions from vfm.c.
10781
10782 Sat Dec 14 10:35:30 1996  Ben Pfaff  <blp@gnu.org>
10783
10784         * command.c: (FILE_TYPE_okay) Commented out some tests because
10785         they're clumsy and not yet needed.
10786
10787         * var.h: Most *_trns structures moved to their respective source
10788         files.  Some were moved into a new file, do-ifP.h.  Comment fixes.
10789         (union any_trns) Changed to a typedef for trns_header.
10790         (struct input_program_pgm) Removed.
10791
10792         * vars-prs.c: (parse_variables) Only local_free()'s bits if it
10793         was allocated in the first place.
10794
10795 Fri Dec 13 21:30:53 1996  Ben Pfaff  <blp@gnu.org>
10796
10797         * autorecode.c: New file.
10798         
10799         * command.c: Added AUTORECODE to command table; re-enabled SET.
10800
10801         * data-out.c: (convert_F) Handles infinities and NaNs properly.
10802
10803         * error.c: (vmsg) Comment fixes.
10804
10805         * hash.c: Comment fix.
10806         (hashpjw_d) New function.
10807         (hashpjw) Reimplemented as call to more general function
10808         hashpjw_d().
10809         (internal_comparison_fn) Initializes pointers properly.
10810         (hsh_sort) [GLOBAL_DEBUGGING] New debugging code.
10811         (force_hsh_insert, force_hsh_find) New debugging wrapper
10812         functions.
10813
10814         * main.c: (main) Message fix.
10815
10816         * output.c: (outp_read_devices) Message fix.
10817
10818         * set.q: Comment fixes.
10819         (custom_results) Implemented Wnd/X form of subcommand.
10820         (set_routing) New function.
10821         (internal_cmd_set) Implemented ERRORS, MESSAGES.
10822
10823         * settings.h: (SET_ROUTE_*) New enum series.
10824         (set_results) Renamed set_results_file, all references changed.
10825         (set_messages) Removed.
10826         (glob vars set_errors, set_messages, set_results) New vars.
10827
10828         * title.c: (get_title) Remembers to xstrdup() the result of
10829         get_rest_of_line().
10830
10831         * var.h: (arc_item, arc_spec, autorecode_trns) New structures for
10832         use by AUTORECODE.
10833         (union any_trns) New element `arc'.
10834
10835 Fri Dec  6 23:53:47 1996  Ben Pfaff  <blp@gnu.org>
10836
10837         * command.c: (output_line) Removed references to set_screen.
10838
10839         * error.c: (static var terminating) New var.
10840         (hcf) Sets terminating to 1.
10841         (vmsg) If terminating is nonzero, does not attempt to call hcf().
10842         This prevents an infinite loop if an error occurs within hcf().
10843
10844         * expr-evl.c: (evaluate_expression) [__CHECKER__] Replaced case
10845         statement circumlocution with `case 42000' trick.
10846         (evaluate_expression) New support for OP_STR_MIS.
10847
10848         * expr-opt.c: (evaluate_expression) [__CHECKER__] Replaced case
10849         statement circumlocution with `case 42000' trick.
10850         (dump_node) Handles OP_STR_MIS.
10851
10852         * expr-prs.c: (MISSING_func, SYSMIS_func) Rewrote to handle string
10853         variables exceptions.
10854         (parse_function) Message fix.
10855         (ops[]) Added OP_STR_MIS.
10856
10857         * expr.h: Added OP_STR_MIS to OP_* enum.  Comment fixes.
10858
10859         * exprP.h: [__CHECKER__] Removed case statement circumlocution.
10860
10861         * glob.c: Removed set_scrnfile glob var.
10862         (init_glob) set_errorbreak set to 0 by default.
10863
10864         * groff-font.c: Changed included files.
10865         (groff_read_font) Initializes font_arena local var correctly.
10866         (default_font) New function.
10867
10868         * output.c: Comment fixes.
10869         (glob var disabled_devices) New variable.
10870         [GLOBAL_DEBUGGING] (static var iterating_driver_list) New
10871         variable.
10872         [GLOBAL_DEBUGGING] (reentrancy) New function.
10873         [GLOBAL_DEBUGGING] (outp_read_devices, outp_done, find_driver,
10874         outp_iterate_enabled_drivers) Calls to reentrancy().
10875         (destroy_list) New function.
10876         (outp_done) Moved code to destroy_list().
10877         (parse_options) Parses `listing', `screen', `printer' options
10878         internally.
10879         (configure_driver) Sets new `device' member of driver.
10880         (outp_iterate_enabled_drivers, outp_enable_device) New functions.
10881
10882         * output.h: Comment fixes.  New enum series OUTP_DEV_*.
10883         (struct outp_driver_struct) New member `device'.
10884
10885         * postscript.c: (find_encoding_file) Doesn't display its own error
10886         messages.
10887         (default_encoding) New function.
10888         (switch_font) Calls default_encoding() if no encoding can be
10889         found.
10890         (text) Makes up a character metric if none exists for the desired
10891         character.
10892         (load_font) Properly copies a fallback filename.  Calls
10893         default_font() for a font if none at all are known.
10894
10895         * set.q: Comment fixes.  Removed OUTPUT subcommand.
10896         (custom_listing) Calls outp_enable_device() to enable/disable
10897         listing device.
10898         (turn_screen_on) Removed.
10899         (internal_cmd_set) Calls outp_enable_device() to enable/disable
10900         screen, printer devices.
10901
10902         * settings.h: Comment fixes.
10903         (glob vars set_output, set_printer, set_screen, set_scrnfile)
10904         Removed.
10905
10906         * som-high.c: (som_submit_table, som_eject_page) Use
10907         outp_iterate_enabled_drivers() instead of iterating
10908         outp_driver_list directly.
10909
10910 Wed Dec  4 21:34:17 1996  Ben Pfaff  <blp@gnu.org>
10911
10912         * data-in.c: (parse_EDATE, parse_SDATE) New functions.
10913         (parse_string_as_format) Handles new formats.
10914         (parse_numeric) Now handles DOT and PCT formats.
10915
10916         * data-out.c: (convert_E, convert_F, insert_commas) Handle DOT
10917         format now.
10918         (convert_date) Handle EDATE and SDATE formats.
10919         (convert_CCx) Now if there's not room for the currency characters,
10920         converts it as F format if it's positive instead of giving up
10921         quickly.  Also fixed save-and-restore bug with decimal point
10922         characters.  
10923         (convert_format_to_string) Handles new formats.
10924
10925         * misc.c: (formats[]) Added new formats.
10926         (convert_fmt_ItoO) Supports new formats.
10927
10928         * sfm-read.c: (parse_format_spec) Supports new formats.  Better
10929         data checking.  New argument, all references changed.
10930
10931         * sfm-write.c: (write_format_spec) Supports new formats.
10932
10933         * var.h: New formats FMT_DOT, FMT_PCT, FMT_EDATE, FMT_SDATE.
10934         Comment fixes.
10935
10936 Sun Dec  1 17:19:00 1996  Ben Pfaff  <blp@gnu.org>
10937
10938         * cmdline.c: Comment fixes.
10939         (parse_command_line) Changed return type to void.
10940
10941         * data-in.c: (parse_string_as_format) Added FMT_CCA...FMT_CCE to
10942         switch.
10943         (parse_numeric) Handles international numbers (comma as decimal
10944         point).  Some reformatting.
10945
10946         * data-list.c: (parse_free) Default output format is now
10947         set_format instead of hard-coded F8.2.
10948         (read_from_data_list_list) Emits error message on undefined data
10949         only if set_undefined is nonzero.
10950
10951         * data-out.c: (convert_E) Changes decimal point from period to
10952         comma if appropriate.  Restructured.  Better comments.
10953         (convert_F) Changes decimal point from period to comma if
10954         appropriate.
10955         (insert_commas) Major bug with handling of negative values fixed.
10956         Also, inserts periods instead of commas if appropriate.
10957         (convert_CCx) New function.
10958         (convert_format_to_string) Added FMT_CCA...FMT_CCE to switch.
10959         (num_to_string) Changed `.' to set_decimal.
10960
10961         * dfm.c: Comment fixes.
10962         (dfm_close) Frees ext->line even in inline_file.
10963         (open_inline_file) New function.
10964         (open_file_r) When opening the inline file: now properly
10965         recognizes `BEGIN DATA.' line, and calls open_inline_file() to
10966         finish up.
10967         (read_record) Calls fh_close_handle() instead of dfm_close() to
10968         close the inline file.  Makes a copy of the line getl_buf to avoid
10969         interlock problems.
10970         (dfm_get_record) Restructured.  Now checks the return value of
10971         open_file_r().
10972         (cmd_begin_data) Moved open code into open_inline_file().  Relaxed
10973         checking for use of inline file.  No longer tries to close inline
10974         file.
10975
10976         * error.c: (glob var error_already_flagged) New var.
10977         (vmsg) Message change.  Now checks max number of errors/warnings,
10978         acts on it.
10979
10980         * file-handle.q: (fh_handle_name) Now allows closing of
10981         inline_file.
10982         (fh_init_files) Reformatted.
10983
10984         * get.c: (trim_dictionary) Checks SCOMP option instead of COMP.
10985
10986         * getline.c: (getl_include) Fixed bug that popped up when called
10987         when file queue was empty.
10988         (read_console) Resets error_count, warning_count,
10989         error_already_flagged to zero.
10990
10991         * glob.c: Many changes to update list of variables.
10992         (init_compat_dependent) Now this function is called whenever
10993         `compat' changes.  It now sets set_seed only if it hasn't
10994         previously been referenced.  It now calls
10995         lex_init_compat_dependent().
10996
10997         * include.c: (cmd_include_at) Frees temporary buffer instead of
10998         line buffer.  
10999         (cmd_include) Doesn't make copy of include file name.
11000
11001         * lexer.c: Comment fixes.
11002         (init_lex) Moved some code into new function
11003         lex_init_compat_dependent().
11004         (lex_init_compat_dependent) New function.
11005         (hex_val) Simplified.
11006         (preprocess_line) Uses set_endcmd instead of hardcoding `.'.
11007
11008         * main.c: Comment fixes.
11009         (main) Reformatted.
11010
11011         * misc.c: (formats[]) Added FMT_CCA...FMT_CCE.
11012         (check_input_specifier) Disallows FMT_CCA...FMT_CCE.
11013         (convert_fmt_ItoO) Detects FMT_CCA...FMT_CCE.
11014         (setup_randomize) Sets set_seed_used.
11015
11016         * set.q: Comment fixes.
11017         (custom_results) Conditionalizes on `compat'.
11018         (custom_log) Calls custom_journal().
11019         (set_ccx) New function.
11020         (cmd_set) Calls init_compat_dependent() when `compat' changes.
11021         Calls set_ccx() to handle CCA...CCE.  Sets set_grouping
11022         when set_decimal changes.  Range-checks values for MITERATE,
11023         MNEST.  Message fixes.
11024
11025         * settings.h: Comment fixes.
11026         (struct set_cust_currency) New struct.
11027         (set_cc[], set_grouping, set_seed_used) New global vars.
11028
11029         * var.h: (FMT_CCA...FMT_CCE) New output formats.
11030         (FCAT_OUTPUT_ONLY) New FCAT_* constant.
11031
11032 Thu Nov 28 23:14:07 1996  Ben Pfaff  <blp@gnu.org>
11033
11034         * glob.c: Revised variables to correspond to settings.h.
11035         (init_glob) Initializes variables from settings.h properly.
11036
11037         * set.q: Began long-overdue major revision to correspond to new
11038         philosophy.  Most code changed. 
11039
11040         * settings.h: Mostly changed; reorganized, reordered, large new
11041         comment.
11042
11043 Thu Nov 28 19:46:10 1996  Ben Pfaff  <blp@gnu.org>
11044
11045         * get.c: (cmd_save_internal) No longer forces compression off.
11046
11047         * sfm-read.c: (read_compressed_data) If eof is reached when
11048         reading a new instruction octet, only signal error if we're in the
11049         middle of a case.
11050
11051         * sfm-write.c: (COMPRESSION_BIAS) New #define.
11052         (struct sfm_fhuser_ext) New member `end'.
11053         (write_header) Refers to COMPRESSION_BIAS instead of magic 100.0.
11054         (ensure_buf_space) New function.
11055         (sfm_write_case) Reimplemented in order to support compression.
11056         (sfm_close) Writes out the remaining contents of the compression
11057         buffer if any.
11058
11059 Wed Nov 27 23:18:35 1996  Ben Pfaff  <blp@gnu.org>
11060
11061         * command.c: Defined SAVE and XSAVE commands in command table.
11062
11063         * common.h: second_lowest_value is of type flt64, not double.
11064
11065         * file-handle.h: Comment fix.
11066
11067         * get.c: Comment fixes.
11068         (static var `trns') New.
11069         (save_write_case_func, save_trns_proc, save_trns_free, null_func,
11070         cmd_save_internal, cmd_save, cmd_xsave) New functions.
11071         (dict_delete_run) Clears the variables and frees them now.
11072         (trim_dictionary) Sets default for compression.
11073         On KEEP subcommand, frees deleted variables as well as clearing
11074         them.  Finally got the sense of the test for deleting all
11075         variables correct.
11076         [DEBUGGING] (dump_dict_variables) Message fix.
11077
11078         * glob.c: (init_glob) set_compression set to 1 by default.
11079
11080         * list.q: Properly #includes config.h.
11081
11082         * misc.h: New macro REM_RND_UP.
11083
11084         * settings.h: Comment fix.
11085
11086         * sfm-read.c: (structs sysfile_header, sysfile_format,
11087         sysfile_variable; inline function bswap_int32) Moved to new file
11088         sfmP.h.
11089         (corrupt_msg) [__CHECKER__] No longer induces segfault.
11090         (sfm_read_dictionary) Fixed bug caused by failing to initialize
11091         var_by_index.
11092         (read_machine_flt64_info) Fixed some problems caused by confusion
11093         between flt64 and double types.
11094         (read_header) Message fix.
11095         (read_variables) Fixed set of cases in which we byte-swap sv.print
11096         and sv.write.  Fixed confusion of flt64 and double.
11097
11098         * sfm.h: (struct sfm_write_info) New.
11099
11100         * som-high.c: (som_draw_title) Properly frees `s'.
11101
11102         * temporary.c: (save_dictionary) Comment fix.
11103
11104         * var.h: Comment fixes.  New FMT_* enum, FMT_NUMBER_OF_FORMATS.
11105         (struct trns_header) Formatting fix.
11106         (struct save_trns) New.
11107
11108         * vars-atr.c: (discard_variables) Comment fix.
11109
11110         * sfm-write.c: New file, baseline release.
11111
11112         * sfmP.h: New file, baseline release.
11113
11114 Sun Nov 24 14:53:53 1996  Ben Pfaff  <blp@gnu.org>
11115
11116         * cmdline.c: (parse_command_line) `--version' output updated.
11117         (glob var syntax_message[]) Added my e-mail address.
11118
11119         * file-handle.q, lexer.c, vfm.c: Changed many instances of
11120         `illegal' to `invalid'.
11121
11122         * sfm-read.c: (struct sfm_fhuser_ext) New fields used as
11123         uncompression buffer.
11124         (sfm_close) Frees decompression buffer.
11125         (sfm_read_dictionary) Initializes decompression buffer.
11126         (buffer_input, read_compressed_data) New functions.
11127         (sfm_read_case) Restructured; now calls read_compressed_data() to
11128         handle compressed system file data.
11129
11130         * var.h: Comment fix.
11131
11132 Mon Nov 11 15:34:09 1996  Ben Pfaff  <blp@gnu.org>
11133
11134         * dfm.c: (dfm_close) Does not set h->{ext,class} because the
11135         caller handles it.
11136          
11137         * get.c: New comments.  New static var `get_file'.
11138         (cmd_get) Now fully implemented.  Calls discard_variables();
11139         initializes fv and lv for all variables; new debug code; sets
11140         up the dictionary; sets up the input program.
11141         (read_from_get, cancel_get) New functions.
11142
11143         * sfm-read.c: Comment fixes.
11144         (sfm_close) New static function.
11145         (sfm_read_dictionary) Properly sets up the class of the
11146         file_handle.  No longer cares what size the data is in records of
11147         type 7.  Also, on failure, properly cleans up the file_handle and
11148         free()s some stuff.
11149         (read_variables) No longer thinks it knows `nval' of the
11150         dictionary.  Now sets p.get.fv, etc., instead of speculatively
11151         setting fv itself.
11152         (read_value_labels) Fixed off-by-one error in indexing of
11153         var_by_index[].
11154         (sfm_read_case) New function.
11155         (sfm_r_class) New static var.
11156
11157         * var.h: (get_proc) New struct.
11158         (struct variable) New member p.get.
11159
11160 Thu Nov  7 20:52:28 1996  Ben Pfaff  <blp@gnu.org>
11161
11162         * get.c: Removed GTSV_OPT_MAP because of a misinterpretation of
11163         the manual's meaning.
11164         (rename_variables) New function.
11165         (trim_variables) Doesn't try to parse MAP any more.  Removed debug
11166         code.  Now properly reorders the dictionary on the KEEP keyword.
11167
11168         * sfm-read.c: (read_value_labels) Fixed some bugs regarding
11169         garbage collection.
11170
11171         * vars-atr.c: (clear_variable) New argument `dictionary *'.
11172         (rename_variable) New function.
11173         (free_val_lab) Reformatted.
11174
11175 Thu Nov  7 17:29:16 1996  Ben Pfaff  <blp@gnu.org>
11176
11177         * var.h: Reindented entire file.  Comment fixes.
11178         (glob vars var, var_by_name, nvar, N, nval, n_splits, splits)
11179         Removed.
11180         (glob var default_dict) New.
11181         (struct indirect_dictionary) Removed.
11182
11183         * Many other source files were changed to add `default_dict.'
11184         before all references to the dictionary of the active file.
11185         
11186         * vars-atr.c: (make_indirect_dictionary) Removed.
11187
11188         * glob.c: Reindented all variable declarations.  Updated for
11189         changed var.h.  Comment fixes.
11190
11191         * temporary.c: (restore_dictionary, save_dictionary) Simplified
11192         because now we can mainly copy dictionary structs.
11193
11194         * vars-prs.c: (is_dict_varname, parse_dict_variable,
11195         parse_variables) Takes dictionary instead of indirect_dictionary
11196         first argument.
11197         (parse_variables) Instead of calling make_indirect_dictionary,
11198         just sets DICT to &default_dict if DICT is NULL.  Of course, lots
11199         of `*dict.' references had to be changed to `dict->'.  Removed
11200         debug code.
11201
11202 Thu Nov  7 15:48:52 1996  Ben Pfaff  <blp@gnu.org>
11203
11204         * get.c: Added GTSV_OPT_* series of enums.
11205         (trim_dictionary, dict_delete_run) New functions.
11206         [DEBUGGING] (dump_dict_variables) New function.
11207         (cmd_get) Calls trim_dictionary() to get dictionary fully set-up.
11208         [DEBUGGING] Calls dump_dict_variables() to display results.
11209
11210         * glob.c: (cmp_variable) Now a public function declared in var.h.
11211
11212         * sfm-read.c: Turned off debug code.  Comment fixes.
11213         (read_machine_int32_info, read_machine_flt64_info) New functions
11214         to parse type 7 records.
11215         (sfm_read_dictionary) Properly byteswaps several fields now.
11216         Calls read_machine_*_info() to parse type 7 subtypes 3 and 4
11217         records.  [DEBUGGING] Dumps dictionary.
11218         (read_variables) Sets `index' field of variables created properly.
11219         Constructs avl tree of variables in dictionary.  [DEBUGGING] No
11220         longer dumps dictionary.
11221         (read_value_labels) Properly byteswaps fields.  [DEBUGGING] New
11222         debug code.
11223         [DEBUGGING] (dump_dictionary) No longer stubbed out.
11224
11225         * temporary.c: (restore_dictionary) Destroys `var_by_name' glob
11226         var before destroying any variables just to save a little time.
11227
11228         * var.h: (struct variable) Reordered in order to make name[] the
11229         first member; this makes pointers to `variable' pointers to the
11230         variable name, simplifying avl trees, etc.
11231         (struct indirect_dictionary) New struct.
11232
11233         * vars-atr.c: (find_variable) Rewritten for efficiency.
11234         (make_indirect_dictionary, is_dict_varname, parse_dict_variable)
11235         New functions.
11236         (is_varname) Rewritten for efficiency.
11237         (parse_variables) New argument, which is a `dictionary *'.  All
11238         references changed.  This function now reads variable names from
11239         the dictionary passed, or from the default dictionary if NULL.
11240
11241 Tue Nov  5 18:34:59 1996  Ben Pfaff  <blp@gnu.org>
11242
11243         * misc.h: Added new macro DIV_RND_UP to perform integer division,
11244         rounding up.  Changed many references to ROUND_UP to use this
11245         instead.
11246
11247         * sfm-read.c: Includes avl.h.
11248         (corrupt_msg) Induces a segfault under Checker.
11249         (macro assertive_bufread) New.  Many references to bufread() now
11250         use this instead.
11251         (sfm_read_dictionary) Split up into several functions.  Added code
11252         to read dictionary records following the the type 2 records.  Not
11253         quite complete.  New variable `var_by_index'.
11254         (read_header, read_variables) New functions extracted from
11255         sfm_read_dictionary().
11256         (read_value_labels) New function.
11257         (bufread) Checks ferror() if fread() doesn't return the expected
11258         value; if ferror() is zero it's just EOF.
11259         (dump_dictionary) Stubbed out.
11260
11261         * BTW: The source code now exceeds 50000 lines!
11262         
11263 Mon Nov  4 22:03:28 1996  Ben Pfaff  <blp@gnu.org>
11264
11265         * command.c: Added GET to cmd_table[].
11266
11267         * list.q: Removed reference to alloca headers.
11268         (cmd_list) Gave prototype.
11269
11270         * sfm-read.c: Added DEBUGGING comments.
11271         (sfm_read_dictionary) Checks bias correctly.  Sets
11272         dict->var_by_name to NULL.  Calculates long_string_count
11273         correctly.  realloc's dict->var[] array to minimum size.
11274         [DEBUGGING] Calls dump_dictionary.
11275         [DEBUGGING] (dump_dictionary) New function.
11276
11277         * temporary.c: (save_dictionary) Sets var_by_name to NULL.
11278         (restore_dictionary) If the dictionary contains a non-NULL
11279         var_by_name, uses that instead of generating one.
11280         (free_dictionary) Destroys var_by_name.
11281
11282         * var.h: (struct dictionary) Added field `var_by_name'.
11283
11284         * get.c: New file, not complete.
11285
11286 Sun Nov  3 12:24:36 1996  Ben Pfaff  <blp@gnu.org>
11287
11288         * mis-val.c: New enums MV_NOR_*.  New struct num_or_range.
11289         (parse_num_or_range) New function.
11290         (parse_numeric) Reimplemented in order to support LOW THRU <n> and
11291         <n> THRU HIGH missing values.
11292
11293         * output.h: [__GNUC__>1 && __OPTIMIZE__] (width, height) Made
11294         __attribute__((const)).
11295
11296         * q2c.c: (get_token) Merged isdigit || isalpha into isalnum.
11297
11298         * sfm-read.c: Finished reference implementation.
11299
11300         * sfm.h: Includes var.h.
11301
11302         * var.h: Comment fixes.
11303         (struct `variable') Reordered some fields.
11304
11305         * vars-atr.c: (is_num_user_missing) Added support for MISSING_*
11306         constants added previously.
11307
11308 Wed Oct 30 17:13:08 1996  Ben Pfaff  <blp@gnu.org>
11309
11310         * common.h: Comment fixes.  Added declaration of
11311         `second_lowest_value' as variable or macro.  Made `compat_type',
11312         `pgm_state_type' into anonymous enums.
11313
11314         * display.c: Comment fix.
11315
11316         * glob.c: [ENDIAN==UNKNOWN] Added definition for `endian' global
11317         var.
11318         [!defined SECOND_LOWEST_VALUE] Added definition for
11319         `second_lowest_value' global var.
11320         (compat, pgm_state global vars) Changed types to `int'.
11321         (init_glob) Initializes `second_lowest_value'.
11322
11323         * sfm-read.c: Continued work, not complete.
11324
11325         * var.h: Added new MISSING_* constants to handle LOWEST and
11326         HIGHEST.
11327
11328 Sat Oct 26 23:06:06 1996  Ben Pfaff  <blp@gnu.org>
11329
11330         * sfm-read.c: New file, not complete.
11331
11332         * cases.c: (vec_insert) Changed vector expansion algorithm.
11333         (vec_delete) Fixed bug that screwed up deletion sometimes, it was
11334         mucking up the RECODE transformation in particular.
11335         (envector) Harmless change in notation.
11336
11337         dfm is now fairly well tested again.  
11338         * dfm.c: (dfm_get_record) Only returns ext->ptr if ext is
11339         non-NULL--duh.
11340         (cmd_begin_data) if(ext->line) replaced by if(ext && ext->line).
11341
11342         * recode.c: Comment fix.
11343
11344         * sfm.h: Interface should be fairly final now, or at least for a
11345         day or so...
11346
11347         * vfm.c: [DEBUGGING] (index_to_varname) New function.
11348         (open_active_file) [DEBUGGING] Translates ccase indices into
11349         variable names now to make it easier to understand what's really
11350         going on.
11351
11352 Sat Oct 26 20:46:31 1996  Ben Pfaff  <blp@gnu.org>
11353
11354         * data-in.c: Comment fix.
11355
11356         * data-list.c: Includes dfm.h.
11357         (do_reading) Uses new function dfm_push_cust().
11358
11359         * data-out.c: (convert_time, convert_WKDAY, convert_MONTH) Added
11360         `return 1;' at end.
11361
11362         * file-handle.h: Completely changed.  Some parts split off into
11363         new file dfm.h.  Implemented in file-handle.q.
11364         (enum FH_*) Removed.
11365         (struct fh_ext_class) New struct.
11366         (struct file_handle) Retained only these fields: name, norm_fn,
11367         fn, recform, lrecl, mode.  New fields class, ext.
11368         (get_handle_by_name, get_handle_by_filename, parse_file_handle,
11369         close_handle, handle_name) Added `fh_' prefix to name, all
11370         references changed.
11371
11372         * dfm.h: New file, implemented in dfm.c.
11373         (get_record, put_record, fwd_record, bkwd_record, set_record,
11374         get_cur_col) Functions moved from file-handle.h, now prefixed with
11375         `dfm_'.
11376         (dfm_push_cust) New function.
11377
11378         * sfm.h: New file.  Incomplete.
11379
11380         * dfm.c: All functions adjusted/rewritten for new dfm/fhp
11381         interface.  Functions reordered, comments changed.  Not well
11382         tested, probably full of bugs.
11383         (struct dfm_fhuser_ext) New struct.
11384         (dfm_close) New function.
11385         (open_file_r) Pickier about finding `BEGIN DATA.' line.
11386         (open_file_w) User messages changed.
11387         (get_record) Comment fixed.
11388         (read_record) Increments ext->ln even for inline_file.  Calls
11389         dfm_close() for inline_file when `END DATA.' encountered.
11390         (dfm_get_record) Experimental restructuring.
11391         (dfm_push_cust) New function.
11392         (cmd_begin_data) Detects whether the inline file was fully read by
11393         checking whether it is still open; detects whether it was read at
11394         all by checking whether the line number is greater than zero.
11395
11396         * file-handle.q: All functions adjust/rewritten for new dfm/fhp
11397         interface.  Functions reordered, comments changed.  Not well
11398         tested, probably full of bugs.
11399         (init_file_handle) Removed initializers for obsolete fields, added
11400         new fields.
11401         (fh_close_handle) Much simpler, now mainly calls the class
11402         function.
11403         (fh_init_files) Renamed inline file internal filename.
11404
11405         * file-type.c: Includes dfm.h.
11406         (read_from_file_type) Doesn't use dfm internal state anymore.
11407
11408         * inpt-pgm.c, print.c: Include dfm.h.
11409
11410         * recode.c: (internal_cmd_recode) Casts strlen() return value to
11411         int in comparison with other int.
11412
11413         * som-high.c: (build_target) Fixed operator precedence problem in
11414         if statement (& versus ==).
11415
11416 Sat Oct 26 10:39:25 1996  Ben Pfaff  <blp@gnu.org>
11417
11418         * dfm.c: (read_record) Can now read fixed-length records; not
11419         tested.
11420         (put_record) Can now write fixed-length records; not tested.
11421
11422         * file-handle.h: FH_* defines changed to enums.  New enum series
11423         FH_RF_*, FH_MD_*.
11424         (struct file_handle) New members recform, lrecl, mode.
11425
11426         * file-handle.q: Parser changed.
11427         (internal_cmd_file_handle) Added support for new /RECFORM, /MODE,
11428         /LRECL subcommands.  These are compatible with Windows.
11429         (init_file_handle) Initializes recform, mode fields.
11430
11431         * q2c.c: (get_line) When outputting `!' comment lines, now
11432         increments the output file line number so that `#line' directives
11433         are correct.
11434         (make_identifier) New function that converts an arbitrary string
11435         into a valid C identifier.
11436         (dump_vars) Calls make_identifier() in two places in order to
11437         suppress some errors for bad identifiers.
11438         (make_match) Allows TRUE as synonym for YES and FALSE as synonym
11439         for NO.  Allows numbers to be prefixed by underscores to make them
11440         acceptable C identifiers but still to be parsed as numbers by the
11441         Fiasco lexer.
11442
11443 Thu Oct 24 20:13:42 1996  Ben Pfaff  <blp@gnu.org>
11444
11445         * command.c: Re-enabled RECODE, SAMPLE, SELECT IF.
11446         
11447         * dfm.c: Comment fixes. (get_record) Gives error if file handle
11448         was opened for writing.
11449         (open_file_w) New function.
11450         (read_record) Uses strncasecmp if available.  Improved error
11451         messages, comments.
11452         (put_record) New function.
11453
11454         * file-handle.h: Moved function comments into dfm.c and
11455         file-handle.q.  Comment fixes.  Removed declarations of
11456         tilde_expand() and normalize_filename().
11457         (struct file_handle) Changed `open' from boolean to enumerated
11458         field to allow for three states--closed, open for reading, open
11459         for writing--all references changed.
11460
11461         * file-handle.q: Includes filename.h.
11462
11463         * print.c: (CMD_* enums) Renamed PRT_* and moved into var.h; all
11464         references changed.
11465         (alloc_line) Makes allowance for line terminator characters in
11466         calculations.
11467         (print_trns_proc) Now handles OUTFILE, WRITE differences.
11468         (print_space_trns_proc) Handles OUTFILE differences.
11469
11470         * recode.c, sample.c: Comment fixes.
11471
11472         * var.h: (struct print_trns) Changed boolean field `eject' to
11473         bitmapped field `options'; all references changed.  New enums
11474         PRT_* for use with this field.
11475
11476         * exception.h, test-exception.c: Removed.
11477
11478 Thu Oct 24 17:47:14 1996  Ben Pfaff  <blp@gnu.org>
11479
11480         * ascii.c: (delineate) Turned off debug output.
11481
11482         * common.c: [Checker and Linux] (__assert_fail, __eprintf) Moved
11483         to error.c.
11484
11485         * data-in.c: (parse_string_as_format) Sets the entire string value
11486         to spaces, not just the short string part of it.  Is this correct
11487         now? 
11488
11489         * data-out.c: (convert_date) Fixed DATETIME format problems with
11490         decimal places, removed debug code.
11491
11492         * dfm.c: (open_file_r) Fixed bug where an error would occur in the
11493         middle of parsing BEGIN DATA that would cause the lexer to read
11494         from a wild pointer `prog'; now calls new function
11495         preprocess_line() in lexer.c.
11496
11497         * error.c: [__CHECKER__] (hcf) Calls induce_segfault() on improper
11498         termination.
11499         [Checker and Linux] (__assert_fail, _eprintf) Moved from common.c.
11500         Now call induce_segfault() to induce the segfault.
11501         (induce_segfault) New function.
11502
11503         * expr-opt.c: Comment fix.
11504         (parse_sysvar) New function.
11505         (parse_primary) Added system variable support--calls
11506         parse_sysvar().
11507         (global var ops) Added OP_CASENUM operator.
11508
11509         * expr.h: Comment fixes.
11510         (OP_* enum) added OP_CASENUM operator.
11511         (struct casenum_node) New struct.
11512         (union any_union_union) New member `cas' of type `casenum_node'.
11513
11514         * glob.c: (global var last_vfm_invocation) New var.
11515         (init_glob) Initializes last_vfm_invocation.
11516
11517         * lexer.c: (lookahead) Fixed reversed condition on if statement.
11518
11519         * getline.c: (get_line) Split into get_line() and preprocess_line().
11520         (preprocess_line) New function.
11521
11522         * var.h: Declares last_vfm_invocation.
11523
11524         * vfm.c: (procedure) Sets last_vfm_invocation.
11525
11526 Wed Oct 23 21:53:43 1996  Ben Pfaff  <blp@gnu.org>
11527
11528         * command.c: (parse_cmd) Fixed bad assertion related to
11529         lookahead().
11530
11531         * data-in.c: (parse_month) Implemented to parse months according
11532         to full interpretation of standard.
11533         (to_roman) New function.
11534         (parse_wk_delimiter) Bug fix (forgot to skip `WK' in string).
11535         (parse_weekday) Bug fix (forgot to skip all the day name).
11536
11537         * data-list.c: (read_from_data_list_fixed) Fixed bug that screwed
11538         up parsing of multirecord data items.  Also fixed user message.
11539
11540         * data-out.c: Comment fix.
11541         (year2, year4, convert_date, convert_time, convert_WKDAY,
11542         convert_MONTH) New functions to support time & date output.
11543         (convert_format_to_string) Calls new time & date output routines.
11544
11545         * expr-prs.c: (nary_num_func) Found a bug, but didn't fix it yet.
11546
11547         * lexer.c: (lookahead) Noted a previously unnoticed caveat in
11548         comment.
11549
11550         * main.c: [DEBUGGING] (dump_token) Updated to handle getline.h.
11551
11552         * misc.c: (global var formats) Fixed declarations of DATETIME,
11553         TIME, DTIME.
11554
11555         * postscript.c: (text) Fixed a pair of bugs in the reallocation of
11556         the output_char buffer.
11557
11558         * vars-prs.c: (parse_DATA_LIST_vars) Fixed a failure to free
11559         memory bug.  Fixed user messages.
11560
11561 Tue Oct 22 17:27:04 1996  Ben Pfaff  <blp@gnu.org>
11562
11563         * Removed #pragma argsused from lots of places.
11564         
11565         * data-in.c: Implemented zoned decimal and time-date formats.
11566         Untested.  This is a huge chunk of code--maybe 1000 lines and 50
11567         new functions.
11568
11569         * data-out.c: Implemented zoned decimal format.
11570
11571         * expr.h: Moved yrmoda() declaration here from exprP.h.
11572
11573         * misc.c: (global var formats) Minor fixes--added
11574         FCAT_SHIFT_DECIMAL to formats N and Z.
11575         (convert_fmt_ItoO) Added support for format Z.
11576
11577         * som-frnt.c: (som_set_value) Fixed bug regarding string values.
11578
11579 Mon Oct 21 20:39:59 1996  Ben Pfaff  <blp@gnu.org>
11580
11581         * command.c: (parse_cmd) [GLOBAL_DEBUGGING] Inserted call to
11582         som_check_workspace() that is activated between commands.
11583
11584         * data-list.c: (dump_fixed_table, dump_free_table) Finished these
11585         for good, I hope.
11586
11587         * list.q: (begin_row) Changed title expansion style from
11588         SOPT_X_VERT to SOPT_X_SHSP.
11589
11590         * som-frnt.c: Now includes `somP.h'.
11591         (som_push_workspace, som_pop_workspace) New functions that, taken
11592         together, form a solution to the recursive table building problem
11593         mentioned yesterday.  Surrounded every table output routine
11594         throughout the program with calls to these functions.
11595         [GLOBAL_DEBUGGING] (som_check_workspace) New function.
11596         (som_create_table) Checks that there's an active workspace.
11597         (som_destroy_all_tables, som_crush) Removed.
11598
11599         * som-high.c: (global var som_preserve_tables) Removed, all
11600         references deleted.
11601         (som_submit_table) Checks that there's an active workspace.
11602         (dump_columnated_table) Doesn't columnate tables that would have
11603         just one row per column.
11604         (dump_crush_page, som_dump_crush_page) Removed debugging code.
11605         (som_dump_crush_page) Moved row number labels from left side of
11606         tables to right side.
11607         (som_get_table_size) Added support for SOPT_X_SHSP.
11608
11609         * som.h: New cell expansion type SOPT_X_SHSP.
11610
11611         * somP.h: (global vars arena_stack, n_arena_stack, m_arena_stack)
11612         New vars.
11613         (global var curtab_arena) Moved from som-frnt.c.
11614
11615 Sun Oct 20 13:45:28 1996  Ben Pfaff  <blp@gnu.org>
11616
11617         * ascii.c: [GLOBAL_DEBUGGING] (SUPPRESS_WARNINGS) New debug option
11618         that causes bad location warnings to be suppressed.
11619         (delineate) Saves current font when calling draw_text(); fixed
11620         handling of NULLs when backing up.  Also fixed line-wrapping bug.
11621
11622         * command.c: Re-enabled `LEAVE', `NUMERIC', `PRINT', `PRINT EJECT',
11623         `PRINT FORMATS', `PRINT SPACE', `STRING', `TITLE', `WRITE'.
11624
11625         * common.c: Added code to cause assertion failure to dump core
11626         when run under Checker.
11627
11628         * data-list.c: (dump_fixed_table) Fixed some inconsistencies, but
11629         there are still bugs.
11630
11631         * glob.c: (__eprintf) Removed.
11632
11633         * list.q: Inserted som_preserve_tables kluge that prevents tables
11634         from being thrown away due to recursive table building through
11635         som_output_line being called from a transformation during the LIST
11636         procedure invocation.  This is a general problem that must be
11637         solved in a better way since it applies to all procedures in
11638         general.
11639         (begin_row) Changed title options to SOM_X_VERT from SOM_X_BOTH.
11640         (flush_table) Removed SOM_TOPT_PRESERVE from submission options.
11641
11642         * numeric.c: Fixed several errors in the form of msg() calls.
11643
11644         * print.c: Updated for use of som.
11645         (dump_table) Reimplemented.
11646         (print_trns_proc) Calls som_eject_page() instead of eject_page().
11647         Calls som_output_text() instead of outs_line().
11648
11649         * som-frnt.c: (som_destroy_all_tables) Sets som_preserve_tables to
11650         0.
11651         (som_output_text) Function moved from som-low.c.  Interface
11652         changed.
11653
11654         * som-high.c: (som_preserve_tables) New global public variable
11655         declared in som.h.
11656         (som_submit_table) Destroys the tables only if som_preserve_tables
11657         is 0.
11658         (paginate_horizontally) Bugfix: sets som.mpw even if there's only
11659         one subrow per row.  Now labels subrows if there's more than one
11660         subrow per row.
11661         (dump_crush_table) Added wishlist comment.
11662         (som_eject_page) New public function declared in som.h.
11663
11664         * som-low.c: (som_dump_crush_page) Draws row labels if there's
11665         more than one subrow per row.
11666         (som_output_text) Moved to som-frnt.c.
11667
11668         * som.h: (SOM_TOPT_PRESERVE) Removed.
11669
11670         * title.c: (get_title) Changed interface.
11671         (cmd_title) Changed `title' to `outp_title'.
11672         (cmd_subtitle) Changed `subtitle' to `outp_subtitle'.
11673
11674 Sun Oct 20 09:04:15 1996  Ben Pfaff  <blp@gnu.org>
11675
11676         * list.q: (flush_table) Conforms to new partial options in
11677         som_submission_form.
11678
11679         * som-high.c: (paginate_horizontally) Changed form of subrow
11680         number labels.
11681         (build_target) Omits spacing before table if
11682         SOM_TOPT_PARTIAL_OMIT_TOP is selected.
11683         (dump_crush_page) Changed interface.  Only trims bottom rule if
11684         SOM_TOPT_PARTIAL_OMIT_BTM is not selected.
11685         (dump_crush_table) Handles partial tables.
11686         (output_row_label) New function.
11687         (som_dump_crush_page) Emits subrow number labels.  Draws vertical
11688         rule on the right edge of narrow subrows.
11689
11690         * som.h: Changed SOM_SUB_PARTIAL_* series of submission type
11691         constants to a series of SOM_TOPT_PARTIAL_* submission options.
11692         All references updated.
11693
11694 Fri Oct 18 19:46:49 1996  Ben Pfaff  <blp@gnu.org>
11695
11696         * misc.c: Comment fix.
11697
11698         * som-high.c: (examine_table) Treats crushed tables separates for
11699         purpose of determining header size.
11700         (paginate_horizontally) Allots space for line numbers in crushed
11701         tables with lots of subrows per row.  Calculates the `maximum page
11702         width', the width of the widest horizontal page.
11703         (build_target) Removed trim argument; all references changed.
11704         Stricter assertions.  (dump_crush_page) New function.
11705         (dump_crush_table) Reimplemented.
11706
11707         * som-low.c: (som_dump_page) Uses new RULE_ROW &c. constants.
11708         (som_dump_crush_page) Reimplemented, interface changed.
11709
11710         * somP.h: Many many new helper macros for use with crushed tables.
11711         (global var som) Removed `tv', `cum_y' members; all references
11712         removed.  New members `mpw', `digit_space'.
11713
11714 Sun Sep 29 19:37:03 1996  Ben Pfaff  <blp@gnu.org>
11715
11716         * arena.c: (arena_alloc) [!DISCRETE_BLOCKS] Removed `size'
11717         variable, changed to constant 1024.
11718         (arena_ca_strdup) Changed `sizeof(a_string)' to
11719         `sizeof(c_string)'.
11720         (arena_ca_strdup) [!DISCRETE_BLOCKS] Changed bad cast from
11721         `(c_string *)' to `(char *)'; this fixed some offset problems.
11722
11723         * filename.c: (readlink_malloc) Changed initial allocation from
11724         100 bytes to 128.
11725         (good_getcwd) Changed from xmalloc() to local_alloc(); removed
11726         comment.
11727
11728         * postscript.c: (read_fontmap) Fixed leak by changing &owner to
11729         &fm->owner in several places.
11730
11731         * som-high.c: (output_table) Changed interface to rest of world.
11732         (examine_crush_table) Removed.  Crushed tables are re-broken now,
11733         in preparation for rewrite.
11734
11735         * som.h: Comment fix.
11736
11737 Sat Sep 28 21:28:07 1996  Ben Pfaff  <blp@gnu.org>
11738
11739         * ascii.c: (ascii_init_driver) Disposes of x->file.filename and x
11740         itself in the cleanup stage.
11741
11742         * descript.q: (display) At least temporarily, changed the table
11743         format to a crushed table.
11744
11745         * list.q: (begin_row) At least temporarily, added horizontal lines
11746         between cases.
11747
11748         * som-high.c: (examine_crush_table) Sets som.hh to the width of
11749         the horizontal "headers," that is, to the width of the far left
11750         and far right rules.
11751         (justify_pagination) Sets som.th to the width of the widest row
11752         in the crushed table.  Fixed inner loop off-by-one error.
11753
11754         * som-low.c: (som_dump_crush_page) Added code to draw horizontal
11755         rules.
11756
11757         * somP.h: Comment fix.
11758
11759 Fri Sep 27 20:08:39 1996  Ben Pfaff  <blp@gnu.org>
11760
11761         * filename.c: (open_file_ext) Now, doesn't set f->file to NULL
11762         before closing it; also, opens the constructed filename `s'
11763         instead of f->filename.
11764
11765         * postscript.c: Moved initialization of x->loaded, x->prop,
11766         x->fixed, x->current, also the add_encoding() calls, into
11767         postopen().
11768         (preclose) Destroys x->combos; sets x->loaded, x->combos to NULL;
11769         sets x->last_font to NULL; sets x->next_combo to zero.
11770
11771         * som-high.c: (crushed_row_height) Moved definition farther up.
11772         (som_submit_table) Doesn't calculate line width, font size until
11773         after calling open_page(), to accomodate changes to PostScript
11774         driver.
11775         (vert_headers) Removed; equivalent functionality moved to
11776         examine_table(), examine_crush_table().
11777         (justify_pagination) Replaced with different algorithm.
11778         (dump_crush_table) Bugfix that caused tables to fail to be clipped
11779         at the bottom of the page.
11780
11781 Thu Sep 26 22:20:26 1996  Ben Pfaff  <blp@gnu.org>
11782
11783         * command.c: Added cmd_list back into cmd_table.
11784
11785         * freq.c, frequencies.q, repeat.c, list.q, vars-atr.c, vfm.c:
11786         Comment fix: `#define DEBUGGING' --> `#define DEBUGGING 1'.
11787
11788         * list.q: (flush_table) Updated to new som_submission_form format.
11789
11790         * som-frnt.c: Comment fix.
11791
11792         * som-high.c: Changed `#endif' to `#undef EXTERN'.
11793         (output_table) Calls som_get_table_size() directly; handles
11794         crushed tables.
11795         (examine_crush_table) New function; calls vert_headers().
11796         (examine_table) Moved some code into new function, vert_headers().
11797         (justify_pagination) New function.
11798         (dump_plain_table) Removed `static' from `cy'.
11799         (dump_crush_table) New function.
11800
11801         * som-low.c: (som_dump_crush_page) New function.
11802
11803         * som.h: Comment fixes.
11804         (enum SOM_TOPT_CRUSH) New.
11805         (SOM_SUB_PARTIAL_BEG, SOM_SUB_PARTIAL_MID, SOM_SUB_PARTIAL_END)
11806         Temporarily set to zero to make do with LIST procedure.
11807
11808         * somP.h: Re-ordering.
11809
11810 Wed Sep 25 19:36:11 1996  Ben Pfaff  <blp@gnu.org>
11811
11812         * som.c: Split into som-frnt.c, som-high.c, som-low.c.
11813
11814         * somP.h: New file for use by som-high.c, som-low.c.
11815
11816         * q2c.c: Added definition for VME.
11817         (get_line) Now dumps `!' comment lines to the output file
11818         verbatim.
11819
11820         * crosstabs.q, descript.q, file-handle.q, frequencies.q, list.q,
11821         set.q: Changed format of `!' comment lines.
11822
11823 Tue Sep 24 18:39:09 1996  Ben Pfaff  <blp@gnu.org>
11824
11825         * All source files: Added copyright notice.
11826
11827         * common.c: (xmalloc, xrealloc, xstrdup) Cast size_t's to unsigned
11828         longs in msg() calls.
11829
11830         * con32s.c: (xmalloc, xrealloc) Updated from common.c.
11831
11832         * q2c.c: (xmalloc, xrealloc, xstrdup) Updated from common.c.
11833
11834 Sat Sep 21 23:16:31 1996  Ben Pfaff  <blp@gnu.org>
11835
11836         * output.c: (outp_read_devices) Changed criteria for
11837         distinguishing different types of lines.
11838
11839 Fri Sep 20 22:52:28 1996  Ben Pfaff  <blp@gnu.org>
11840
11841         * cmdline.c: Changed syntax message.
11842
11843         * filename.c: (good_getcwd) Bug fix (?).
11844         (normalize_filename) [__BORLANDC__] Uses _fullpath() library
11845         function.
11846         (search_path) Appends DIR_SEPARATOR to directory name only if it
11847         does not already end with one.
11848
11849         * glob.c: Checks STAT_PAGER envvar before PAGER.
11850
11851         * output.c: Checks environment variables instead of just local
11852         macros.
11853
11854 Tue Sep 10 21:39:00 1996  Ben Pfaff  <blp@gnu.org>
11855
11856         * arena.c: (arena_destroy) Swatted a subtle bug that cropped up
11857         when the pointer passed to the function was within the arena
11858         itself, so that it couldn't properly be set to NULL _after the
11859         arena was freed_.
11860
11861         * command.c: Re-enabled DISPLAY.
11862
11863         * display.c: Rewritten to handle tables.  Untested.
11864
11865         * filename.c: (search_path) Fixed memory leak.
11866
11867         * frequencies.q: (cmd_frequencies) Frees v_variables.
11868         (postcalc) Calls cleanup_freq_tab() after displaying statistics.
11869         (cleanup_freq_tab) New function to garbage collect.
11870         (dump_full) Elegantized.
11871
11872         * main.c: New comment.
11873
11874         * output.h: New tag for tagged quotes: TAG_NEWLINE.
11875
11876         * postscript.c: Comment fix.
11877         (release_fontmap, free_font_entry) New functions.
11878         (ps_init_driver) Sets free_font_entry() as the freefunc for
11879         hashtable `loaded'.  Calls release_fontmap() when destroying a
11880         driver; also frees the output filename; also frees the
11881         ps_driver_ext block.
11882         (free_ps_encoding) Frees the filename as well as the encoding
11883         block.
11884         (output_encodings) Frees the line buffer and pops the msg-filename
11885         stack.
11886         (read_fontmap) Frees the fontmap filename and the line buffer.
11887         (postopen, preclose) Misc. garbage collection fixes.
11888         (ps_open_page) Destroys the `combos' hash table; sets `last_font'
11889         to NULL; this fixes some output problems.
11890         (text) Handles TAG_NEWLINE.  Untested.
11891
11892         * som.c: (cell_byte_size) Merged SCON_VALUE and SCON_TEXT cases.
11893         (som_set_string) Removed.  All references changed to
11894         `som_set_text'.
11895         (som_set_text) Rewritten.  New interface.  More general.
11896
11897         * som.h: Minor format changes.
11898         (struct som_value_cell) Removed; all references changed to
11899         `som_text_cell'.
11900         (enums SOT_*) Changed.
11901
11902 Mon Sep  9 21:43:13 1996  Ben Pfaff  <blp@gnu.org>
11903
11904         * command.c: Re-enabled SPLIT FILE.
11905
11906         * postscript.c: Comment fix.
11907
11908         * som.h: Added `SOT_NONE'.
11909
11910         * split-file.h: (cmd_split_file) Removed superfluous parenthesis.
11911
11912         * vfm.c: (dump_splits) Reimplemented.
11913
11914 Sat Sep  7 22:35:12 1996  Ben Pfaff  <blp@gnu.org>
11915
11916         * Compiled the project under gcc 2.7.2, which gave some new
11917         warnings.  This led to many additions of casts from unsigned to
11918         int sprinkled throughout the code.
11919         
11920         * arena.c: Many uses of `unsigned' changed to `size_t'.
11921
11922         * command.c: Added END FILE, END REPEAT to command table.
11923         (var cmd_end_repeat) Renamed cmd_end_repeat_p.
11924         (find_command, FILE_TYPE_okay) Not commented out anymore.
11925         (parse_cmd) Calls FILE_TYPE_okay again.
11926         (output_line) Added calls to som_output_text() to put the line
11927         in the output files.
11928
11929         * common.c: (macro VME) Format changes.
11930         (xstrdup) Asserts that its argument is not NULL.
11931         
11932         * data-list.c: Implemented dump_fixed_table().
11933         
11934         * inpt-pgm.c: Formatting changes.  Comment changes.
11935         (end_case_proc) Renamed end_case_trns_proc.
11936         (cmd_end_file, end_file_trns_proc) New functions.
11937
11938         * misc.c: Many uses of `int' and `unsigned' changed to `size_t'.
11939
11940         * misc.h: (local_strdup) New macro corresponding to strdup() but
11941         allocating its data through local_alloc() if possible--that is, if
11942         GNU C is in use.
11943
11944         * postscript.c: Comment changes.
11945         (quote_ps_name, quote_ps_string, output_encodings) New functions.
11946         (output_line, add_string) New macros supporting
11947         output_encodings().
11948         (postopen) Fixed contents of ${fixed-font} and ${prop-font}
11949         substitution vars.  Calls output_encodings() when a line
11950         consisting of `!encodings' is encountered.
11951         (preclose) Some code moved into quote_ps_string().
11952         (dump_line) Changed into macro supporting dump_fancy_line().
11953         (switch_font) Now outputs DSC "%%IncludeResource: font (...)"
11954         command when appropriate.
11955         (write_text) Fixed `literal_char' array (I think it's fixed, at
11956         least.)
11957         (text) Fixed bug when width was zero.  Now exits immediately on
11958         zero height_left.  Now, when executing `goto restart;', checks
11959         that cp<end, so that we don't read beyond end-of-string.  Also,
11960         outputs the correct code to the output file by outputting the code
11961         from the metric instead of the internal metric index.
11962
11963         * repeat.c: (cmd_end_repeat) New function.
11964
11965         * som.c: (var som) `headers' renamed `options' and semantics
11966         changed.  All references changed.
11967         (draw_title) `if(px!=-1 || px!=-1)' --> `if(px!=-1 || py!=-1)'.
11968         (build_target) Only inserts spacing if SOM_TOPT_SPACING not
11969         selected.
11970         (som_text_table) Removed.
11971         (som_output_text) New function.
11972
11973         * som.h: (struct som_submission_form) Removed `header', `reuse',
11974         replaced with bitmapped field `options'.
11975         (SOM_TOPT_*) New enum set for som_submission_form.options.
11976         (SOT_*) New enum set for som_output_text().
11977
11978         * temporary.c: (copy_variable) When copying the var label, only
11979         calls xstrdup() if it's non-NULL.
11980
11981         * var.h: (enum type `vartype') Removed; all references changed to
11982         `int'.
11983
11984         * vars-atr.c: (init_variable) Changed local var `nbytes' from
11985         `int' to `size_t'.
11986
11987 Thu Sep  5 22:05:56 1996  Ben Pfaff  <blp@gnu.org>
11988
11989         * font.h: Comment changes.
11990
11991         * groff-font.c: (groff_read_font) Initializes `name' field to
11992         NULL.  Handles `encoding' field.
11993
11994         * hash.c: (hsh_dump) [GLOBAL_DEBUGGING] Output formatting changes.
11995
11996         * postscript.c: (struct font_entry) Removed `position' field.
11997         (struct ps_font_combo) New struct.
11998         (struct ps_driver_ext) Removed field `next_position'.  New fields
11999         `combos', `next_combo'.  `last_font' field changed from
12000         `font_entry *' to `ps_font_combo *'.
12001         (ps_init_driver) Reformatted; handles new fields.  When
12002         OPO_AUTO_ENCODE is set, adds the two default fonts' encodings to
12003         the encoding list.
12004         (get_encoding, find_encoding_file) New functions.
12005         (add_encoding) Some code moved out into find_encoding_file().
12006         (postopen) Changed value for ${title}.
12007         (preclose) Sets `loaded' field to NULL after destroying the hash
12008         table.
12009         (ps_open_page) Added comment.  Inits the `combos' and `next_combo'
12010         fields.
12011         (ps_text_set_font_by_position) Figures out the current family if
12012         not known.
12013         (compare_ps_combo, hash_ps_combo, free_ps_combo) New functions.
12014         (switch_font) Implemented.
12015         (write_text) Calls switch_font() more often.  Format changes.
12016         #undefs its macros after they're no longer useful.
12017         (text) Changed `continue' at one point to a jump to the top of the
12018         loop because we don't want `separate' reset to 0 at that point.
12019         (load_font) No longer sets `position' in the font_entry created.
12020
12021 Wed Sep  4 21:45:35 1996  Ben Pfaff  <blp@gnu.org>
12022
12023         * font.h: (struct font_desc) New member `encoding', which is not
12024         properly handled yet.
12025
12026         * glob.c: (init_glob) Some new i18n code, which is probably
12027         screwed up.
12028
12029         * output.c: (outp_read_devices, outp_get_paper_size) Changed
12030         `size' local from `int' to `size_t'.
12031
12032         * postscript.c: New driver configuration parameter `auto-encode'.
12033         New enums OPO_AUTO_ENCODE, ODA_COUNT.
12034         (struct font_entry) New member `position'.
12035         (struct ps_driver_ext) Reordered.  New hash table member
12036         `encodings'; new members `next_position', `next_encoding',
12037         `last_font'.  Members `current', `prop', `fixed' changed from type
12038         `font_desc *' to `font_entry *'; all references changed.
12039         (struct ps_encoding) New struct.
12040         (read_ps_encodings, compare_ps_encoding, hash_ps_encoding,
12041         free_ps_encoding, add_encoding) New functions.
12042         (ps_init_driver) Added OPO_AUTO_ENCODE to default
12043         x->output_options.  Initializes new members of ps_driver_ext.
12044         Changed default value for prologue_fn, encoding_fn.  Calls
12045         read_ps_encodings after loading default fonts.
12046         (option_tab[], ps_option) Handle new configuration parameter.
12047         (switch_font) New function.
12048         (struct output_char) `font' member changed from `font_desc *' to
12049         `font_entry *'.  New member `separate'.
12050         (read_fontmap) Changed `size' from `int' to `size_t'.
12051         (output_line, put_number) New macros for write_text().
12052         (write_text) Optimizes text output by consolidating multiple
12053         calls to PostScript `show' operator.
12054         (text) Keeps track of when text arguments can't be consolidated by
12055         write_text(), and marks those spots in the output stream.
12056         (load_font) Sets `position' of the allocated font_entry to -1, cuz
12057         the font hasn't been switched to by switch_font(), which is where
12058         the position is important--the PostScript is what cares about the
12059         position.
12060
12061 Sat Aug 31 23:52:38 1996  Ben Pfaff  <blp@gnu.org>
12062
12063         * hash.c: (hsh_destroy) Ignores NULL argument.  Doesn't try to
12064         call a NULL free_func.
12065         (hsh_rehash) Elegantized.
12066         (hsh_probe) Fix bug that manifested when the table was expanded
12067         and thus had to change location in memory.  Good thing
12068         too--otherwise could have been much more subtle.
12069         (hsh_find) [GLOBAL_DEBUGGING] Not stubbed out anymore.
12070         (hsh_foreach) New function for hash table iteration.
12071
12072         * hash.h: (struct hsh_iterator) New.
12073
12074         * lexer.c: (parse_tagged_quote) Font and family name strings in
12075         tags are now null-terminated.
12076
12077         * output.c: (outp_evaluate_dimension) Fixed over-aggressive unit
12078         parsing.
12079         (internal_get_paper_size, outp_get_paper_size) Fixed; now work as
12080         documented.  (Never before tested?)
12081
12082         * output.h: Comment changes.
12083
12084         * postscript.c: New driver options `optimize-text-size',
12085         `optimize-line-size', `max-fonts-simult'.  New enum set for
12086         specing cached line types.  Comment fixes.
12087         (struct line_form) New struct.
12088         (struct ps_driver_struct) New members `text_opt', `line_opt',
12089         `max_fonts', `lines'.
12090         (ps_init_driver) Initializes new members of ps_driver_struct.
12091         (user option type enum set) New member `nonneg_int_arg'.
12092         (static var option_tab[]) Supports new options.
12093         (ps_option) Handles new options.
12094         (find_ps_file) Made static.  No longer calls hsh_dump().
12095         (ps_get_var) Made static.
12096         (preclose) Dumps out proper DSC trailer.
12097         (ps_open_page) Elegantized.
12098         (ps_close_page) Calls dump_lines() if appropriate.
12099         (ps_line_horz, ps_line_vert, ps_line_intersection) Reduced to
12100         wrappers around line().
12101         (int_2_compare, compare_line, dump_line, dump_fancy_line,
12102         dump_lines, hash_line, free_line, line) New functions for support
12103         of line caching.
12104         (write_text, text) Made static.
12105         (text) Added to font support, not finished.
12106
12107 Thu Aug 29 21:36:41 1996  Ben Pfaff  <blp@gnu.org>
12108
12109         * font.h: (struct font_desc) New members ascent, descent.
12110
12111         * groff-font.c: (groff_read_font) Calculates font ascent and
12112         descent from the ascent and descent of the `d' and `p' characters,
12113         respectively, as per a suggestion on comp.fonts.
12114
12115         * postscript.c: (ps_open_page, ps_close_page, ps_line_horz,
12116         ps_line_vert, ps_line_intersection) Rewritten to deal with changed
12117         prologue.
12118         (write_text) Handles text right-justification and centering (not
12119         full justification).  Still very inefficient.  (One output line
12120         per character?!)
12121         (struct output_char) Added fields for font and font size.
12122         (text) Many bugfixes.
12123
12124 Sat Aug 24 23:26:00 1996  Ben Pfaff  <blp@gnu.org>
12125
12126         * cmdline.c: (usage) Calls outp_list_classes().
12127
12128         * font.h: Comment fix.
12129
12130         * groff-font.c: New exported global var `space_index'.
12131         (groff_init) New function to initialize `space_index'.
12132         (hash_kern) Casts result to unsigned.
12133         (font_name_to_index) Renamed font_char_name_to_index.  All
12134         references changed.  Also, now returns the value of `space_index'
12135         when passed an ASCII space character as an argument.  Fixed
12136         handling of nulls.
12137         (font_get_kern_adjust) Changed i from `int' to `unsigned'.
12138         Handles passed NULL pointers properly.
12139
12140         * lexer.c: (parse_tagged_quote) Comment fix.  Better range
12141         checking.
12142
12143         * output.c: (outp_list_drivers) Removed.  Removed all references.
12144         
12145         * output.h: Comment fixes.
12146
12147         * postscript.c: (ps_open_global) Calls groff_init().
12148         (output_char) New structure.
12149         (write_text) New function.
12150         (text) No longer stubbed out!  Now the output is correct--with a
12151         few exceptions, one of them being that the page has to be held
12152         upside down into a mirror.
12153
12154 Sun Aug 11 21:31:22 1996  Ben Pfaff  <blp@gnu.org>
12155
12156         * font.h: Comment fix.
12157         
12158         * font.c: (name_to_index) Renamed font_name_to_index, made extern.
12159         All callers changed.
12160         (number_to_index) Renamed font_number_to_index, made extern.  All
12161         callers changed.
12162         (font_get_kern_adjust, font_get_char_metrics) New functions.
12163
12164         * output.h: New constant OUTP_T_INTERNAL_DRAW.
12165
12166         * postscript.c: Changed default line width back to 1/2 point.
12167         (ps_line_horz, ps_line_vert, ps_line_intersection) Now lines are
12168         in the center of the space allotted for them, not just a fixed
12169         offset from the edge of the space; this fixes some bugs.
12170         (ps_line_intersection) Now supports all command line styles.
12171         (ps_text_get_size) Bug fix in computation of em width.
12172         (text) New function, the meat behind ps_text_metrics and
12173         ps_text_draw.  Not complete.
12174         (ps_text_metrics, ps_text_draw) Removed the stub taken from
12175         ascii.c; call text().
12176
12177 Sat Aug 10 23:28:17 1996  Ben Pfaff  <blp@gnu.org>
12178
12179         * arena.c: (arena_free) Assert that the argument is non-NULL.
12180         
12181         * groff-font.c: (add_kern) Calls arena_free() for old_kern if and
12182         only if old_kern is non-NULL.
12183
12184         * postscript.c: (ps_init_driver) Changed default line width to 1
12185         point.
12186         (postopen) New prologue variables.
12187         (ps_line_horz, ps_line_vert, ps_line_intersection) Implements some
12188         more of the common line styles properly, but not all.
12189         (ps_text_metrics) Fixed problem with this stubbed out version that
12190         kept it from taking font sizes into account.
12191
12192 Thu Aug  8 22:31:11 1996  Ben Pfaff  <blp@gnu.org>
12193
12194         * arena.c: (arena_malloc) Bug fix.
12195         (arena_dump) [GLOBAL_DEBUGGING] New function.
12196
12197         * ascii.c: Comment fix.
12198         (count_fancy_chars, delineate) Now static functions.
12199         
12200         * filename.c: (interp_vars) Bug fixes.
12201
12202         * font.h: Comment fixes.
12203
12204         * glob.c: (init_glob) Sets set_viewwidth, set_viewlength at
12205         beginning in case we have an error message to display before
12206         initializing the display.
12207
12208         * groff-font.c: Comment fix.  Changed rehash threshold from 2/3
12209         full to 1/2 full.
12210         (groff_read_font) Bug fixes.
12211         (name_to_index) Increments hash.used.  Sets `name' field of hash
12212         entry properly.
12213         (add_kern) Sets kern_max_used after rehashing.  Other bug fixes.
12214
12215         * hash.c: Return type changed.
12216
12217         * postscript.c: Continued development.  Now marks lines on the
12218         paper, but very buggy.
12219
12220 Sat Aug  3 20:50:35 1996  Ben Pfaff  <blp@gnu.org>
12221
12222         * Changed comments in many source files from `/* xxx /* yyy */' to
12223         `/* xxx */ /* yyy */' for cleanliness.
12224
12225         * arena.c: (arena_sd_strdup) New function.
12226         
12227         * ascii.c: (struct ascii_driver_ext) New member `file'.
12228         (ascii_init_driver) Fills out member `file' for initing; uses
12229         close_file_ext for closing drivers.
12230         (ascii_option) Changed %.*s back to %s because the a_string's are
12231         always null-terminated.
12232         (postopen, preclose) New functions.
12233         (ascii_open_page) Uses new style of open_file_ext.
12234         (ascii_option, commit_line_buf, output_lines) Use ext->file.file
12235         instead of this->output.
12236         (__assert_fail) Removed.
12237
12238         * cmdline.c: Changed syntax_message[].
12239
12240         * error.c: #include's <readline/history.h> only if the history
12241         library is available, not if just the readline library is
12242         available.
12243
12244         * filename.c: (expand_line) Removed alloca() support.
12245         (interp_vars) No longer tilde-expands argument.  Limit on output
12246         length removed.
12247         (tilde_expand) Now treats argument as path rather than filename.
12248         [!unix] Now is a no-op function.
12249         (search_path) Better verbose message formatting.
12250         (open_file, close_file) Comment fixes.
12251         (close_file) [!unix] Doesn't bother with pipes.
12252         (open_file_ext) Completely rewritten, interface revamped.
12253         (close_file_ext) New function.
12254
12255         * font.h: Comment changes.
12256
12257         * frequencies.q: Removed AIX alloca support since it doesn't use
12258         alloca.
12259
12260         * hash.c: Comment changes & additions.
12261         (hsh_create) Initializes entire table instead of first M entries.
12262         (hsh_probe) Stupid bug fixed.  Now it works.
12263         (hsh_dump) [GLOBAL_DEBUGGING] New function.
12264
12265         * main.c: (parse) Detects EOF properly in token-eating loop.
12266         Should the STOP token have its value changed to 0?
12267
12268         * misc.c: (blp_getdelim) [HAVE_GETDELIM] Now it's a macro.
12269         (blp_getline) Now it's a macro.
12270
12271         * output.h: (struct outp_driver) Removed members output, filename.
12272         
12273         * output.c: (outp_init) [!NO_POSTSCRIPT] Installs PostScript
12274         drivers in driver table.
12275         (outp_read_devices) Frees buf.  Warns if there are no active
12276         output drivers.
12277         (outp_configure_clear) Sets outp_configure_vec to NULL after
12278         deleting its elements.
12279         (configure_driver, destroy_driver) Removed references to output,
12280         filename members of outp_driver.
12281         (outp_evaluate_dimension, internal_get_paper_size,
12282         outp_get_paper_size) New functions.
12283
12284         * postscript.c: Continued development.  Now links but doesn't make
12285         any marks on the page.  Lotsa bugs I suppose.
12286
12287         * str.c: (strcasecmp) [!HAVE_STRCASECMP] New function.
12288
12289         * str.h: Comment changes.
12290
12291 Sat Jul 27 22:32:38 1996  Ben Pfaff  <blp@gnu.org>
12292
12293         * Removed dependencies on non-nested comments in several files.
12294         Also removed references to (unix || __unix__) in #if's since
12295         prefh.orig makes those two equivalent.
12296         
12297         * ascii.c: (ascii_open_global) Creates ascii_arena.
12298         (ascii_close_global) Destroys ascii_arena.
12299         (ascii_init_driver) Doesn't create ascii_arena.
12300         (ascii_copy_driver) Removed.
12301         (ascii_option) Possible bugfix regarding %s vs. %.*s with a_string's.
12302         (outp_class ascii_class) Removed ascii_copy_driver reference.
12303
12304         * frequencies.q: Now can display all statistics except median.
12305         Still not finished.
12306
12307         * output.c: Handles outp_class.ref_count so output class
12308         destructors are called properly.
12309         (add_class) Sets ref_count to 0.
12310         (configure_driver) Initializes class if ref_count++ is 0.
12311         (destroy_driver) Destructs class if --ref_count is 0.  Frees the
12312         class output file name.
12313         
12314         * output.h: (struct outp_class) Removed copy_driver, inited.
12315         Added ref_count.
12316
12317         * postscript.c: Completely replaced but not finished.
12318         
12319 Tue Jul 23 21:48:36 1996  Ben Pfaff  <blp@gnu.org>
12320
12321         * approx.h: #includes <float.h>.
12322
12323         * arena.h, arena.c: Many functions changed to take an arena **
12324         instead of an arena *, for consistency.  All callers changed.
12325         (arena_alloc) Now creates a new arena if passed *A that is NULL.
12326         (arena_destroy) Sets *A to NULL.
12327         
12328         * ascii.c: (delineate) Implements OUTP_T_VERT correctly.  Removed
12329         assertion that `width' be positive.
12330
12331         * command.c: Removed #if's from cmd_table.
12332         (walk_cmdtable_func) [0] New function (debug code).
12333         (init_cmd_parser) [0] Dumps out cmd_table (debug code).
12334         (parse_cmd) Doesn't return failure for unimplemented commands.
12335
12336         * common.h: (SYSMIS) Changed from DBL_MAX to -DBL_MAX.
12337         (SYSCODE) New constant macro.
12338
12339         * descript.q: Checks for positive n_variables before performing
12340         analysis.
12341
12342         * file-handle.q: (get_handle_by_filename) Bug fix: passes &f to
12343         avl_find instead of &fp as arg 2.
12344
12345         * frequencies.g, frequencies.q: Continued updating; now compiles &
12346         works again, but not complete.
12347
12348         * main.c: Changes to user messages.
12349
12350         * misc.c: (reverse) [0] New function.
12351
12352         * settings.h: Comment removed.  #includes "common.h".
12353
12354         * som.c: (som_set_null) New function.
12355         (som_set_value, som_set_string, som_set_text) More detailing
12356         assertions.
12357         (som_set_float) Implemented function.
12358         (dump_columnated_table) Bug fix regarding page breaks.
12359         (draw_cell) Bug fix regarding text that spilled out of a cell.
12360         (draw_intersection, draw_horz_rule, draw_vert_rule) No longer draw
12361         null lines.
12362         (get_cell_size) Support SCON_EMPTY cells.
12363         (get_table_size) When calculating rules' widths and heights, mask
12364         out SLIN_SPACING bit.  Added SOPT_X_HLTL support.
12365         
12366         * som.h: (som_any_cell) New option SOPT_X_HTLT.  Removed
12367         SOPT_X_SHADE.
12368         (struct som_submission_form) New member `header'; all users
12369         changed.
12370
12371         * val-labs.c: (get_label) User messages changed.
12372
12373         * var.h: Changed FREQUENCIES structures.
12374
12375         * vars-atr.c: (is_num_user_missing, is_str_user_missing) Made
12376         inline.
12377         
12378 Fri Jul 19 19:11:13 1996  Ben Pfaff  <blp@gnu.org>
12379
12380         * approx.h: Definition of EPSILON now depends on system's
12381         DBL_EPSILON.  Removed GNU C specific code.
12382         (cmpapx) Renamed approx_compare.
12383
12384         * frequencies.g, frequencies.q: Continued updating; still doesn't
12385         compile.
12386
12387         * groff-font.c: (name_to_index) Fix bug that kept it from
12388         compiling.
12389
12390         * hash.c, hash.h: Completed work.
12391
12392         * var.h: Changes to freq_tab, frequencies_proc.
12393         
12394 Wed Jul 17 21:23:36 1996  Ben Pfaff  <blp@gnu.org>
12395
12396         New hashing code.
12397         * hash.c, hash.h: New files.  Not completed.
12398         * Makefile.am: Added hash.c to source file list.
12399         * font.h: (struct font_desc) New member kern_size_p.
12400         * groff-font.c: Uses hash.h.
12401         (hashpjw) Moved to hash.c.
12402         (next_prime_power) Rewrote, renamed hsh_next_prime, moved to
12403         hash.c.
12404         (static var hash) New member size_p.
12405         * var.h: Includes hash.h.
12406         (struct freq_tab) Changed AVL_TREE to hash_tab.
12407
12408         * vars-prs.c: Comment, formatting fixes.
12409
12410         * frequencies.g, frequencies.q: Continued updating.  Not yet
12411         working.
12412
12413         * formats.c: Bug fix.
12414
12415 Tue Jul 16 22:10:04 1996  Ben Pfaff  <blp@gnu.org>
12416
12417         Increasing parallelism between DESCRIPTIVES and FREQUENCIES.
12418         * descript.g: Comment fixes.
12419         * descript.q: Comment fixes.  Moved some declarations into var.h.
12420         Made dsc_info a static table.  Updated FIXMEs.
12421         (internal_cmd_descriptives) Beautified.
12422         
12423         * frequencies.q: Started updating into working order.
12424         * frequencies.g: New file analogous to descript.g.
12425         * var.h: Comment fixes.  Added structures for FREQUENCIES.
12426         
12427         * som.c: Removed vestiges of crushing and partial table support.
12428
12429 Sun Jul 14 15:45:31 1996  Ben Pfaff  <blp@gnu.org>
12430
12431         * Many more changes to som.c especially, but these will not be
12432         documented as I have resolved to remove them.  This patchlevel is
12433         being released solely so that I can fall back to it if I decide
12434         that removing the changes is not a good idea.
12435
12436 Sat Jul 13 09:58:44 1996  Ben Pfaff  <blp@gnu.org>
12437
12438         * som.c: (global var som) New member `cum_y'.
12439         (build_target) Properly handles titles for partial tables.
12440         (dump_partial_beg, dump_partial_mid, dump_partial_end)
12441         Merged into single new function dump_partial().  Fixed problem
12442         with titles on partial tables.
12443         (dump_table) Calls dump_partial() for all parts of partial tables.
12444         (dump_page) Criteria for drawing title changed.
12445         
12446 Fri Jul 12 22:03:36 1996  Ben Pfaff  <blp@gnu.org>
12447
12448         * command.c: (cmd_table) Added LIST, WEIGHT.
12449
12450         * command.c: (cmd_remark) No longer frees `s' since it's not
12451         dynamically allocated.
12452         
12453         * data-out.c: (convert_f) Now correctly handles the case where
12454         abs(v->f)<1 but v->f rounds to a value of 1.00 given the specified
12455         number of decimals.
12456         (som_destroy_all_tables) Removed argument.  All callers changed.
12457         (som_vline, som_hline) Argument validity checking corrected.
12458         (som_set_value) Implemented half-heartedly.
12459         (replicate_table) Copies tables piece-by-piece when using Checker.
12460
12461         * som.h: New line style SLIN_1THIN, currently equivalent to
12462         SLIN_0.  New enum set SOM_SUB_*.
12463         (struct som_submission_form) Removed `seq_no'.  Added `type'.
12464         
12465         * list.q: Newly working file; uses partial tables.
12466         
12467         * som.c: (som_reduce_table) Renamed som_set_table_height().
12468         (som_crush) Removed argument `group'.
12469         (global var som) Removed `nt', `seq_no'.  Added `type'.
12470         (som_submit_table) Arguments changed.
12471         (output_table) Removed partial table code.
12472         (build_target) New arg; partial table support added.  All callers
12473         changed.
12474         (dump_plain_table) Removed partial table code.
12475         (dump_partial_beg, dump_partial_mid, dump_partial_end) New functions.
12476         (dump_table) Supports partial tables.
12477         (dump_page) New argument to allow not drawing top and/or bottom
12478         headers.  All callers changed.  Supports partial tables.
12479
12480 Sat Jul  6 22:22:25 1996  Ben Pfaff  <blp@gnu.org>
12481
12482         * data-out.c: Changed `#include <approx.h>' to `#include
12483         "approx.h".
12484         (convert_F) Comment fix.  Now won't print `-.000', etc.
12485
12486         * descript.q: Now Z-scores work, although there appears to
12487         be a bug (which might actually be in data-out.c:convert_F()).
12488         (descriptives_trns_proc, descriptives_trns_free) New functions.
12489         (run_z_pass) Implemented.
12490         
12491         * var.h: Comment fixes.
12492         (dsc_z_score, descriptives_trns) New structs.
12493         (descriptives_trns) Added to any_trns as `dsc'.
12494
12495         * error.c, error.h: New error class, IS (Installation Script
12496         error), used in those instances where the error is in the
12497         installation, but there is a script file or installation file that
12498         can be usefully referred to.
12499         
12500         * output.c: Change many IE classes to IS classes.
12501
12502         * cases.c, command.c, common.c, crosstabs.q, expr-evl.c,
12503         frequencies.q, list.q, vars-prs.c, vfm.c: Removed reference to
12504         HAVE_MALLOC_H because Borland C++ alloca() is broken, so why
12505         include the corresponding header?
12506         
12507         * glob.c: (init_glob) Don't malloc term_buffer under Checker.
12508         Don't bail out if termcap can't be read.
12509
12510         * som.c: (som_destroy_table) Removed.
12511         (som_reduce_table, som_destroy_all_tables) New functions.
12512         (som_crush) New function, not implemented.
12513         
12514         * som.h: New table option STAB_CRUSH.  Comment fix.  New struct
12515         som_submission_form.  Function prototypes revised.
12516
12517         Outputting huge tables (1000s of rows) a few rows at a time
12518         is supported, though untested.  May even break everything.
12519         Actually, the code doesn't even compile right now.
12520         * som.c: (struct som) New fields htv, nt, seq_no.
12521         (som_submit_table) Multiple arguments changed to a single
12522         pointer to struct submission_form.  Only increments subtable_num
12523         if seq_no is zero.  Only destroys table if it's not going to
12524         be reused.
12525         (replicate_table) New function.
12526         (output_table) Comment fix.
12527         (examine_table) Changed inline code to code calling
12528         replicate_table().  Calculates htv.  Supports partial tables.
12529         (draw_title) Removed comment.
12530         (build_target) Only allows for title on first part of partial
12531         tables.
12532         (dump_plain_table) Only resets table chunk number on first part
12533         of partial tables; FIXME: doesn't work quite right.  Supports
12534         partial tables.
12535         (dump_page) Titles only on first part of partial tables.
12536
12537 Fri Jul  5 20:16:19 1996  Ben Pfaff  <blp@gnu.org>
12538
12539         * Thanks to an unreliable IDE hard drive, I have spent the last
12540         day reconstructing my Debian GNU/Linux installation and redoing
12541         the previous day's changes--somehow I managed to save every file
12542         except for output.c and output.h.  So the following changes could
12543         really be considered independent of the output.c, output.h changes
12544         from Jul 4.
12545
12546         * output.h, output.c: Moved the outp_configure_vec global var,
12547         outp_names struct, and enum set OUTP_S_* from output.h to output.c.
12548         outp_configure_vec is now static.
12549         
12550 Thu Jul  4 20:20:24 1996  Ben Pfaff  <blp@gnu.org>
12551
12552         * The entire philosophy behind configuration of the output drivers
12553         changed.  Now there is a termcap-type configuration where drivers
12554         to be read are determined beforehand, rather than parsing the
12555         entire output init file and storing it in memory & deciding what
12556         to actually use later.  Faster & more memory-efficient at the same
12557         time, cool.
12558         
12559         * output.c: Comment fix.  Removed outp_init_drivers global var.
12560         Removed all references to synonyms.  New structure outp_defn.  New
12561         global vars outp_macros, outp_configure_vec.
12562         (search_name, delete_name, add_name, check_configure_vec,
12563         expand_name, find_defn_value) New static functions.
12564         (outp_configure_clear, outp_configure_add, outp_configure_macro,
12565         outp_read_devices) New extern functions.
12566         (outp_init) Much functionality moved into outp_read_devices.
12567         (outp_read_devices) Format of output init file changed; name of
12568         file is `devices' rather than `output' to avoid Makefile
12569         conflicts.
12570         (outp_clear) Renamed outp_done.
12571         (outp_list_classes) Bug fix, cleaned up.
12572         (outp_list_drivers) Not implemented anymore.
12573         (outp_configure_driver) Now a static function; simplified; now
12574         interpolates macros; supports new structure.
12575         (outp_enable_driver, match_synonym) Removed; all references
12576         removed.
12577         (find_driver) First argument removed.
12578         
12579         * output.h: Global var outp_init_drivers removed; new structure
12580         outp_names; new enum set OUTP_S_*; new global var
12581         outp_configure_vec; function prototypes for output.c exports
12582         updated.
12583         
12584         * main.c: (main) Calls outp_read_devices() after parsing the
12585         command line.
12586         
12587         * cmdline.c: (parse_command_line) New option -v --verbose;
12588         --version changed to -V.  --device option changed syntax to just
12589         take a single device name.  Accepts key=value declaration of
12590         output init file macros.  Syntax message updated.
12591
12592         * filename.c: (expand_line) New function.
12593         (interp_environ_vars) Renamed interp_vars; no longer uses
12594         fixed-size buffer.
12595         (blp_getenv) Allows $ARCH and $VER pseudo-environment-vars to be
12596         overridden by real environment vars.
12597         (search_path) Uses verbose_msg() instead of #ifdef'd printf().
12598         * filename.h: interp_environ_vars() renamed interp_vars().
12599         
12600         * error.c, error.h: Added extern variable `verbosity', message
12601         class MM.
12602         
12603         * error.c: (vmsg) Support message class MM.
12604         (verbose_msg) New function.
12605
12606         * descript.q: (generate_z_varname) Bug fix in generation of
12607         Z-score varnames.
12608         (dump_z_table) Bug fix in column headers.
12609         
12610         * ascii.c: (ascii_init_driver) Changed minimum number of lines per
12611         page from 29 to 15.  Don't set a default for ops[OPS_INIT,
12612         OPS_DONE].  Writes the uninit string when the driver is closed.
12613         (ascii_open_page) Write the init string before the first page.
12614         (output_shorts) Form of main loop changed from `while' to `for'.
12615         Bug fix with overstrikes: the character is printed *after* the
12616         backspace.  Eliminated a lot of `& 0xff' modifiers.
12617         (advance_to_left_margin) New function.
12618         (return_carriage, output_lines) Handle left margin.
12619
12620 Thu Jul  4 00:35:59 1996  Ben Pfaff  <blp@gnu.org>
12621
12622         * ascii.c: New option `carriage-return-style'.
12623
12624         * ascii.c: (count_fancy_chars) New function.
12625         (delineate, text_metrics) Use new function; bug fixes regarding
12626         rich text strings.
12627         (text_draw) Bug fix with rich text.
12628         (output_string, output_shorts) Reordered.
12629         (output_shorts) Now handles boxchars and some overstrike font
12630         changes.
12631         (output_char, return_carriage) New functions.
12632         (output_lines) Now handles overstriking and font changes properly;
12633         some code moved to output_shorts.
12634
12635 Tue Jul  2 22:13:23 1996  Ben Pfaff  <blp@gnu.org>
12636
12637         [GLOBAL_DEBUGGING]
12638         * ascii.c: New member `debug' in ascii_driver_ext.
12639         (ascii_init_driver, delineate) Uses new member.
12640
12641         Now you can set a vertical height on writing text.
12642         * ascii.c: (delineate) Keeps track of vertical position.
12643         (text_draw) No longer considers fully justified text an internal
12644         error.
12645         
12646         * output.h: New flag OUTP_T_VERT; other OUTP_T_ values changed.
12647
12648         Tables' titles are drawn; they can have variable height.
12649         * som.c: `som' struct has new member, title_height.
12650         (draw_title) New argument.  Moved within file.  All caller
12651         changed.
12652         (build_target) New argument, amount of space needed for first row.
12653         Calculates height of title, takes that into account.  All callers
12654         changed.
12655         (dump_plain_table, dump_columnated_table) Took calculation of y1,
12656         y2 out of loop.
12657         (dump_columnated_table) [GLOBAL_DEBUGGING] Debugging code
12658         improved.
12659         (dump_columnated_table) Organized for readability.
12660         (dump_page) Makes use of som.title_height.
12661
12662         * som.c: Many comment bug fixes.
12663
12664         * descript.q: (try_name, generate_z_name) Bug fix regarding
12665         generation of Z-score variable names.
12666         * var.h: Removed num from descriptives_proc; all referents removed.
12667
12668 Mon Jul  1 22:13:39 1996  Ben Pfaff  <blp@gnu.org>
12669
12670         * ascii.c: (ascii_line_horz, ascii_line_vert,
12671         ascii_line_intersection) Added debugging code.
12672
12673         Added a descriptive line above each table to describe it.
12674         * command.c: (parse_cmd) Calls som_new_series.
12675         
12676         * som.c: New static vars table_num, subtable_num.  New `som'
12677         member `title'.
12678         (dump_page) New arguments.
12679         (som_submit_table) Handle new variables.
12680         
12681         * som.c, som.h: (som_submit_table) New arguments.  All callers
12682         changed.
12683         (som_new_series) New function.
12684         (build_target) Makes room for extra line.
12685         (draw_title) New function.
12686         (dump_page) Calls draw_title.  Bug fix: doesn't always set
12687         som.ext->cp to 0.
12688         
12689         Columnation of tables support.
12690         * som.h: Deleted fr, lr, ri from som_table.  Reorganized.
12691         
12692         * som.c: Deleted references to fr, lr, ri.
12693         (som_columnate) Bux fix: sets group member of table.
12694         (som_add_options) Function removed.
12695         (dump_table) Split into three functions; extensively reworked.
12696         
12697         * descript.q: (dump_z_table) Better output table formatting; added
12698         title support to correspond to som.h changes.
12699         (display) Title support.
12700
12701         * output.h: Added OUTP_T_NONE.
12702         
12703 Mon Jul  1 13:00:00 1996  Ben Pfaff  <blp@gnu.org>
12704
12705         * descript.q: Improved handling of Z scores; still not perfect.
12706         
12707         * output.h, ascii.c: Added hook for getting em width of current
12708         font.
12709         
12710         * som.c: Uses new em-width hook.  Added debugging code to
12711         several functions.
12712         (som_columnate) New argument.
12713         (som_add_options) Removed.
12714
12715 Jun 29 17:40:47 1996  Ben Pfaff  <blp@gnu.org>
12716
12717         * som.h, som.c, output.c, output.h, ascii.c: Updated to work with
12718         rules as a property of the table instead of as a property of the
12719         cells.
12720         
12721         * ascii.c: Added `header' to table of options.
12722         
12723         * descript.q: Added even shorter statistic names; modified to work
12724         with new som interface.
12725         
12726         * misc.c (blp_getdelim): Bug fix.
12727         
12728         * version.c: includes 'conf.h'.
12729         
12730 ----------------------------------------------------------------------
12731 Local Variables:
12732 mode: change-log
12733 version-control: never
12734 End: