Separated the abstraction of a file handle, from its implementation and
[pspp] / src / ChangeLog
1 Thu Oct 27 11:16:53 WST 2005 John Darrington <john@darrington.wattle.id.au>
2
3         Separated the definition of a file handle object from the stuff 
4         pertaining to the FILE HANDLE command.
5
6         * file-handle-def.[ch]: New files.
7
8         * dfm-read.c file-handle.h file-handle.q
9         
10 Tue Oct 25 21:56:23 2005  Ben Pfaff  <blp@gnu.org>
11
12         Fix up potential overflows in size calculations by replacing
13         instances of xmalloc(x * sizeof *y) by xnmalloc(x, sizeof *y)
14         everywhere I could find them.  Similarly by xrealloc(), malloc().
15         (Order is important: xnmalloc(sizeof *y, x) will divide by 0 if x
16         is 0.)
17
18         * alloc.c: (nmalloc) New function.
19         (out_of_memory) Removed.  Replaced references by xalloc_die().
20
21         * sort.c: (allocate_cases) Fix segfault if memory allocation
22         fails.
23
24         * subclist.c: (subc_list_double_create) Use xnmalloc() instead of
25         malloc().
26         (subc_list_double_push) Use xnrealloc() instead of realloc().
27
28 Wed Oct 26 08:43:51 WST 2005 John Darrington <john@darrington.wattle.id.au>
29
30         Dictionary abstraction part #2
31
32         * algorithm.c format.c str.c sysfile-info.c val.h var.h vars-atr.c:
33           Removed unnecessary #include directives
34
35 Mon Oct 24 21:35:08 2005  Ben Pfaff  <blp@gnu.org>
36
37         * groff-font.c (font_msg): Use err_vmsg() instead of incorrectly
38         trying to pass a va_list to tmsg().  Thanks to Jason Stover for
39         reporting this bug.
40
41 Mon Oct 24 21:24:15 2005  Ben Pfaff  <blp@gnu.org>
42
43         Work to get rid of GCC 4.0 warnings, part 2.
44
45         In many files, change `unsigned char' to `char'.  This often
46         requires adding casts to <ctype.h> functions.
47
48         * data-in.c: (parse_A) Use buf_copy_rpad().
49
50         * str.c: (str_copy_buf_trunc) New function.
51
52         * value-labels.c: (value_to_string) Fix mistaken use of strncpy(),
53         by rewriting.
54
55 Mon Oct 24 13:42:32 WST 2005 John Darrington <john@darrington.wattle.id.au>
56
57         Moved some definitions to make it easier to abstract a dictionary 
58         from the rest of PSPP.
59
60         * format-prs.c lex-def.[ch]:  New files.
61
62         * Makefile.am lexer.[ch] dictionary.c vars-atr.c vfm.c algorithm.c 
63           format.c:  Moved some functions between modules.
64         
65 Sun Oct 23 19:28:08 2005  Ben Pfaff  <blp@gnu.org>
66
67         Work to get rid of GCC 4.0 warnings, part 1.
68         
69         In many files, change count parameters to parse_variables(),
70         etc. from `int' to `size_t'.  Also change related variables and
71         struct members.  Also change messages as needed (e.g. %d to %u
72         with cast to unsigned).  Also change arithmetic as necessary
73         (e.g. n >= m - 1 to n + 1 >= m). 
74
75         * crosstabs.q: (crs_custom_tables) Check for size_t overflow in
76         multiplication.
77
78         * q2c.c: (dump_declarations) Generate code for size_t instead of
79         int.
80         
81 Thu Oct 20 18:18:40 2005  Ben Pfaff  <blp@gnu.org>
82
83         * output.c: (outp_read_devices) Fix message.
84
85 Sat Sep 17 11:13:13 2005  Ben Pfaff  <blp@gnu.org>
86
87         * matrix-data.c: (cmd_matrix_data) Change type of variable whose
88         address is passed to dict_get_vars() from size_t to int to match
89         John's change below.
90
91         * modify-vars.c: (validate_var_modification) Ditto.
92
93 Mon Sep 12 19:26:06 WST 2005 John Darrington <john@darrington.wattle.id.au>
94
95         * dictionary.[ch]  Changed cnt from size_t* to int* since that's
96         what it's called as, and on  x86_64 machines they're different sizes.
97         
98         * str.c: (ds_vprintf) Copied va_list args so they can be re-used
99         
100 Sun Aug 21 00:12:24 2005  Ben Pfaff  <blp@gnu.org>
101
102         * lexer.c: (lex_sbc_only_once) New function.
103         (lex_sbc_missing) New function.
104
105 Sun Aug 21 00:00:47 2005  Ben Pfaff  <blp@gnu.org>
106
107         * case.h: (case_str) Make it return `unsigned char'.
108
109 Sat Aug 20 23:56:14 2005  Ben Pfaff  <blp@gnu.org>
110
111         Revamp SAVE, XSAVE, EXPORT.  Add (or at least parse) all the
112         subcommands that we didn't support.  Fix bug 13911.  Fix bug
113         reported by Adam Pierson (COMPRESSED and other subcommands didn't
114         work on SAVE).  Refactor all related code.
115         
116         * command.def: Add XEXPORT command.
117
118         * dictionary.c: (dict_delete_scratch_vars) New function.
119
120         * get.c: (cmd_get) Fix parsing.
121         (struct save_trns) Removed.
122         (cmd_save_internal) Removed.
123         (cmd_save) Removed.
124         (do_write_case) Removed.
125         (save_write_case_func) Removed.
126         (save_trns_proc) Removed.
127         (save_trns_free) Removed.
128         (trim_dictionary) Removed.
129         (struct export_proc) Removed.
130         (cmd_export) Rewrote.
131         (export_write_case_func) Removed.
132         (export_proc_free) Removed.
133         (enum writer_type) New enum.
134         (enum command_type) New enum.
135         (struct any_writer) New struct.
136         (any_writer_destroy) New function.
137         (parse_write_command) New function.
138         (any_writer_write_case) New function.
139         (parse_output_proc) New function.
140         (output_proc) New function.
141         (cmd_save) Rewrote.
142         (cmd_xsave) Rewrote.
143         (struct output_trns) New struct.
144         (parse_output_trns) New function.
145         (output_trns_proc) New function.
146         (output_trns_free) New function.
147         (cmd_xsave) Rewrote.
148         (cmd_xexport) New function.
149         (parse_dict_trim) New function.
150         (struct mtf_proc) Change `by_cnt' member type to `int'.
151         (cmd_import) Rewrote.
152
153         * pfm-write.c: (struct pfm_writer) Add `digits' member.
154         (pfm_writer_default_options) New function.
155         (pfm_open_writer) Add `opts' argument and handle options.
156         (write_float) Write only as many digits as `digits' member says.
157         (format_trig_double) Limit base-10 precision to LDBL_DIG.
158
159         * pfm-write.h: (enum pfm_type) Moved here from pfm-read.h.
160         (struct pfm_write_options) New struct.
161
162         * sfm-write.c: (sfm_writer_default_options) New function.
163         (sfm_open_writer) Remove `compress', `omit_long_names' args.  Add
164         `opts' argument.  Implement options.
165
166         * sfm-write.h: (struct sfm_write_options) New struct.
167
168         * expressions/helpers.c: (copy_string) Make `old' arg `unsigned
169         char *' instead of `char *'.
170         
171 Sat Aug  6 21:29:15 2005  Ben Pfaff  <blp@gnu.org>
172
173         * factor_stats.c: Needed <config.h> included earlier.
174
175         * percentiles.c: Needed to include <config.h>.
176
177         * val.h: Don't include "config.h".
178
179 Sat Aug  6 21:26:27 2005  Ben Pfaff  <blp@gnu.org>
180
181         Clean up treatment of missing values by moving all the code into
182         one place.  All references to the missing value function were
183         updated, but only major changes are detailed below.
184
185         * Makefile.am: Add missing-values.c, missing-values.h to sources.
186
187         * apply-dict.c: (cmd_apply_dictionary) Use mv_resize().
188
189         * dictionary.c: (dict_create_var) Initialize `miss' member with
190         mv_init().
191         (dict_clone_var) Copy `miss' member with mv_copy().
192         
193         * get.c: (mtf_merge_dictionary) Use mv_copy().
194
195         * missing-values.c: New file.
196         
197         * missing-values.h: New file.
198
199         * mis-val.c: Rewrite.  New version implements updated semantics.
200
201         * pfm-read.c: (read_variables) Rewrite missing value handling.
202
203         * pfm-write.c: (write_variables) Rewrite missing value handling.
204
205         * sfm-read.c: (read_variables) Rewrite missing value handling.
206
207         * sfm-write.c: (write_variable) Rewrite missing value handling.
208
209         * sfmP.h: Include "magic.h" to get definition of
210         second_lowest_value.
211
212         * sysfile-info.c: (describe_variable) Rewrite missing value
213         handling.
214
215         * val.h: Include "magic.h" to get definition of
216         second_lowest_value.
217
218         * var.h: Include "missing-values.h".  Drop MISSING_* enums.
219         (struct variable) Remove `miss_type', `missing'.  Add `miss'.
220
221         * vars-atr.c: (is_num_user_missing) Removed--use
222         mv_is_num_user_missing().
223         (is_str_user_missing) Removed--use mv_is_str_user_missing().
224         (is_system_missing) Removed--use mv_is_value_system_missing().
225         (is_missing) Removed--use mv_is_value_missing().
226         (is_user_missing) Removed--use mv_is_value_user_missing().
227         
228 Sun Jul 31 14:09:57 2005  Ben Pfaff  <blp@gnu.org>
229
230         Adopt use of gnulib for portability.
231
232         * Make.build: Add $(top_srcdir)/gl and $(top_builddir)/gl to
233         include path.
234
235         * Makefile.am: Remove bool.h, stat.h and change getline.[ch] to
236         getl.[ch] in pspp_SOURCES.  Remove libmisc, add libgl in
237         pspp_LDADD.
238
239         * In many source files, added an explicit inclusion of gettext.h
240         and definition of _ macro.  These are no longer in pref.h because
241         it interfered with definitions in a few gnulib source files.
242
243         * In many source files, changed #include "bool.h" to #include
244         <stdbool.h>, which is provided by gnulib.
245
246         * alloc.c: Removed functions defined in gnulib:
247         (xmalloc) Removed.
248         (xcalloc) Removed.
249         (xrealloc) Removed.
250         (xstrdup) Removed.
251         (out_of_memory) Redefined as wrapper for xalloc_die().
252
253         * alloc.h: Replace prototypes by #include "xalloc.h".
254
255         * casefile.c: Use full_read() and full_write() from gnulib instead
256         of our home-grown versions.
257         (full_read) Removed.
258         (full_write) Removed.
259
260         * getline.c: Renamed getl.c.
261
262         * getline.h: Renamed getl.h, updated all references.
263
264         * filename.c: (fn_readlink) Change to wrapper around xreadlink()
265         from gnulib.
266
267         * glob.c: Just #include <time.h> instead of the crazy rigmarole
268         here before.
269         (init_glob) Call set_program_name() to initial gnulib progname
270         module.
271
272         * html.c: (postopen) Use getlogin_r(), gethostname() from gnulib.
273
274         * permissions.c: Use "stat-macros.h" from gnulib.
275
276         * postscript.c: Just #include <time.h> instead of the crazy
277         rigmarole here before.
278
279         * q2c.c: (main) Make generated code #include "gettext.h".
280
281         * str.h: Get rid of most explicit declarations of standard
282         functions, in favor of including gnulib header files.
283
284         * expressions/evaluate.c: Ditto.
285
286         * expressions/operations.h.pl: Make generated code #include
287         <stdbool.h>, not "bool.h".
288
289 Sat Jul 30 23:13:17 2005  Ben Pfaff  <blp@gnu.org>
290
291         * expressions/parse.c: (validate_function_args) Fix two msg() bugs
292         found by -Wformat.
293
294 Sat Jul 30 23:10:01 2005  Ben Pfaff  <blp@gnu.org>
295
296         * expressions/evaluate.c: (expr_debug_print_postfix) Don't pass
297         null pointer to printf for %.*s.
298
299 Sat Jul 30 23:05:33 2005  Ben Pfaff  <blp@gnu.org>
300
301         * vars-atr.c: (var_is_valid_name) Fix three msg() bugs found by
302         -Wformat.
303
304 Sat Jul 30 22:58:33 2005  Ben Pfaff  <blp@gnu.org>
305
306         * rank.q: (parse_rank_function) Fix msg() bug found by -Wformat.
307
308 Sat Jul 30 22:56:12 2005  Ben Pfaff  <blp@gnu.org>
309
310         * postscript.c: (postopen) Cast `char' to `unsigned char' before
311         passing to isspace().
312
313 Sat Jul 30 22:52:09 2005  Ben Pfaff  <blp@gnu.org>
314
315         * pfm-read.c: (read_variables) Fix msg() bug found by -Wformat.
316
317 Sat Jul 30 22:50:57 2005  Ben Pfaff  <blp@gnu.org>
318
319         * histogram.c: Include <config.h>.
320
321 Sat Jul 30 22:48:50 2005  Ben Pfaff  <blp@gnu.org>
322
323         * get.c: (cmd_match_files) Fix msg() bug found by -Wformat.
324
325 Sat Jul 30 22:46:10 2005  Ben Pfaff  <blp@gnu.org>
326
327         * format.c: (check_common_specifier) Fix msg() bug found by
328         -Wformat.
329         (check_output_specifier) Ditto.
330
331 Sat Jul 30 22:43:57 2005  Ben Pfaff  <blp@gnu.org>
332
333         * file-handle.q: (cmd_file_handle) Fix msg() bug found by
334         -Wformat.
335
336 Sat Jul 30 22:41:44 2005  Ben Pfaff  <blp@gnu.org>
337
338         * data-in.c: (parse_Z) [WORDS_BIGENDIAN] Don't declare buf[], to
339         avoid "unused variable" warning.
340
341 Sat Jul 30 22:38:46 2005  Ben Pfaff  <blp@gnu.org>
342
343         * command.c: (find_word) Cast `char' to `unsigned char' before
344         passing to isspace().
345
346 Sat Jul 30 22:36:29 2005  Ben Pfaff  <blp@gnu.org>
347
348         * case.c: (case_compare) Implement as delegating to
349         case_compare_2dict().
350
351 Sat Jul 30 22:34:18 2005  Ben Pfaff  <blp@gnu.org>
352
353         * algorithm.c: Inclusion of <alloca.h> is unneeded.
354
355 Sat Jul 30 22:01:32 2005  Ben Pfaff  <blp@gnu.org>
356
357         * Make.build: Don't append -ansi to AM_CFLAGS for GCC.  Using
358         -ansi changes the behavior of header files significantly.  It
359         causes __STRICT_ANSI__ to be defined, and some headers interpret
360         that as cause to e.g. not use `long long' or __attribute__.  The
361         former example is bad when off_t is supposed to be `long long',
362         and the latter prevents -Wformat from working.
363
364 Sun Jul 24 20:26:59 2005  Ben Pfaff  <blp@gnu.org>
365
366         Get rid of dependency on libgmp by writing our own routine for
367         floating-point base conversion.
368
369         * pfm-write.c: (write_float) Rewrote.
370         (write_int) Rewrote.
371         (pow30_nonnegative) New function.
372         (pow30) New function.
373         (trig_to_char) New function.
374         (format_trig_digits) New function.
375         (recurse_format_trig_int) New function.
376         (format_trig_int) New function.
377         (should_round_up) New function.
378         (try_round_up) New function.
379         (format_trig_double) New function.
380
381 Sun Jul 24 18:49:20 2005  Ben Pfaff  <blp@gnu.org>
382
383         * data-in.c: (parse_numeric) Allow "1+23" even for F format, for
384         compatibility.
385
386 Sun Jul 24 18:47:37 2005  Ben Pfaff  <blp@gnu.org>
387
388         * pfm-read.c: (read_version_data) Read and ignore author field.
389
390 Wed Jul  6 20:44:27 2005  Ben Pfaff  <blp@gnu.org>
391
392         * get.c: (mtf_processing) Don't assume that
393         mtf_compare_BY_values() always returns -1, 0, or 1.  Actually, it
394         returns a negative, zero, or positive result.  Fixes MATCH FILES
395         bug on Mac OS X reported by "Marshall DeBerry" <mdb@radix.net>.
396
397 Mon Jul  4 18:01:15 2005  Ben Pfaff  <blp@gnu.org>
398
399         * flip.c: [HAVE_SYS_TYPES_H] Really include <sys/types.h>.  The
400         preprocessor test for sys/types.h was accidentally inverted.  This
401         was bug 12789.
402
403 Sun Jul  3 22:47:39 2005  Ben Pfaff  <blp@gnu.org>
404
405         * get.c: (cmd_match_files) Fix memory leak on `by' and on
406         `vfm_source'.
407
408         * getline.c: [HAVE_LIBREADLINE] (read_console) Fix memory leak on
409         `line'.
410
411         * vfm.c: (close_active_file) Remove unnecessary test.
412
413 Sun Jul  3 21:45:32 2005  Ben Pfaff  <blp@gnu.org>
414
415         Fix NDEBUG compile errors.
416
417         * hash.h: Needed explicit #include <assert.h>.
418
419         * linked-list.c: (ll_next) First arg is UNUSED when NDEBUG is
420         defined.
421
422 Sun Jun 12 23:44:38 2005  Ben Pfaff  <blp@gnu.org>
423
424         Implement embedding for PostScript driver.  Fixes bug 12970.
425
426         * ascii.c: Fix compiler warnings.
427
428         * html.c: Ditto.
429
430         * chart.h: Add `file' member.
431
432         * output.h: (struct outp_class) initialise_chart, finalise_chart
433         should take outp_driver *, not outp_class *.  Update all
434         references.
435
436         * plot-chart.c: (chart_create) Fix segfault when there are no
437         output drivers at all.
438         (chart_submit) Call d->class->finalise_chart.
439
440         * postscript.c: (ps_open_page) Set cp_y to 0.
441         (ps_submit) New function.
442         (ps_chart_initialise) Implement.
443         (ps_chart_finalise) Implement.
444         (static var postscript_class) Add ps_submit.
445         (static var epsf_class) Add ps_submit.
446         
447
448 Sun Jun 12 14:54:40 2005  Ben Pfaff  <blp@gnu.org>
449
450         Did some more work on bug 12859 and then realized that a *good*
451         solution would require some fundamental restructuring.  For now,
452         I'm marking REPEATING DATA unimplemented, and then we can revisit
453         it post-0.4.0.
454         
455         * command.def: Make REPEATING DATA unimplemented.
456
457         * data-list.c: (cmd_repeating_data) Assume inline file is 80
458         characters wide.
459         (realize_value) Revert previous changes; no longer needed.
460         Updated all callers.
461
462         * error.c: (err_hcf) Set nfile_loc, mfile_loc to 0 after freeing
463         file_loc, to avoid bad references later.
464
465         * str.c: Fix typo.
466
467 Tue Jun  7 00:14:09 2005  Ben Pfaff  <blp@gnu.org>
468
469         Make some code tolerant of reentry.  Should not be needed if other
470         code is correct but it is good to be generally tolerant.
471         
472         * error.c: (err_hcf) Set file_loc to null after free().
473
474         * output.c: (outp_done) Similar changes.
475
476         * str.c: (ds_destroy) Ditto.
477         
478 Tue Jun  7 00:10:20 2005  Ben Pfaff  <blp@gnu.org>
479
480         Continue work on bug 12859, plus some code cleanup.
481         
482         * data-list.c: (cmd_repeating_data) Replace `seen' bitmap by
483         boolean variables.  Don't try to compute starts_end, cont_end for
484         inline file.  Calculate length only after parsing variable
485         specifications.  Add proper transformation to list.
486         (realize_value) If the rpd_num_or_var has no value, return new
487         DEFAULT_MEMBER argument (for use with inline file).
488         (repeating_data_trns_proc) Pass default values.
489
490         * dfm-read.c: (dfm_close_reader) Only skip data if *not* still
491         open, and only if we actually started reading data.
492
493 Sun Jun  5 18:39:36 2005  Ben Pfaff  <blp@gnu.org>
494
495         Fix bug 11894.
496         
497         * output.c: (outp_read_devices) Fix message.
498
499 Fri May 27 12:34:43 WST 2005 John Darrington <john@darrington.wattle.id.au>
500         
501         * sort-prs.[ch] (newfiles), aggregate.c, sort.[ch]: Separated the guts 
502         of the sort algorithm from the parser for the SORT command.
503         
504         * rank.q: Added the parser for the RANK command.
505         
506 Thu May 26 12:29:21 2005  Ben Pfaff  <blp@gnu.org>
507
508         Fix bug 13192.
509
510         * sort.c: (sort_parse_criteria) Only set *saw_direction if
511         saw_direction is non-null.  Thanks to John Darrington for
512         reporting this bug.
513
514 Tue May 24 21:52:55 2005  Ben Pfaff  <blp@gnu.org>
515
516         * get.c: (mtf_processing) Handle case of a lookup table as the
517         active file.  Thanks to John Darrington for reporting this bug.
518
519 Wed May 25 10:27:02 WST 2005 John Darrington <john@darrington.wattle.id.au>
520         
521         * alloc.c alloc.h: (xcalloc) changed signature to imitate the
522         POSIX  calloc function.
523         
524         * crosstabs.q get.c vars-prs.c: Updated calls to xcalloc to
525         reflect new signature.
526
527         * sfm-read.c: Now much more robust in the face of badly formed
528         system files.
529
530 Mon May 23 11:57:31 WST 2005 John Darrington <john@darrington.wattle.id.au>
531
532         *sfm-read.c: Fixed some bugs regarding long string continuation
533         records, which the previous fix uncovered.
534
535 Sat May 21 12:48:34 WST 2005 John Darrington <john@darrington.wattle.id.au>
536
537         * sfm-read.c, sfmP.h:  Allow reading of system files when the 
538         case_size value in the header is -1.  Also changed some Errors to 
539         Warnings when reading system files.
540
541 Tue May 17 21:00:57 2005  Ben Pfaff  <blp@gnu.org>
542
543         * data-list.c: (data_list_trns_free) Don't free the argument
544         because cancel_transformations() will do that itself.
545         (data_list_source_destroy) Destroy the argument to
546         data_list_trns_free(), because it no longer does so itself.
547
548 Tue May 17 18:29:35 2005  Ben Pfaff  <blp@gnu.org>
549
550         * data-out.c: (format_and_round) Don't output leading `-' if value
551         rounds to zero.
552
553 Tue May 17 00:06:43 2005  Ben Pfaff  <blp@gnu.org>
554
555         Fix bug 11119.
556
557         * som.c: (output_encodings) If some cell in the table won't fit
558         with the horizontal or vertical headers, cancel those headers.
559
560         * som.h: (struct som_table_class) Add fits_width, fits_length,
561         set_headers members.
562
563         * tab.c: (tabi_fits_width) New function.
564         (tabi_fits_length) New function.
565         (tabi_set_headers) New function.
566         (global var tab_table_class) Add the new functions as appropriate
567         members.
568         
569 Mon May 16 22:34:06 2005  Ben Pfaff  <blp@gnu.org>
570
571         Fix rest of bug 13054.
572
573         * format.def: Fix EDATE, SDATE, ADATE, JDATE, QYR, MOYR, WKYR,
574         DATETIME, TIME system/portable file values.
575
576 Mon May 16 22:31:15 2005  Ben Pfaff  <blp@gnu.org>
577
578         * data-list.c: (parse_free) Use make_input_format().
579         
580         * data-out.c: (num_to_string) Use make_output_format().
581
582         * dictionary.c: (dict_create_var) Ditto.
583
584         * format.c: (global var f8_2) New var.
585         (make_input_format) New function.
586         (make_output_format) New function.
587
588         * get.c: (cmd_match_files) Use make_output_format().
589
590         * list.q: (cmd_list) Ditto.
591
592         * matrix-data.c: Ditto.
593
594         * sfm-read.c: (parse_format_spec) Check output specifier
595         thoroughly.
596
597         * tab.c: (tab_float) Use make_output_format().
598
599 Sun May 15 23:38:10 2005  Ben Pfaff  <blp@gnu.org>
600
601         Fix more of bug 13054.
602         
603         * format.def: FMT_A should allow 255-character output.  FMT_AHEX
604         should allow 510-character input and output.
605
606         * data-out.c: (num_to_string) Get rid of NEW_STYLE option.
607         (convert_E) Handle non-finite values.
608         (try_F) Rewrite.
609         (format_and_round) New function.
610         (convert_infinite) New function used by try_F() and convert_E().
611
612 Sun May 15 23:36:55 2005  Ben Pfaff  <blp@gnu.org>
613
614         Regularize string and buffer function names so that they make some
615         kind of sense.
616
617         * str.c: (mm_reverse) Rename buf_reverse().  Update all
618         references.
619         (mm_find_reverse) Rename buf_find_reverse().  Update all
620         references.
621         (mm_case_compare) Rename buf_compare_case().  Update all
622         references.
623         (st_compare_pad) Rename buf_compare_rpad().  Update all
624         references.
625         (str_compare_rpad) New function.
626         (st_bare_pad_copy) Rename buf_copy_str_rpad().  Update all
627         references.
628         (buf_copy_str_lpad) New function.
629         (st_bare_pad_len_copy) Rename buf_copy_rpad().  Update all
630         references.
631         (st_pad_copy) Rename str_copy_rpad().  Update all references.
632         (st_trim_copy) Rename str_copy_trunc().  Update all references.
633         (st_uppercase) Renamed str_uppercase().  Update all references.
634         
635 Sat May 14 08:22:26 WST 2005 John Darrington <john@darrington.wattle.id.au>
636
637         * dfm-read.c: Fixed polarity of test in dfm-close-reader.  Closes 
638         Bug #13082
639
640 Tue May 10 20:08:18 2005  Ben Pfaff  <blp@gnu.org>
641
642         * data-in.c: (data_in) Add assertion to check input specifier.
643
644         * data-out.c: (data_out) Add assertion to check output specifier.
645
646 Tue May 10 19:56:35 2005  Ben Pfaff  <blp@gnu.org>
647
648         Start to fix bug 13054.
649
650         * format.c: (check_input_specifier) Improve error message.
651         (check_input_specifier) Check F, COMMA, and DOLLAR formats for
652         valid decimal places.
653         (check_output_specifier) Ditto (but different criteria).
654         (convert_fmt_ItoO) Assert valid input and output specifiers.
655         Also, if input specifier has *any* decimal places, make the output
656         specifier 1 place wider.
657
658 Mon May  9 07:14:29 WST 2005 John Darrington <john@darrington.wattle.id.au>
659
660         * sysfile-info.c: Fixed bug [# 13024 ]
661
662 Sun May  8 13:52:12 2005  Ben Pfaff  <blp@gnu.org>
663
664         "Fix" bug 13021 by disabling FILE TYPE.  Eventually, we should
665         actually implement it.
666
667         * command.c: (FILE_TYPE_okay) Always return 1.
668
669         * command.def: Change FILE TYPE, END FILE TYPE into UNIMPL.
670
671         * file-type.c: Add prototypes to get rid of warnings.
672
673 Sun May  8 08:08:07 WST 2005 John Darrington <john@darrington.wattle.id.au>
674
675         * barchart.c box-whisker.c cartesian.c piechart.c plot-hist.c: Fixed 
676         more ISO/IEC 9899:1990 conformance issues.
677
678 Wed May  4 23:54:02 2005  Ben Pfaff  <blp@gnu.org>
679
680         Fix bug 12948.  See also new test in
681         tests/bugs/match-file-scratch.sh.
682         
683         * get.c: (mtf_merge_dictionary) Don't compact dictionary because
684         that deletes scratch variables that someone else might be using,
685         and because we can't reassign our sources' value indexes.
686         Instead, simply don't copy scratch variables into the master
687         dictionary.
688
689         * dictionary.c: (dict_compact_values) Delete variables from the
690         dictionary passed in, not from default_dict (!).
691
692 Tue May  3 22:25:17 2005  Ben Pfaff  <blp@gnu.org>
693
694         Improve hash.c comments, error-checking.
695         
696         * hash.c: (struct hsh_table) [NDEBUG] Add hash_ordered member.
697         (hsh_create) size == 0 should *not* return NULL!  Set
698         hash_ordered.
699         (hsh_clear) Set hash_ordered.
700         (locate_matching_entry) Check hash_ordered.
701         (hsh_rehash) Rename rehash().  Add assertion.  Set hash_ordered.
702         (hsh_data) Set hash_ordered.  Add const-ness to return value and
703         update all callers.
704         (hsh_sort) Ditto.       
705
706 Wed May  4 08:50:11 WST 2005 John Darrington <john@darrington.wattle.id.au>
707
708         * casefile.c: Removed unnecessary #include <valgrind/valgrind.h>
709
710 Tue May  3 19:14:48 WST 2005 John Darrington <john@darrington.wattle.id.au>
711
712         * copyleft.c: Updated copyright date.
713
714         * Makefile.am: Removed erroneous explicit "-lplot"
715
716         * examine.q oneway.q: Made these files conform to ISO/IEC 9899:1990
717
718 Tue May  3 16:20:31 WST 2005 John Darrington <john@darrington.wattle.id.au>
719
720         * command.c command.def: Added description string for unimplemented commands.
721
722         * oneway.q: Sorted the hash tables before shipping out the results. Closes 
723         bug [#12931].
724
725 Mon May  2 23:45:01 2005  Ben Pfaff  <blp@gnu.org>
726
727         Code improvements.
728         
729         * data-list.c:  (parse_fixed) Use lex_end_of_command().
730         (parse_free) Ditto.
731         (cmd_repeating_data) Set cont_end.num in right situations.
732         (parse_repeating_data) Remove redundant test.
733
734 Mon May  2 23:37:19 2005  Ben Pfaff  <blp@gnu.org>
735
736         Partial fix for bug 12859.
737         
738         * data-list.c: (cmd_data_list) Add transformation properly in
739         vfm_source == NULL case.
740
741 Mon May  2 23:27:28 2005  Ben Pfaff  <blp@gnu.org>
742
743         * lexer.c: (lex_error) Improve error messages.
744
745 Mon May  2 22:28:17 2005  Ben Pfaff  <blp@gnu.org>
746
747         * get.c: (cmd_match_files) Check token type before trying to match
748         tokid.  Fixes bug 12923.
749
750 Mon May  2 22:16:51 2005  Ben Pfaff  <blp@gnu.org>
751
752         * flip.c: [HAVE_SYS_TYPES_H] Include <sys/types.h>.  Fixes bug
753         12789.
754
755 Mon May  2 22:02:52 2005  Ben Pfaff  <blp@gnu.org>
756
757         * expressions/generate.pl: (get_token) Make use of /g
758         backward-compatible with Perl 5.6.1.
759
760 Sun May  1 23:00:19 2005  Ben Pfaff  <blp@gnu.org>
761
762         * var-display.c: (cmd_variable_alignment) Fix memory leak.
763         (cmd_variable_level) Ditto.
764
765 Sun May  1 22:49:04 2005  Ben Pfaff  <blp@gnu.org>
766
767         Hash table had buggy deletion function.  The fix required changing
768         other functions to do probing in the required order.
769
770         * hash.c: (locate_matching_entry) Rewrite and change interface.
771         (hsh_rehash) Rewrite to use locate_matching_entry().
772         (hsh_probe) Ditto.
773         (hsh_find) Ditto.
774         (hsh_delete) Ditto.  Also, fix stupid bugs.
775
776 Sun May  1 22:24:58 2005  Ben Pfaff  <blp@gnu.org>
777
778         * dictionary.c: (dict_clone) Properly copy vectors.
779
780 Sun May  1 22:07:58 2005  Ben Pfaff  <blp@gnu.org>
781
782         New implementation of long variable names.  Each variable has a
783         "normal" name, which may be up to 64 bytes long and which is used
784         for all normal operations.  Variables may have a "short" name,
785         which is limited to 8 bytes and used only for system and portable
786         file input and output.
787         
788         Make tokid case-preserving.  Update most uses of tokid to treat it
789         case-insensitively.
790
791         Update many commands to deal with long variable names.
792
793         * autorecode.c: (cmd_autorecode) Use strcasecmp() instead of strcmp().
794
795         * command.c: (cmd_parse) Ditto.
796         (match_strings) Use toupper() before comparing characters.
797         (conflicting_3char_prefixes) Use mm_case_compare() instead of
798         memcmp().
799         (cmd_match_words) Ditto.
800
801         * compute.c: (lvalue_parse) Use st_trim_copy() instead of
802         strncpy().
803
804         * count.c: (struct cnt_var_info) Change n[] to fit long var name.
805         Use st_trim_copy() instead of strcpy().
806
807         * data-in.c: (parse_enum) Use mm_case_compare() instead of
808         memcmp().
809
810         * data-list.c: (struct dls_var_spec) Change name[] to fit long var
811         name.
812         (parse_free) Use st_trim_copy() instead of strcpy().
813
814         * descript.c: (struct dsc_var) Change z_name[] to fit long var
815         name.
816         (try_name) Use strcasecmp() instead of strcmp().
817         (generate_z_varname) Use st_trim_copy() instead of strcpy().
818         (descriptives_compare_dsc_vars) Use strcasecmp() instead of
819         strcmp().
820
821         * dictionary.c: (struct dictionary) Removed `long_name_tab'
822         member.
823         (compare_long_names) Removed.
824         (hash_long_name) Removed.
825         (dict_create) Don't initialize `long_name_tab' member.
826         (dict_clone) Copy short names into new dictionary. 
827         (dict_clear) Don't clear `long_name_tab' member.
828         (dict_get_varname_block) Removed.
829         (dict_add_longvar_entry) Removed.
830         (free_nte) Removed.
831         (dict_destroy) Don't destroy `long_name_tab' member.
832         (dict_create_var_from_short) Removed.
833         (dict_create_var_x) Removed.
834         (dict_create_var) Get rid of longname handling.
835         Clear short name.
836         (dict_clone_var) Get rid of longname parameter and longname
837         handling.
838         (dict_lookup_var) Get rid of longname handling.
839         (dict_reorder_var) New function.
840         (dict_rename_var) Clear short name.
841         (dict_rename_vars) Get rid of longname handling.  Clear short
842         names.
843         (dict_create_vector) Support long vector names.
844         (dict_lookup_vector) Use strcasecmp() instead of strcmp().
845         (quasi_base27) Removed.
846         (make_short_name) Removed.
847         (compare_strings) New function.
848         (hash_string) New function.
849         (dict_assign_short_names) New function.
850
851         * file-handle.q: (get_handle_with_name) Use strcasecmp() instead
852         of strcmp().
853         (get_handle_for_filename) Support long handle names.
854
855         * file-type.c: (struct col_spec) Make `name' fit long var names.
856         (cmd_file_type) Use strcasecmp() instead of strcmp().
857
858         * flip.c: (make_new_var) Rewrite.
859         (flip_sink_write) Use st_trim_copy() instead of strncpy().
860
861         * format.c: (parse_format_specifier_name) Use mm_case_compare()
862         instead of memcmp().
863
864         * get.c: (cmd_save_internal) Rephrase.
865         (rename_variables) Drop test for identical variable name.
866         (struct mtf_proc) Change `first', `last' to fit long var name.
867
868         * hash.c: (hsh_hash_case_string) New function for case-insensitive
869         string hashing.
870
871         * lexer.c: (restore_token) Use st_trim_copy() instead of
872         strncpy().
873         (lex_get) Don't uppercase string when copying into tokid.
874         (lex_put_back_id) Use st_trim_copy() instead of
875         strncpy().
876
877         * list.q: (determine_layout) Consider length of variable names in
878         choosing vertical layout.
879
880         * matrix-data.c: (cmd_matrix_data) Use strcasecmp() instead of
881         strcmp().
882         (string_to_content_type) Ditto.
883
884         * modify-vars.c: (compare_variables_given_ordering) Ditto.
885         (struct var_renaming) Change `new_name' to fit long var name.
886         (compare_var_renaming_by_new_name) Use strcasecmp() instead of
887         strcmp().
888
889         * pfm-read.c: (read_variables) Disallow system variables in system
890         files.
891         (write_variables) Call dict_assign_short_names() and use
892         short_name[] members.
893
894         * repeat.c: (internal_cmd_do_repeat) Use strcasecmp() instead of
895         strcmp().
896
897         * sfm-read.c: (sfm_open_reader) Rewrite code for long variable
898         map.  Reorder variables into same order as long variable map.
899         (read_variables) Set short name.
900
901         * sfm-write.c: (sfm_open_writer) Call dict_assign_short_names().
902         (write_variable) Use st_bare_pad_copy().
903         (write_longvar_table) Rewrite.
904
905         * str.c: (mm_case_compare) New function.
906
907         * sysfile-info.c: (compare_vectors_by_name) Use strcasecmp()
908         instead of strcmp().
909
910         * t-test.q: (tts_custom_groups) Remove redundant test.
911         (tts_custom_pairs) Ditto.
912
913         * var.h: (struct variable) Change `name' to fit long var names.
914         Remove `longname'.  Add `short_name' member.  Reorder some
915         variables.
916         (struct name_table_entry) Removed.
917         (struct vector) Change `name' to fit long vector names.
918
919         * vars-atr.c: (var_is_valid_name) Allow long var names.
920         (compare_var_names) Use strcasecmp() instead of strcmp().
921         (compare_var_ptr_names) Ditto.
922         (hash_var_name) Use hsh_hash_case_string().
923         (hash_var_ptr_name) Ditto.
924         (var_set_short_name) New function.
925         (var_clear_short_name) New function.
926         (var_set_short_name_suffix) New function.
927
928         * vars-prs.c: (parse_DATA_LIST_vars) Support long names.
929         Use strcasecmp() instead of strcmp().
930         (struct array_var_set) Removed `longname_tab'.
931         (array_var_set_lookup_var_idx) Drop longname_tab support.
932         (array_var_set_destroy) Don't destroy `longname_tab'.
933         (var_set_create_from_array) Don't create `longname_tab'.
934
935         * vector.c: (cmd_vector) Use strcasecmp() instead of strcmp().
936         Support long names.
937
938         * expressions/parse.c: (word_matches) Use mm_case_compare()
939         instead of memcmp().
940         (compare_strings) New function.
941         (lookup_function) Use compare_strings() instead of strcmp().
942         
943 Sun May  1 22:07:43 2005  Ben Pfaff  <blp@gnu.org>
944
945         * algorithm.c: (move_element) New function.
946
947 Sun May  1 22:05:35 2005  Ben Pfaff  <blp@gnu.org>
948
949         * aggregate.c: (parse_aggregate_functions) Always initialize
950         destvar.
951
952 Sun May  1 22:03:47 2005  Ben Pfaff  <blp@gnu.org>
953
954         * aggregate.c: (cmd_aggregate) Use dict_clone_var_assert().
955
956         * dictionary.c: (dict_clone) Ditto.
957         (dict_clone_var_assert) New function.
958
959         * get.c: (mtf_merge_dictionary) Use dict_clone_var_assert().
960
961 Sun May  1 15:05:54 WST 2005 John Darrington <john@darrington.wattle.id.au>
962
963         * error.c: Added a string for the compiler version to the
964         request_bug_report_and_abort function.
965
966         * groff_font.c, font.c: Removed manpage(1) style references from 
967         comments, because RMS frowns upon them.
968
969 Thu Apr 28 18:52:06 2005  Ben Pfaff  <blp@gnu.org>
970
971         * expressions/parse.c: Improve previous fix for bug 12858 (LAG).
972
973 Fri Apr 29 09:28:00 WST 2005 John Darrington <john@darrington.wattle.id.au>
974
975         * expressions/parse.c: Added handler for OP_LAG_Vn and OP_LAG_Vs.  
976         Fixed bug [#12858] .
977
978 Wed Apr 27 12:42:34 WST 2005 John Darrington <john@darrington.wattle.id.au>
979
980         * loop.c recode.c repeat.c: Fixed a couple of instances of SHORT_NAME_LEN 
981         which should be LONG_NAME_LEN
982
983 Wed Apr 27 07:43:50 WST 2005 John Darrington <john@darrington.wattle.id.au>
984
985         * command.def echo.c:  Added the ECHO command.
986
987 Mon Apr 25 22:55:59 2005  Ben Pfaff  <blp@gnu.org>
988
989         Finish fixing MATCH FILES (bug 11677).
990
991         * get.c: (trim_dictionary) Rewrite in terms of drop_variables(),
992         keep_variables(), rename_variables().
993         (drop_variables) New function.
994         (keep_variables) New function.
995         (struct mtf_file) Rename `in' to `in_name'.  Add `in_var'.
996         (cmd_match_files) Deal with in_var.  Use drop_variables(),
997         keep_variables().  When IN is specified, require BY.  Set master
998         variables after master dictionary is complete.  Add IN variables
999         after master dictionary is complete.
1000         (mtf_free_file) Free `in_name'.
1001         (mtf_delete_file_in_place) Set in_var value to 0.
1002         (mtf_read_nonactive_records)  Rephrase.
1003         (mtf_processing) Support IN.  Rephrase.  Fix bugs.
1004         (mtf_merge_dictionary) Don't set master variables; we do that
1005         later now.
1006         (get_master) Don't insist that there's a master variable.
1007         
1008 Mon Apr 25 22:55:22 2005  Ben Pfaff  <blp@gnu.org>
1009
1010         Kluge to make some variable renaming sort of work.
1011         Needs real fix.
1012
1013         * dictionary.c: (dict_rename_var) Call dict_add_longvar_entry().
1014
1015 Mon Apr 25 22:52:28 2005  Ben Pfaff  <blp@gnu.org>
1016
1017         Add functions for comparing sets of variables between cases.
1018         Use the functions.
1019
1020         * case.c: (case_compare) New function.
1021         (case_compare_2dict) New function.
1022         
1023         * aggregate.c: (struct agr_proc) Remove `prev_break' member.  Add
1024         `break_case'.
1025         (cmd_aggregate) Nullify break_case.  Don't call
1026         initialize_aggregate_info().
1027         (agr_destroy) Destroy break_case.
1028         (aggregate_single_case) Rewrite.  Use case_compare().
1029         (dump_aggregate_info) Copy from break_case into output.
1030         (initialize_aggregate_info) Copy break_case from input.
1031
1032         * get.c: (mtf_compare_BY_values) Use case_compare_2dict().
1033
1034         * vfm.c: (equal_splits) Use case_compare().
1035
1036 Sat Apr 23 17:01:04 WST 2005 John Darrington <john@darrington.wattle.id.au>
1037
1038         * dictionary.c vars-prs.c sfm-write.c: Fixed some memory leaks
1039
1040 Sun Apr 17 23:08:15 2005  Ben Pfaff  <blp@gnu.org>
1041
1042         Start work on fixing MATCH FILES.
1043
1044         * get.c: (enum operation) Remove OP_MATCH.
1045         (trim_dictionary) Change return value to bool.  Don't support
1046         OP_MATCH.
1047         (struct mtf_file) Remove `first', `last' members.
1048         (struct mtf_proc) Add `first', `last' members.  Change mtf_case
1049         from `struct ccase *' to `struct ccase'.  Remove `by' member.
1050         (cmd_match_files) Essentially rewrite.
1051         (mtf_free) Don't free `by' member.  Destroy `mtf_case' member.
1052         (mtf_read_nonactive_records) mtf_ parameter is not unused.
1053         (mtf_processing) Ditto.  Also rephrase some code.
1054         (mtf_merge_dictionary) Rewrite for easy comprehension.  
1055
1056 Sun Apr 17 23:06:00 2005  Ben Pfaff  <blp@gnu.org>
1057
1058         * matrix-data.c: (wr_output_data) [DEBUGGING] Fix compilation
1059         error.
1060
1061         * q2c.c: (dump_token) [DEBUGGING] Fix compilation error.
1062         
1063 Thu Apr 14 2005 John Darrington
1064
1065         * var-display.c: New file.
1066
1067         * format.h var.h sfm-read.c sfm-write.c dictionary.c :  Added 
1068           display_width, measure and alignment parameters to variables.
1069
1070         * aggregate.c command.def compute.c count.c data-list.c descript.c
1071           dictionary.c dictionary.h expr-prs.c file-type.c flip.c get.c 
1072           lexer.c lexer.h loop.c modify-vars.c pfm-read.c recode.c repeat.c 
1073           sfm-read.c sfm-write.c sfm-write.h sfmP.h val-labs.c val.h var.h 
1074           vars-prs.c vector.c :  
1075               - Replaced literal constants representing maximum variable name 
1076                 length with macro definitions. 
1077               - Added support for long variable names.
1078               - Changed lexer such that it no longer makes tokens upper
1079                 case, but relies upon case insensitive behaviour of commands.
1080
1081 Mon Apr  4 22:27:34 2005  Ben Pfaff  <blp@gnu.org>
1082
1083         * aggregate.c: (parse_aggregate_functions) If dict_create_var()
1084         fails, don't dereference the resulting null pointer (bug 12427).
1085         Also, fix double free error.
1086
1087 Sat Mar 19 23:06:02 2005  Ben Pfaff  <blp@gnu.org>
1088
1089         * aggregate.c: (parse_aggregate_functions) Fix N_NO_VARS format.
1090         (accumulate_aggregate_info) Set int1 to 1 for SUM.
1091         (dump_aggregate_info) Only make SUM non-missing if there was at
1092         least one variate.
1093
1094 Sat Mar 19 14:48:19 2005  Ben Pfaff  <blp@gnu.org>
1095
1096         * aggregate.c: (dump_aggregate_info) Properly test whether the
1097         destination variable is numeric, when making the result
1098         system-missing for columnwise missing values.
1099
1100 Mon Mar 14 21:52:34 2005  Ben Pfaff  <blp@gnu.org>
1101
1102         * misc.h: Remove GCC specializations.
1103
1104 Mon Mar 14 21:07:23 2005  Ben Pfaff  <blp@gnu.org>
1105
1106         Make sort stable (bug 12313).
1107         
1108         * sort.c: Don't need to include some headers anymore.
1109         (static var min_buffers) New variable.
1110         (static var max_buffers) New variable.
1111         (static var allow_internal_sort) New variable.
1112         (cmd_sort_cases) Add test mode.
1113         (sort_execute) Rephrase.
1114         (do_internal_sort) Don't try internal sorting if
1115         allow_internal_sort is set.
1116         (struct external_sort) Renamed `initial_runs' to `runs' and
1117         updated all references.
1118         (macro MIN_BUFFER_TOTAL_SIZE_RECS) Removed.
1119         (macro MIN_BUFFER_SIZE_BYTES) Removed.
1120         (macro MIN_BUFFER_SIZE_RECS) Removed.
1121         (compare_initial_runs) Removed.
1122         (struct record_run) Add member `idx'.
1123         (write_initial_runs) Pass increasing values to process_case() as
1124         index.
1125         (process_case) Add `idx' parameter and use it to initialize new
1126         `idx' member.
1127         (allocate_cases) Limit allocated buffers to max_buffers.
1128         (compare_record_run) Use new `idx' member for last resort
1129         comparison, for stability.
1130         (end_run) Call casefile_sleep() on irs->casefile, to prevent
1131         running out of file descriptors.
1132         (struct merge_state) Removed.
1133         (merge) Don't need to allocate cases.  Always use MAX_MERGE_ORDER
1134         unless we have fewer runs left.  Always merge consecutive runs,
1135         for stability.  Return the final run.
1136         (mod) Removed.
1137         (choose_merge) New function.
1138         (merge_once) Rewritten.
1139
1140 Mon Mar 14 21:05:42 2005  Ben Pfaff  <blp@gnu.org>
1141
1142         * cmdline.c: (static var testing_mode) Move into
1143         parse_command_line().
1144         
1145 Mon Mar 14 21:05:13 2005  Ben Pfaff  <blp@gnu.org>
1146
1147         * algorithm.c: (remove_range) New function.
1148         (remove_element) New function.
1149
1150         * dictionary.c: (dict_delete_var) Use remove_element().
1151
1152         * flip.c: (cmd_flip) Ditto.
1153
1154 Sun Mar 13 22:52:05 2005  Ben Pfaff  <blp@gnu.org>
1155
1156         * file-handle.q: (struct file_handle) `open_mode' should not be
1157         const.
1158         
1159 Sun Mar 13 22:40:54 2005  Ben Pfaff  <blp@gnu.org>
1160
1161         First phase of making SORT CASES stable (bug 12313).
1162
1163         * sort.c: (struct indexed_case) New structure.
1164         (do_internal_sort) Rewrite to make internal sorting stable.
1165         (compare_case_dblptrs) Removed.
1166         (compare_indexed_cases) New function.
1167
1168 Sun Mar 13 22:38:40 2005  Ben Pfaff  <blp@gnu.org>
1169
1170         Clean-ups.
1171
1172         * casefile.c: (casereader_read_xfer_assert) New function.
1173
1174         * dictionary.c: (dict_compact_case) New function.
1175
1176         * flip.c: (struct flip_pgm) New member idx_to_fv.
1177         (cmd_flip) Initialize idx_to_fv member.
1178         (destroy_flip_pgm) Free idx_to_fv member.
1179         (flip_sink_write) Use struct flip_pgm member instead of case_sink
1180         member.
1181         (flip_sink_write) Ditto.
1182
1183         * vfm.c: (write_case) Use dict_compact_case() instead of
1184         compact_case().
1185         (compact_case) Removed.
1186         (storage_source_create) Removed `dict' parameter.  All references
1187         updated.
1188
1189         * vfm.h: (struct case_source) Removed `value_cnt' member.  All
1190         references removed.
1191         (struct case_sink) Removed `dict', `idx_to_fv' members.  All
1192         references removed.
1193
1194 Sun Mar 13 22:35:55 2005  Ben Pfaff  <blp@gnu.org>
1195
1196         More AGGREGATE fixes.
1197
1198         * aggregate.c: (accumulate_aggregate_info) Implement NMISS and
1199         NUMISS for strings.  Fix FOUT, POUT, FGT, FLT, FIN, FOUT for
1200         strings.
1201         (initialize_aggregate_info) Fix initialization for MIN, MAX for
1202         strings.
1203
1204 Sat Mar 12 23:26:21 2005  Ben Pfaff  <blp@gnu.org>
1205
1206         Start work on testing and debugging AGGREGATE.
1207
1208         * aggregate.c: (cmd_aggregate) Use discrete bool variables instead
1209         of a bit-map.  Require proper subcommand ordering.  Make OUTFILE
1210         subcommand mandatory.
1211         (parse_aggregate_functions) Check that PIN, POUT, FIN, FOUT
1212         functions' arguments are in the correct order and swap them if
1213         not.
1214         (accumulate_aggregate_info) Make SUM include weights.  Add various
1215         string functions.
1216         (dump_aggregate_info) Add various string functions.
1217         (initialize_aggregate_info) Initialize int1 for MIN, MAX.
1218
1219         * sort.c: (sort_parse_criteria) Add parameter for returning
1220         whether any directions were specified.  All callers updated.
1221
1222 Sun Mar 13 14:54:27 WST 2005 John Darrington <john@darrington.wattle.id.au>
1223
1224         * t-test.q: Fixed erroneous logic in compare_group_binary.
1225
1226 Sat Mar 12 13:29:21 2005  Ben Pfaff  <blp@gnu.org>
1227
1228         * split-file.c: (cmd_split_file) Ignore LAYERED and SEPARATE
1229         keywords (bug 11628).
1230
1231 Sat Mar 12 13:17:12 2005  Ben Pfaff  <blp@gnu.org>
1232
1233         * vfm.c: (procedure_with_splits) Fix bug 11492: end_func() must be
1234         called *before* close_active_file().
1235
1236 Sat Mar 12 12:20:57 2005  Ben Pfaff  <blp@gnu.org>
1237
1238         * file-handle.q: (struct file_handle) Change open_mode from
1239         character pointer to 3-char array, for safety.  Updated all
1240         references.
1241
1242 Sat Mar 12 12:15:49 2005  Ben Pfaff  <blp@gnu.org>
1243
1244         Thanks to Ben Kujala <bkujala@oregonchildcare.org> for reporting
1245         these bugs.
1246         
1247         * pfm-read.c: (read_header) Improve error message for many cases
1248         in which the input is not actually a portable file.
1249
1250         * file-handle.q: (fh_open) When we give an error message, actually
1251         return NULL.
1252
1253 Fri Mar 11 11:50:30 2005  Ben Pfaff  <blp@gnu.org>
1254
1255         * format.c: (check_common_specifier) New function for checks
1256         common to check_input_specifier() and check_output_specifier().
1257         (check_input_specifier) Use check_common_specifier().
1258         (check_output_specifier) Use check_common_specifier().
1259         (check_string_specifier) Removed.
1260         (check_specifier_type) New function.
1261         (check_specifier_width) New function.
1262         (get_format_var_width) Fix bug.
1263
1264         * formats.c: (internal_cmd_formats) Only accept numeric variables.
1265
1266         * lexer.c: (check_id) Rename lex_id_to_token(), make public,
1267         update all references.  Make case-insensitive.
1268
1269         * pfm-read.c: Essentially rewrite the whole file.  Now much
1270         cleaner.
1271
1272         * print.c: (check_string_width) New function.
1273         (fixed_parse_compatible) Use check_string_width(),
1274         check_specifier_type().
1275         (dump_fmt_list) Ditto.
1276
1277         * str.c: (st_trim_copy) New function.
1278         (st_uppercase) New function.
1279
1280         * vars-atr.c: (var_is_valid_name) New function.
1281         
1282         * expressions/parse.c: (type_coercion_core) Use
1283         check_specifier_type().
1284         
1285 Fri Mar 11 11:31:24 2005  Ben Pfaff  <blp@gnu.org>
1286
1287         * expressions/evaluate.c: (cmd_debug_evaluate) Fix memory leaks.
1288
1289         * expressions/parse.c: (no_match) Ditto.
1290
1291 Wed Mar  9 09:54:27 2005  Ben Pfaff  <blp@gnu.org>
1292
1293         * Makefile.am: (pspp_LDADD) Add libgsl-extras.a.
1294
1295         * expressions/helpers.c: (struct func_params) Removed.
1296         (generalized_idf) Removed.
1297         (cdf_beta) Removed.
1298         (idf_beta) Removed.
1299         (idf_fdist) Use gslextras_cdf_beta_Pinv() instead of idf_beta().
1300
1301         * expressions/operations.def: Implement IDF.BETA, CDF.BINOM,
1302         CDF.GEOM, CDF.HYPER, CDF.NEGBIN, CDF.POISSON using gsl-extras.
1303         Implement SIG.F, which I had overlooked previously.
1304
1305 Tue Mar  8 12:47:53 WST 2005 John Darrington <john@darrington.wattle.id.au>
1306
1307         * command.c command.def glob.[ch] cmdline.c: Made DEBUG cmds
1308         available only in testing mode.
1309
1310 Sun Mar  6 23:25:40 2005  Ben Pfaff  <blp@gnu.org>
1311
1312         * data-in.c: Use `bool' throughout, where relevant.
1313
1314 Sun Mar  6 19:52:22 2005  Ben Pfaff  <blp@gnu.org>
1315
1316         DATA LIST with free-field formats should not have implied decimal
1317         places (bug 12035).  Also clean up data-in.c a bit.
1318
1319         * data-in.h: (enum) Add DI_IMPLIED_DECIMALS.
1320
1321         * data-in.c: (apply_implied_decimals) New function.
1322         (parse_numeric) Don't adjust exponent if DI_IMPLIED_DECIMALS not
1323         set.  Also, get rid of gotos.
1324         (parse_Z) Use apply_implied_decimals() if the field doesn't
1325         contain a decimal point.
1326         (parse_N) Use apply_implied_decimals().
1327         (parse_IB) Ditto.
1328         (parse_PIB) Ditto.
1329         (parse_P) Ditto.
1330         (parse_PK) Ditto.
1331         (to_roman) Removed.
1332         (parse_enum) New function.
1333         (macro CHAR_IS_ROMAN) Removed.
1334         (macro ROMAN_VALUE) Removed.
1335         (parse_month) Use parse_enum().
1336         (parse_weekday) Use parse_enum().
1337         (parse_DATETIME) Use long for weekday.
1338
1339         * data-list.c: (read_from_data_list_fixed) Use
1340         DI_IMPLIED_DECIMALS.
1341
1342 Sun Mar  6 17:07:20 2005  Ben Pfaff  <blp@gnu.org>
1343
1344         When the lexer sees something like `-5' in the input, it has to
1345         decide whether it's a negative numeric constant token or a '-'
1346         token followed by a positive numeric constant token.  It always
1347         decides on the former, and then the parser can call
1348         lex_negative_to_dash() if it wants the latter.  However, this
1349         doesn't work for the case of `-0', because negative zero is
1350         (portably) indistinguishable from positive zero.  So now we divide
1351         T_NUM into two tokens, T_POS_NUM and T_NEG_NUM, to make the
1352         distinction clear.  This requires a little bit of extra effort,
1353         because there were several references to T_NUM in the code base.
1354         
1355         * lexer.c: (lex_get) Use T_NEG_NUM and T_POS_NUM to distinguish
1356         positive and negative numeric constants.
1357         (lex_double_p) Renamed lex_is_number().  Changed return type to
1358         bool.  Updated all relevant references to T_NUM to instead use
1359         this function.
1360         (lex_double) Renamed lex_number().  All references updated.
1361         (lex_integer_p) Renamed lex_is_integer().  Changed return type to
1362         bool.  All references updated.
1363         (lex_token_representation) Understand T_NEG_NUM and T_POS_NUM.
1364         (lex_negative_to_dash) Ditto.
1365         (dump_token) Ditto.
1366         
1367         * lexer.h: (enum) Add T_POS_NUM, T_NEG_NUM.  Remove T_NUM.
1368
1369 Sun Mar  6 22:09:20 2005  Ben Pfaff  <blp@gnu.org>
1370
1371         * expressions/operations.def: (NUMBER) Use DI_IMPLIED_DECIMALS.
1372
1373 Sun Mar  6 19:33:24 2005  Ben Pfaff  <blp@gnu.org>
1374
1375         * expressions/operations.def: (VEC_ELEM_NUM) Treat user-missing
1376         values as system-missing.
1377
1378         * expressions/parse.c: (parse_vector_element) Fix order of
1379         arguments in call to expr_allocate_binary().
1380
1381 Sun Mar  6 17:51:05 2005  Ben Pfaff  <blp@gnu.org>
1382
1383         * expressions/optimize.c: (optimize_tree) Fix optimization bug for
1384         x**2.
1385
1386         * expressions/parse.c: (type_coercion_core) Set *node to NULL on
1387         failure, as indicated by function comment.
1388         (parse_binary_operators) Always return NULL on type_coercion()
1389         failure.  Should have been doing this anyway, but bug in
1390         type_coercion_core() filtered through.
1391         (parse_add) Fix typo in user message.
1392         (parse_primary) Understand T_NEG_NUM and T_POS_NUM.
1393
1394 Sun Mar  6 10:47:13 2005  Ben Pfaff  <blp@gnu.org>
1395
1396         * expressions/operations.def: Add VALUE function.
1397
1398         * expressions/parse.c: (parse_function) Need an unary composite
1399         node for variables in A TO B, not a variable node.  Use
1400         allocate_unary_variable().
1401         (parse_primary) Use allocate_unary_variable().
1402         (allocate_unary_variable) New function.
1403
1404 Thu Mar  3 23:53:32 2005  Ben Pfaff  <blp@gnu.org>
1405
1406         * expressions/PSPP_expressions.pm: Renamed it back to generate.pl
1407         but fixed the real problem that was preventing the build from a
1408         separate directory.  I liked it my way better ;-)
1409         
1410 Thu Mar  3 23:17:51 2005  Ben Pfaff  <blp@gnu.org>
1411
1412         * expressions/parse.c: (expr_parse) Fix parameter type.  Thanks to
1413         John Darrington <john@darrington.wattle.id.au> for reporting this
1414         bug.
1415
1416 Thu Mar  3 22:10:25 WST 2005 John Darrington <john@darrington.wattle.id.au>
1417
1418         * expressions/Makefile.am expressions/evaluate.h.pl
1419           expressions/evaluate.inc.pl expressions/operations.h.pl
1420           expressions/optimize.inc.pl expressions/parse.inc.p:
1421
1422           Renamed generate.pl to PSPP_expressions.pm and adjusted *.pl
1423           to suit. 
1424
1425           Fixed everything so that it can be built from an arbitrary
1426           directory.
1427         
1428 Thu Mar  3 22:08:35 WST 2005 John Darrington <john@darrington.wattle.id.au>
1429
1430         * Makefile.am : Fixed up CLEANFILES target.
1431
1432 Mon Feb 28 23:49:56 2005  Ben Pfaff  <blp@gnu.org>
1433
1434         * str.h: Changed `struct len_string' to `struct fixed_string', a
1435         more accurate name.  Updated all references.
1436
1437 Mon Feb 28 23:35:30 2005  Ben Pfaff  <blp@gnu.org>
1438
1439         Redo calendar support.  Should now be bug-for-bug compatible.
1440         
1441         * calendar.c: New file.
1442
1443         * calendar.h: New file.
1444
1445         * data-in.c: Use new calendar functions.
1446         (parse_sign) Change sense of return value.
1447         (calendar_error) New function.
1448         (ymd_to_ofs) New function.
1449         (ymd_to_date) New function.
1450         (parse_DATE) Use new function.
1451         (parse_ADATE) Ditto.
1452         (parse_EDATE) Ditto.
1453         (parse_SDATE) Ditto.
1454         (parse_JDATE) Ditto.
1455         (parse_QYR) Ditto.
1456         (parse_MOYR) Ditto.
1457         (parse_WKYR) Ditto.
1458         (parse_TIME) Ditto.
1459         (parse_DTIME) Ditto.
1460         (parse_DATETIME) Ditto.
1461
1462         * data-out.c: (convert_date) Use new calendar functions.
1463
1464         * error.c: (err_vmsg) Changed interface to be more sensible.
1465         Updated all callers.
1466         (dump_message) Don't double new-lines (why did we do this
1467         anyway?).
1468
1469 Mon Feb 28 23:30:25 2005  Ben Pfaff  <blp@gnu.org>
1470
1471         * sfmP.h: (macro flt64) Moved here from pref.h.orig.
1472         (macro FLT64_MAX) Moved here from pref.h.orig.
1473
1474 Mon Feb 28 23:28:01 2005  Ben Pfaff  <blp@gnu.org>
1475
1476         * set.q: Support SET EPOCH.
1477         (static var set_epoch) New var.
1478         (aux_stc_custom_epoch) New function.
1479         (stc_custom_epoch) New function.
1480         (get_epoch) New function.
1481         (stc_custom_pager) [USE_INTERNAL_PAGER] Fix bug.
1482
1483         * format.c: Make it possible just to check whether a specifier is
1484         valid without emitting an error message.
1485         (parse_format_specifier_name) Change interface, update all
1486         callers.
1487         (check_input_specifier) Ditto.
1488         (check_output_specifier) Ditto.
1489         (parse_format_specifier) Ditto.
1490
1491 Mon Feb 28 23:24:08 2005  Ben Pfaff  <blp@gnu.org>
1492
1493         * command.def: Add DEBUG POOL.
1494
1495         * pool.c: (pool_destroy) Fix bug in deleting this pool from its
1496         parent.
1497         (pool_clear) Properly account for size of pool gizmo.
1498         (pool_realloc) Ditto.
1499         (pool_clone) New function.
1500
1501         * pool.h: Mark our allocation functions MALLOC_LIKE.
1502
1503 Mon Feb 28 23:21:26 2005  Ben Pfaff  <blp@gnu.org>
1504
1505         * Makefile.am: Move many definitions into new top-level
1506         Make.build.  Add expressions to SUBDIRS.  Add calendar.c,
1507         calendar.h.  Remove expr-evl.c, expr-opt.c expr-prs.c, expr.h,
1508         exprP.h, expr.def.
1509
1510         * case.c: (case_resize) New function.
1511         (case_swap) New function.
1512
1513         * casefile.c: Include mkfile.h.
1514
1515 Fri Feb 25 21:11:35 WST 2005 John Darrington <john@darrington.wattle.id.au>
1516
1517         * sfm-read.c: Fixed a buglet which caused a crash when trying
1518         to read a non-existent file.
1519
1520 Sun Feb 13 16:11:13 2005  Ben Pfaff  <blp@gnu.org>
1521
1522         Fix bug 11955.
1523
1524         * aggregate.c: (parse_aggregate_functions) Code cleanup.
1525         Important part: get rid of spurious copying of function->format to
1526         destvar->print and destvar->write.
1527
1528 Fri Feb 11 00:08:36 2005  Ben Pfaff  <blp@gnu.org>
1529
1530         Fix bug 11916, which was confusing a variable's `index' member
1531         with the variable's position in a var_set.  Although these are
1532         usually the same, they are not for array `var_set's.
1533         
1534         Took advantage of this bug as an opportunity to clean up and
1535         rewrite parse_var_set_vars().
1536
1537         * vars-prs.c: (parse_vs_variable_idx) New function.
1538         (parse_vs_variable) Reimplement in terms of
1539         parse_vs_variable_idx().
1540         (parse_var_idx_class) New function.
1541         (add_variable) New function.
1542         (add_variables) New function.
1543         (parse_var_set_vars) Rewritten.
1544         (struct var_set) Change `lookup_var' member that returns a
1545         variable into `lookup_var_idx' member that returns an int.
1546         Updated the var set implementations in obvious corresponding ways.
1547         Used compare_var_ptr_names(), hash_var_ptr_name() just added.
1548         
1549 Fri Feb 11 00:06:03 2005  Ben Pfaff  <blp@gnu.org>
1550
1551         Use our global variable compare & hash functions and give them
1552         better names.  Add similar functions for dealing with double
1553         pointers to variables.
1554         
1555         * vars-atr.c: (compare_variables) Renamed compare_var_names().
1556         (hash_variable) Renamed hash_var_name().
1557         (compare_var_ptr_names) New function.
1558         (hash_var_ptr_name) New function.
1559         
1560         * t-test.q: (cmd_t_test) Use global compare_var_names(),
1561         hash_var_name().
1562         (compare_var_name) Removed.
1563         (hash_var_name) Removed.
1564
1565 Fri Feb 11 00:04:39 2005  Ben Pfaff  <blp@gnu.org>
1566
1567         Fix dictionary bug.
1568         
1569         * dictionary.c: (compare_variable_dblptrs) Rename
1570         compare_var_ptrs() and fix it to properly dereference the double
1571         pointers.
1572
1573 Mon Feb  7 09:58:15 WST 2005 John Darrington <john@darrington.wattle.id.au>
1574
1575         crosstabs.q examine.q oneway.q q2c.c:  Added a q2c feature to 
1576         declare subcommands as mandatory.  Closed bug #11843
1577
1578 Sat Feb  5 20:35:10 WST 2005 John Darrington <john@darrington.wattle.id.au>
1579         
1580         * getline.c command.[ch] command.def:  Added (very rudimentary)
1581         support for line  completion when in interactive mode.  Partially 
1582         addresses bug #11693
1583         
1584 Mon Jan 31 09:52:51 WST 2005 John Darrington <john@darrington.wattle.id.au>
1585
1586         * examine.q factor_stats.c oneway.q output.c pfm-read.c: Fixed some
1587         problems revealed by valgrind.
1588
1589
1590 Wed Jan 26 11:44:11 WST 2005 John Darrington <john@darrington.wattle.id.au>
1591
1592         * set.q: Affixed a fix to the previous fix such that we'll be OK now
1593         whether or not PAGER is set.
1594
1595 Wed Jan 26 09:25:54 WST 2005 John Darrington <john@darrington.wattle.id.au>
1596
1597         * set.q: Copied the string produced by getenv("PAGER") thus avoiding
1598         "invalid free" errors.  Hopefully fixes bug #11722
1599
1600         * compute.c expr-prs.c: Check that lvalues are populated before 
1601         attempting to destroy them.  Closes bug #11676
1602
1603 Tue Jan 25 21:01:43 WST 2005 John Darrington <john@darrington.wattle.id.au>
1604
1605         * aggregate.c: Initialised the complete agr_proc structure.
1606         Closes bug #11675
1607
1608
1609 Sun Jan 23 23:02:21 2005  Ben Pfaff  <blp@gnu.org>
1610
1611         * print.c: (print_trns_free) Close the dfm writer if there is one,
1612         fixing a memory leak.
1613
1614 Mon Jan 24 12:24:36 WST 2005 John Darrington <john@darrington.wattle.id.au>
1615
1616         * glob.c oneway.q q2c.c t-test.q vfm.c: Still *more* memory leaks 
1617         fixed.
1618
1619
1620 Fri Jan 21 19:54:14 WST 2005 John Darrington <john@darrington.wattle.id.au>
1621
1622         * linked-list.[ch] Added
1623
1624         * examine.q file-handle.[hq] font.h glob.c groff-font.c postscript.c 
1625           set.q:    Yet more memory leaks
1626
1627 Tue Jan 18 23:12:40 WST 2005 John Darrington <john@darrington.wattle.id.au>
1628
1629         * t-test.q examine.q : More memory leaks fixed.
1630
1631 Tue Jan 18 19:26:59 WST 2005 John Darrington <john@darrington.wattle.id.au>
1632
1633         * examine.q  factor_stats.[ch] get.c pfm-read.c: Plugged numerous
1634         memory leaks.
1635
1636 Mon Jan 10 14:43:45 WST 2005 John Darrington <john@darrington.wattle.id.au>
1637
1638         * ascii.c cartesian.c casefile.c chart.h devind.c 
1639           examine.q frequencies.q
1640           html.c output.h piechart.c plot-chart.c plot-hist.c
1641
1642           Integrated the chart rendering into the output stream
1643           (currently only works for html).
1644           
1645           Removed gratuitous use of ifndef NO_CHARTS, and replaced with
1646           dummy-chart.c for compiling without charts.
1647
1648         * mkfile.[ch] Created.  
1649
1650         * som.[ch] tab.[ch]: Changed name of som_table to som_entity
1651         Added type element so we can tell if it's a chart or a table.
1652
1653         * chart.h examine.q piechart.c plot-chart.c plot-hist.c: changed the 
1654         API of charts to be more like that of tables.
1655
1656 Thu Jan 13 21:00:02 WST 2005 John Darrington <john@darrington.wattle.id.au>
1657
1658         * casefile.c main.c: Moved the SIGINT handler from casefile.c to
1659         main.c. Removed the handler for SIGQUIT.
1660
1661 Mon Jan 10 14:43:45 WST 2005 John Darrington <john@darrington.wattle.id.au>
1662
1663         * casefile.c: Added a signal handler to delete temp files on 
1664         SIGINT and SIGQUIT
1665
1666         * permissions.c Inhibited the PERMISSIONS command when SAFER is on.
1667
1668         * command.def Added a lot more unimplemented commands.
1669
1670         * copyleft.[ch] cmdline.c Moved legal information to copyleft.c
1671
1672 Sat Jan  8 23:58:34 2005  Ben Pfaff  <blp@gnu.org>
1673
1674         * sort.c: (compare_initial_runs) Needed additional level of
1675         dereferencing.
1676         (merge_once) Fix plenty of stupid mistakes.
1677
1678 Sat Jan  8 23:55:27 2005  Ben Pfaff  <blp@gnu.org>
1679
1680         * casefile.c: (casefile_sleep) Need to flush_buffer() after
1681         calling casefile_to_disk() or we will lose the last block in the
1682         file if the casefile started out as disk-based.
1683         (casefile_get_reader) Initialize reader->destructive to 0.
1684         (cmd_debug_casefile) Add new test pattern.
1685         (test_casefile) Define new test pattern to make sure
1686         casefile_sleep() works properly.
1687
1688 Fri Jan  7 08:00:05 WST 2005 John Darrington <john@darrington.wattle.id.au>
1689
1690         * Makefile.am chart.[ch]  histogram.[ch] piechart.c (Modified);
1691           plot-hist.c plot-chart.c (Added) Reorganised these files in an
1692           attempt to seperate the creation and processing of charts from their
1693           actuall renedering.
1694
1695         * examine.q frequencies.q generated charts conditional upon the NO_CHARTS
1696           macro.
1697
1698 Thu Jan  6 18:48:58 WST 2005 John Darrington <john@darrington.wattle.id.au>
1699
1700         * main.c Added a signal handler for SIGFPE
1701
1702         * sort.c Somewhat more robust fix to the previous entry.
1703
1704 Wed Jan  5 21:23:31 2005  Ben Pfaff  <blp@gnu.org>
1705
1706         * sort.c: (merge) Fix assertion for proper Huffman merge pattern:
1707         0 == 1 modulo 1.  See Knuth 5.4.9 (vol. 3, 2nd ed.,
1708         pp. 361).  Thanks to John Darrington <john@cellform.com.au> for
1709         reporting the bug.
1710
1711 Wed Jan  5 22:42:26 WST 2005 John Darrington <john@darrington.wattle.id.au>
1712
1713         * case.h Fixed bug # 11307
1714         
1715 Wed Jan  5 08:30:48 WST 2005 John Darrington <john@darrington.wattle.id.au>
1716
1717         * val-labs.c Fixed bug which caused a crash if VALUE LABELS had
1718         a trailing slash.
1719
1720 Mon Jan  3 17:44:37 2005  Ben Pfaff  <blp@gnu.org>
1721
1722         * pfm-read.c: (read_variables) Remove direct manipulation of
1723         v->aux, which is no longer needed.  Fixes bug 11483.
1724
1725 Sat Jan  1 19:01:16 WST 2005 John Darrington <john@darrington.wattle.id.au>
1726
1727         * data-list.c Fixed a bug in parsing delimiters.
1728
1729         * group.c vars-atr.c Fixed buglet in hash/compare functions for alpha
1730         values.
1731
1732         * percentiles.c Properly handled calculation of Tukey hinges where
1733         the number of data is small.
1734
1735         * oneway.q Used the generic value_to_string function for independent
1736         variable instead of trying to do it ourselves.
1737
1738         * box-whisker.c Fixed a buglet which caused a crash if the number of
1739         data was zero
1740
1741
1742 Fri Dec 31 16:47:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
1743
1744         * examine.q box-whisker.c chart.h Implemented boxplots in EXAMINE
1745
1746         * percentiles.c Fixed some bugs when calculating percentiles when
1747         there's a small number of cases.
1748
1749 Wed Dec 29 08:18:08 WST 2004 John Darrington <john@darrington.wattle.id.au>
1750
1751         * percentiles.[ch] Added. Calculates percentiles and Tukey hinges
1752
1753         * examine.q factor_stats.[ch]  Added calculation of percentiles
1754
1755 Fri Dec 24 15:09:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
1756
1757         * t-test.q Fixed bug #11227 Made t-test work when the independent
1758         variable is alpha
1759
1760 Sat Dec 11 11:43:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
1761
1762         * factor_stats.c Fixed calculation of trimmed mean under various
1763         special conditions.
1764
1765 Sat Dec  4 17:14:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
1766
1767         * histogram.c chart.[ch] factor_stats.c frequencies.q
1768
1769         Added code to calculate sensible histogram ranges and limits.
1770
1771 Thu Dec  2 13:37:43 WST 2004 John Darrington <john@darrington.wattle.id.au>
1772
1773         * chart.h Updated to reflect many API changes.
1774
1775         * cartesian.c chart.c Moved the definitions of chart_write_{xy}scale from 
1776         cartesian.c and into chart.c
1777
1778         * factorstats.[ch] Added the histogram calculations
1779
1780         * casefile.c Removed an unused variable.
1781
1782         * frequencies.q examine.q histogram.c  Reworked the API for 
1783         histograms.
1784
1785         * piechart.c  Revised the API for piecharts.
1786
1787         * var.h  Moved the definitions of freq_tab and freq out of var.h
1788         and into frequencies.q where they belong.
1789         
1790 Tue Nov 30 21:10:20 2004  Ben Pfaff  <blp@gnu.org>
1791
1792         * flip.c: (flip_file) Check for off_t separately from fseeko(),
1793         using AC_TYPE_OFF_T.
1794
1795 Tue Nov 30 08:47:41 2004  Ben Pfaff  <blp@gnu.org>
1796
1797         * flip.c: (flip_file) If fseeko() is not available, use long int
1798         for off_t.  Thanks to "Marshall DeBerry" <mdb@radix.net> for
1799         reporting the problem.
1800
1801 Mon Nov 29 12:20:59 WST 2004 John Darrington <john@darrington.wattle.id.au>
1802
1803         * examine.q factor_stats.[ch] Changed stderr to se_mean to avoid
1804         conflict with stdio.
1805
1806 Sun Nov 21 10:32:41 WST 2004 John Darrington <john@darrington.wattle.id.au>
1807
1808         * var-labs.c (var_to_string) Now returns null if the variable is null
1809
1810         * value-labels.c (value_to_string) Made it return null if either the 
1811         value or the variable is null.
1812
1813         * hash.c (hsh_clear) Fixed a buglet.
1814
1815         * examine.q  factor_stats.[ch] Largely  rewrote, because I'd started 
1816         with  the wrong model.
1817
1818         * casefile.[ch] Added a function to return the casereader.case_idx 
1819         member
1820
1821         * examine.q  Implemented the extreme values results.
1822
1823 John Darrington <john@darrington.wattle.id.au>
1824
1825         * settings.h set.c glob.[ch] frequencies.q q2c.c error.c lexer.[ch] 
1826           output.[ch] getline.c 
1827
1828           Plugged some memory leaks
1829
1830 Mon Nov 15 23:47:40 2004  Ben Pfaff  <blp@gnu.org>
1831
1832         Adopt GSL random number generators, paving the way for providing
1833         the complete suite of random number generators on expressions.
1834         
1835         * Makefile.am: Remove random.c, random.h.
1836
1837         * random.c: Removed.
1838
1839         * random.h: Removed.
1840
1841         * algorithm.c: (algo_default_random) Use GSL functions.
1842
1843         * casefile.c: (test_casefile) Use GSL RNG functions.
1844
1845         * expr-evl.c: (expr_evaluate) Use GSL RNG functions for OP_NORMAL,
1846         OP_UNIFORM.
1847
1848         * sample.c: (cmd_sample) Use GSL RNG functions.
1849         (sample_trns_proc) Ditto.
1850
1851         * set.q: (static var set_seed) Removed.
1852         (static var seed_flag) Removed.
1853         (static var rng) New variable.
1854         (aux_stc_custom_seed) No seed value anymore, don't print anything.
1855         (stc_custom_seed) Use new seed functions.
1856         (seed_is_set) Removed.
1857         (get_rng) New function that composes the entire external
1858         interface.
1859         (set_rng) New function.
1860         (random_seed) New function.
1861
1862 Mon Nov 15 22:08:25 2004  Ben Pfaff  <blp@gnu.org>
1863
1864         * expr-evl.c: (expr_evaluate) Fix XDATE.JDAY formula.  Thanks to
1865         John Darrington <john@darrington.wattle.id.au> for reporting this
1866         bug.
1867
1868 Tue Nov 16 13:19:18 WST 2004 John Darrington <john@darrington.wattle.id.au>
1869
1870         * permissions.c command.def Added the PERMISSIONS command
1871
1872 Mon Nov 15 01:33:32 2004  Ben Pfaff  <blp@gnu.org>
1873
1874         * q2c.c: (dump_header) Don't try to emit #includes at very top of
1875         output file because that will precede #include <config.h>, which
1876         is bad.
1877         (main) Add needed headers to /* (header) */ code.
1878
1879 Mon Nov 15 01:21:36 2004  Ben Pfaff  <blp@gnu.org>
1880
1881         Instead of making system or portable file readers responsible for
1882         dropping and reordering variables, make them read full cases and
1883         let the caller take care of any changes.
1884
1885         * get.c: New "case map" structure to handle this.  Use for GET,
1886         IMPORT, MATCH FILES.  Essentially rewrite the whole file.
1887
1888         * pfm-read.c: (pfm_read_case) Read into provided case.  Signature
1889         changed appropriately.
1890
1891         * sfm-read.c: (sfm_read_case) Ditto.
1892
1893 Mon Nov 15 00:47:45 2004  Ben Pfaff  <blp@gnu.org>
1894
1895         Decided that case_serialize() and case_unserialize() were too
1896         abstract.  Also we need a couple more functions to avoid excessive
1897         copying for data in/out fast paths.
1898
1899         * case.c: (case_serial_size) Removed.
1900         (case_serialize) Rename case_to_values() and make its argument
1901         explicitly an array of union values.
1902         (case_unserialize) Rename case_from_values() and make its argument
1903         explicitly an array of union values.
1904         (case_data_all) New function.
1905         (case_data_all_rw) New function.
1906
1907         * casefile.c: (struct casefile) Change buffer from array of
1908         unsigned char to array of union value for better accuracy.
1909         Redefine buffer_used and buffer_size in terms of values, not
1910         bytes.  Remove case_size because it is now redundant with
1911         value_cnt.  Fix up all references to these members.
1912
1913 Mon Nov 15 00:45:46 2004  Ben Pfaff  <blp@gnu.org>
1914
1915         * barchart.c: (struct subcat) Make `label' member const to silence
1916         GCC warning with -Wwrite-strings.
1917
1918         * cartesian.c: (struct dataset) Ditto.
1919
1920         * case.c: Don't re-define NDEBUG if already defined.
1921         Add lots of comments.
1922
1923         * str.c: Fix includes.
1924
1925         * crosstabs.q: Fix includes.
1926
1927         * examine.q: Fix includes.  Fix GCC warning about unused
1928         variables.
1929         
1930         * frequencies.q: (stat macro) Removed and replaced where used by
1931         its expansion.
1932
1933         * list.q: Fix includes.
1934
1935         * oneway.q: Fix includes.
1936
1937         * piechart.c: Fix includes.  Only define M_PI if not already
1938         defined.
1939
1940         * sfm-read.c: (bswap) New function.
1941         (bswap_int32) Write in terms of bswap.
1942         (bswap_flt64) Ditto.
1943
1944         * str.c: (ds_data) Add external definition here, needed because
1945         str.h has only an `extern inline' version.
1946
1947         * value-labels.c: Fix includes.
1948
1949 Mon Nov 15 00:40:55 2004  Ben Pfaff  <blp@gnu.org>
1950
1951         Instead of providing a system or portable file writer with a raw
1952         case in the format needed for output, provide it with a regular
1953         case.  The writer takes care of any needed translation.
1954
1955         * aggregate.c: Adopt new scheme for AGGREGATE.
1956         (struct agr_proc) sfm_agr_case member removed.
1957         (write_case_to_sfm) Removed because the new interface is easier to
1958         use.
1959
1960         * get.c: Adopt new scheme for SAVE, XSAVE, EXPORT.
1961
1962         * pfm-write.c: Implement new scheme.
1963
1964         * sfm-write.c: Ditto.
1965
1966 Mon Nov 15 00:32:24 2004  Ben Pfaff  <blp@gnu.org>
1967
1968         Instead of treating `struct file_handle' as a class to subclass
1969         into data files, system files, and portable files, instead use it
1970         as a helper that coordinates access.  Now it is opaque, too.
1971
1972         This means that most references to a struct file_handle are now
1973         changed into references to one of struct dfm_reader, struct
1974         dfm_writer, struct sfm_reader, struct sfm_writer, struct
1975         pfm_reader, or struct pfm_writer, according to what's being read
1976         or written.
1977
1978         Most related changes are only worth summarizing briefly.
1979
1980         * dictionary.c: (dict_clear) Destroy aux data in deleted
1981         variables.
1982         (dict_clear_aux) New function.
1983         (dict_create_var) Initialize aux, aux_dtor.
1984         (dict_delete_var) Destroy aux data in deleted variable.
1985
1986         * file-handle.h: (struct fh_ext_class) Removed.
1987         (struct file_handle) Removed.
1988         (fh_init_files) Removed.
1989
1990         * file-handle.q: Changed references to a handle's `private' member
1991         to direct references.
1992         (struct private_file_handle) Renamed file_handle.
1993         Add next, open_cnt, type, open_mode, aux members.
1994         (struct file_handle_list) Removed.
1995         (extern var inline_file) Removed.
1996         (static var file_handles) Changed from file_handle_list * to
1997         file_handle *.
1998         (create_file_handle) Initialize new members.
1999         (fh_close_handle) Removed.
2000         (mode_name) New function.
2001         (fh_open) New function.
2002         (fh_close) New function.
2003         (fh_parse_file_handle) Renamed fh_parse().
2004
2005         * glob.c: (init_glob) Remove fh_init_files() call.
2006         
2007         * aggregate.c: use sfm_writer.
2008         (create_sysfile) Removed because the new interface is simpler.
2009         
2010         * apply-dict.c: Use sfm_reader.
2011
2012         * data-list.c: Use dfm_reader.
2013
2014         * file-type.c: Use dfm_reader.
2015
2016         * get.c: Use sfm_reader, sfm_writer, pfm_reader, pfm_writer.
2017
2018         * inpt-pgm.c: Use dfm_reader.
2019
2020         * print.c: Use dfm_writer.
2021
2022         * sysfile-info: Use sfm_reader.
2023
2024         * dfm-read.c: Adopt new file handle infrastructure.
2025
2026         * dfm-write.c: Ditto.
2027
2028         * pfm-read.c: Ditto.
2029         
2030         * pfm-write.c: Ditto.
2031
2032         * sfm-read.c: Ditto.
2033
2034         * sfm-write.c: Ditto.
2035         
2036 Mon Nov 15 00:31:44 2004  Ben Pfaff  <blp@gnu.org>
2037
2038         Break dictionary functions into separate header file.
2039
2040         * dictionary.h: New file.
2041
2042         * var.h: Moved dict_*() functions to dictionary.h.
2043
2044 Mon Nov 15 00:30:33 2004  Ben Pfaff  <blp@gnu.org>
2045
2046         Get rid of procedure-specific union in struct variable, using
2047         instead a void * pointer and a destructor function.
2048
2049         Most related changes are only worth brief summaries.
2050
2051         * crosstabs.q: Fix includes.  Use new struct var_range in lieu of
2052         old p.crs member in struct variable.
2053         
2054         * frequencies.q: Fix includes.  Use new struct var_freqs in lieu
2055         of old p.frq member in struct variable.
2056
2057         * histogram.c: (draw_histogram) Takes new freq_tab arg because
2058         it's no longer possible to grab this from var->p.frq.
2059
2060         * piechart.c: (draw_piechart) Ditto.
2061
2062         * group.c: (group_proc_get) New function.
2063
2064         * levene.c: Use group_proc_get() in lieu of old p.grp_data member
2065         in struct variable.
2066
2067         * oneway.q: Ditto.
2068
2069         * t-test.q: Ditto.
2070
2071         * main.c: (execute_command) Clear aux data in default_dict after
2072         each command.  (It's debatable whether this should be done.)
2073
2074         * matrix-data.c: Use new struct mxd_var in lieu of old p.mxd
2075         member in struct variable.
2076
2077         * means.q: Get rid of integer mode, which is not included in
2078         recent SPSS and was the only code that wanted per-variable private
2079         data.
2080
2081         * var.h: (struct crosstab_proc) Removed.
2082         (struct frequencies_proc) Removed.
2083         (struct list_proc) Removed.
2084         (struct get_proc) Removed.
2085         (struct means_proc) Removed.
2086         (struct matrix_data_proc) Removed.
2087         (struct match_files_proc) Removed.
2088         (lots of enums) Removed.
2089         (struct variable) Removed members `p', `get'.  Add member
2090         `aux_dtor'.
2091
2092         * vars-atr.c: (var_attach_aux) New function.
2093         (var_detach_aux) New function.
2094         (var_clear_aux) New function.
2095         (var_dtor_free) New function.
2096         (discard_variables) Use NULL instead of inline_file.
2097
2098 Fri Nov 12 10:07:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
2099
2100         * value-labs.c  Fixed the implmentation of value_to_string, so 
2101         that it properly handles alpha values.
2102
2103         * oneway.q  Changed instances where labels were being probed manually, 
2104         to use the canonical {var,value}_to_string functions
2105
2106 Thu Nov 11 21:01:31 WST 2004 John Darrington <john@darrington.wattle.id.au>
2107
2108         * examine.q cartesian.c chart.[ch]   Added normal and detrended normal
2109         plots.  Changed the API of the cartesian plot to be a much lower level
2110         thing.
2111
2112 Sun Nov  7 17:25:04 WST 2004 John Darrington <john@darrington.wattle.id.au>
2113
2114         * examine.q Added some of the parametric calculations
2115
2116         * factor_stats.[ch]  Created
2117         
2118 Sat Nov  6 21:24:31 WST 2004 John Darrington <john@darrington.wattle.id.au>
2119
2120         * examine.q  Changed the definition of factors to be a composite, and
2121         dealt with the consequences.
2122
2123 Sat Nov  6 20:40:38 WST 2004 John Darrington <john@darrington.wattle.id.au>
2124
2125         * examine.q Fixed problem where examine wasn't dealing properly with 
2126         splits
2127
2128 Sat Nov  6 14:49:47 WST 2004 John Darrington <john@darrington.wattle.id.au>
2129
2130         * oneway.q Fixed problem where oneway wasn't dealing properly with 
2131         splits
2132
2133 Thu Nov  4 11:09:01 WST 2004 John Darrington <john@darrington.wattle.id.au>
2134
2135         * q2c.c examine.q  Fixed a bug (feature?) whereby arrays in the
2136         command which had settings didn't get the appropriate code
2137         generated.
2138
2139         * val.h value-labels.[ch] var-labs.c Added v*to_string functions
2140         to convert variables/values to strings.
2141
2142         * examine.q  Added framework for the EXAMINE command.
2143
2144 Mon Nov  1 12:46:17 WST 2004 John Darrington <john@darrington.wattle.id.au>
2145
2146         * q2c.c frequencies.q set.q t-test.q  Fixed the q2c parsing of DBL 
2147         subcommand types.  Changed frequencies.q to use it rather then the 
2148         custom parser.  Dealt with the consequences.  Added a test for NTILES
2149         subcommand of frequencies.
2150
2151 Sat Oct 30 09:16:29 WST 2004 John Darrington <john@darrington.wattle.id.au>
2152
2153         * oneway.q   Fixed up the behaviour when given missing values
2154
2155         * levene.c oneway.q Fixed a buglet with the levene statistic and
2156         incorporated the levene test into the oneway command.
2157
2158         * group.h  t-test.q  Moved the CMP_EQ and CMP_LE symbols out of 
2159         global scope, since they're only relevant to T-TEST
2160
2161 Fri Oct 29 17:39:03 WST 2004 John Darrington <john@darrington.wattle.id.au>
2162
2163         * group.c group.h group_proc.h levene.c oneway.q t-test.q
2164
2165         Made the t-test more consistent
2166         with the way it handles groups.  That is, it now uses a hash instead
2167         of an array of 2.  Also, made the levene.c file independent of the 
2168         implementation of the t-test.  So now levene should be fine for both
2169         t-test and anova.
2170
2171         * Added an oneway.q file for one way anova
2172
2173 Wed Jun  2 22:08:02 2004  Ben Pfaff  <blp@gnu.org>
2174
2175         * descript.c: (cmd_descriptives) Remove harmless but bogus test in
2176         STATISTICS parsing.
2177
2178 Mon May 31 20:45:24 2004  Ben Pfaff  <blp@gnu.org>
2179
2180         Fix memory leaks.
2181
2182         * data-list.c: (cmd_data_list) Free dls->delims on lossage.
2183         (data_list_trns_free) Free dls->delims.
2184
2185         * t-test.q: (tts_custom_pairs) Free vars.
2186         (ssbox_one_sample_init) Fix tab_vline() argument.
2187         (ssbox_independent_samples_init) Ditto.
2188         (trbox_paired_init) Ditto.
2189         (trbox_one_sample_init) Ditto.
2190
2191 Mon May 31 17:19:27 2004  Ben Pfaff  <blp@gnu.org>
2192
2193         Generalize casefiles to the extent that we can use them for
2194         sorting and other kinds of data transformations.  Change cases to
2195         be copy-on-write to improve memory efficiency in common cases.
2196         Every access to a member of a `struct ccase' was changed to be a
2197         call to a case_*() function, especially case_data(), case_num(),
2198         case_str(), or case_data_rw().  Many instances of a local variable
2199         named "case_num" were changed to "case_idx" as a consequence.
2200         Many `struct ccase *' were changed to actual `struct ccase'
2201         because of copying semantics of cases.  In several places there
2202         was a choice between updating debug code to work with the new ADTs
2203         or just deleting it because it was useless; I chose to delete it.
2204  
2205         * Makefile.am: (pspp_SOURCES) Add case.c, case.h.
2206
2207         * case.c: New file.
2208
2209         * case.h: New file.
2210
2211         * aggregate.c: (struct agr_proc) Change type of `sort' to
2212         sort_criteria *.  Add `break_vars', `break_var_cnt' members.
2213         Rename `vars' to `agr_vars', all references updated.  Change
2214         `agr_case' to type `struct ccase'.
2215         (cmd_aggregate) Deal with new members.  Use case_create(),
2216         sort_active_file_in_place(), sort_active_file_to_casefile().
2217         (agr_destroy) Deal with new members.
2218         (aggregate_single_case) Ditto.
2219         (dump_aggregate_info) Ditto.
2220         (initialize_aggregate_info) Ditto.
2221         (agr_to_active_file) Ditto.
2222         (presorted_agr_to_sysfile) Ditto.
2223         (sort_agr_to_sysfile) Removed.
2224
2225         * alloc.c: (out_of_memory) Make non-static.
2226
2227         * alloc.h: Prototype out_of_memory().
2228
2229         * casefile.c: Switched from a linked list in-memory representation
2230         to a two-level array-style representation.  The linked list was
2231         appropriate when we could stick a header onto cases, but that's no
2232         longer the case.  Also, the two-level array will allow for random
2233         in-memory access in case that's ever wanted.  Also added the
2234         concept of a `destructive casereader', one that destroys cases in
2235         the underlying casefile as they are read out.
2236         (macro CASES_PER_BLOCK) New macro.
2237         (struct casefile) New members `value_cnt', `case_list_size',
2238         `case_acct_size', `being_destroyed', `cases'.  Removed `head',
2239         `tail'.
2240         (struct casereader) Removed `cur'.  Added `destructive', `c'.
2241         (global var casefiles) Made static.
2242         (static var case_bytes) New var.
2243         (casefile_create) Takes a value count, not a case size in bytes,
2244         to conform to the case interface.  All callers updated.  Deal with
2245         new and removed members.
2246         (casefile_destroy) Deal with new and removed members.
2247         (casefile_sleep) New function.
2248         (casefile_get_case_size) Removed.
2249         (casefile_get_value_cnt) New function.
2250         (casefile_append) Rewritten to deal with new and removed members.
2251         (casefile_append_xfer) New function.
2252         (write_case_to_disk) Use case_serialize().
2253         (call_posix_fadvise) Removed because posix_fadvise64 segfaults.
2254         Couldn't figure out why.
2255         (casefile_to_disk) Don't call call_posix_fadvise.  Rewritten to
2256         deal with new and removed members.
2257         (merge) Removed.
2258         (merge_sort) Removed.
2259         (casefile_sort) Removed.
2260         (casefile_get_reader) Deal with new and removed members.
2261         (casefile_get_destructive_reader) New function.
2262         (reader_open_file) Make code more readable.  Create case for
2263         reader.
2264         (casereader_get_casefile) New function.
2265         (casereader_read) Deal with new and removed members.  Now returns
2266         a copy of the case, so that the caller is responsible for
2267         destroying the returned case.
2268         (casereader_read_xfer) New function.
2269         (casereader_destroy) Destroy reader's case.
2270         (test_casefile) Second arg is now a value count, all callers
2271         updated.  Now tests destructive readers too.
2272         (get_random_case) Deal with new case ADT.
2273         (write_random_case) Ditto.
2274         (read_and_verify_random_case) Ditto.
2275
2276         * crosstabs.q: Remove debug code.
2277
2278         * descript.q: (calc_descriptives) Deal with new case, casefile
2279         ADTs.
2280
2281         * dfm.c: (cmd_begin_data) There's no storage_source_class anymore.
2282
2283         * do-if.c: Remove unneeded header inclusion.
2284
2285         * expr-prs.c: Remove debug code.
2286
2287         * exprP.h: Remove debug code.
2288
2289         * flip.c: (flip_file) Use fseeko() if available.
2290
2291         * formats.c: Remove debug code.
2292
2293         * get.c: Remove debug code.
2294         (struct mtf_file) Change `input' from `union value *' to `struct
2295         ccase', all references updated.
2296
2297         * levene.c: (levene) Deal with new case, casefile ADTs.
2298
2299         * list.q: Remove debug code.
2300
2301         * loop.c: Remove debug code.
2302         
2303         * matrix-data.c: Remove debug code.
2304
2305         * means.q: Remove debug code.
2306
2307         * mis-val.c: Remove debug code.
2308
2309         * pfm-read.c: Remove debug code.
2310         (pfm_read_code) Change second arg from `union value *' to `struct
2311         ccase *', all references updated.
2312
2313         * recode.c: (string_to_long) Make first arg const.
2314         (convert_to_double) Ditto.
2315
2316         * repeat.c: Remove debug code.
2317
2318         * sample.c: Remove debug code.
2319
2320         * sfm-read.c: Remove debug code.
2321         (sfm_read_case) Change second arg from `union value *' to `struct
2322         ccase *'.
2323
2324         * sort.c: Redone in terms of casefiles.
2325         (enum sort_direction) Moved here from sort.h.
2326         (struct sort_criterion) New structure.
2327         (struct sort_criteria) New structure.
2328         (cmd_sort_cases) Rewritten.
2329         (prepare_to_sort_active_file) New function.
2330         (sort_active_file_in_place) New function.
2331         (sort_active_file_to_casefile) New function.
2332         (parse_sort) Renamed sort_parse_criteria(), rewritten & interface
2333         changed, all callers updated.
2334         (destroy_sort_cases_pgm) Renamed sort_destroy_criteria(),
2335         rewritten & interface changed, all callers updated.
2336         (sort_cases) Renamed sort_execute(), rewritten & interface
2337         changed, all callers updated.
2338         (struct internal_sort) Removed.
2339         (do_internal_sort) Rewritten, interface changed.
2340         (destroy_internal_sort) Removed.
2341         (compare_case_dblptrs) Use sort_criteria instead of sort_case_pgm.
2342         (struct initial_run) Removed; an initial run is now just a
2343         casefile.
2344         (compare_initial_runs) Rewritten.
2345         (struct external_sort) Changed almost completely.
2346         (do_external_sort) Rewritten, interface changed.
2347         (destroy_external_sort) Rewritten.
2348         [HAVE_MKDTEMP] (make_temp_dir) Removed.
2349         [!HAVE_MKDTEMP] (do_mkdir) Removed.
2350         [!HAVE_MKDTEMP] (make_temp_dir) Removed.
2351         (init_external_sort) Removed.
2352         (simulate_error) Removed.
2353         (rmdir_temp_dir) Removed.
2354         (get_temp_file_name) Removed.
2355         (open_temp_file) Removed.
2356         (close_temp_file) Removed.
2357         (remove_temp_file) Removed.
2358         (write_temp_file) Removed.
2359         (read_temp_file) Removed.
2360         (struct record_run) Change `record' from `struct case_lit *' to
2361         `struct ccase'.
2362         (struct initial_run_state) Remove `idx_to_fv', `free_list',
2363         `file_idx', `output_file'.  Add `run', casefile'.  Change
2364         `last_output' from `struct case_list *' to `struct ccase'.
2365         (write_initial_runs) Change interface, rewrite.
2366         (sort_sink_write) Renamed process_case(), changed interfaced,
2367         rewrote.
2368         (destroy_initial_run_state) Rewritten.
2369         (allocate_cases) Rewritten.
2370         (compare_record) Interface changed, rewritten.
2371         (start_run) Rewritten.
2372         (end_run) Rewritten.
2373         (output_record) Rewritten.
2374         (grab_case) Removed.
2375         (release_case) Removed.
2376         (struct merge_case) Change `cases' from double pointer to single
2377         pointer.
2378         (merge) Deal with new case and casefile ADTs.
2379         (struct run) Removed.
2380         (merge_once) Rewritten, interface changed.
2381         (fill_run_buffer) Removed.
2382         (sort_sink_make_source) Removed.
2383         (sort_sink_class) Removed.
2384         (struct sort_source_aux) Removed.
2385         (sort_source_read_helper) Removed.
2386         (sort_source_read) Removed.
2387         (read_sort_output) Removed.
2388         (read_internal_sort_output) Removed.
2389         (read_external_sort_output) Removed.
2390         (sort_source_destroy) Removed.
2391         (sort_source_class) Removed.
2392
2393         * sort.h: (struct sort_cases_pgm) Removed.
2394         (enum sort_direction) Moved to sort.c.
2395
2396         * t-test.q: (calculate) Deal with new case, casefile ADTs.
2397
2398         * tab.c: Remove debug code.
2399
2400         * var-labs.c: Remove debug code.
2401
2402         * var.h: (struct ccase) Removed.
2403         (struct case_list) Removed.
2404
2405         * vars-atr.c: (discard_variables) Use free_case_source().
2406
2407         * vars-prs.c: (parse_vs_variable) Make arg const.
2408         (parse_dict_variable) Ditto.
2409         (parse_variables) Make struct dictionary * arg const.
2410         (parse_var_set_vars) Make struct var_set * arg const.
2411         (struct var_set) Add const to some of the function pointers' args.
2412         (var_set_get_cnt) Make arg const.
2413         (var_set_get_var) Make first arg const.
2414         (var_set_lookup_var) Make first arg const.
2415         (dict_var_set_get_cnt) Make arg const.
2416         (dict_var_set_get_var) Make first arg const.
2417         (dict_var_set_lookup_var) Make first arg const.
2418         (var_set_create_from_dict) Make arg const.  Add cast to aux
2419         assignment.
2420         (struct array_var_set) Add const to var member.
2421         (array_var_set_get_cnt) Make arg const.
2422         (array_var_set_get_var) Make first arg const.
2423         (array_var_set_lookup_var) Make first arg const.
2424         (var_set_create_from_array) Make first arg const.  Insert cast.
2425
2426         * vfm.c: (struct write_case_data) Change trns_case, sink_case
2427         members from `struct ccase *' to `struct ccase'.
2428         (static var lag_queue) Change from double to single pointer.
2429         (procedure) Optimize trivial case.
2430         (internal_procedure) Deal with changed case, case_source ADTs.
2431         (create_trns_case) Changed interface, rewrote.
2432         (open_active_interface) Initialize modified lag queue.
2433         (write_case) Deal with changed case ADT.
2434         (lag_case) Deal with modified lag queue.
2435         (close_active_file) Destroy modified lag queue.
2436         Deal with changed case_source, case_sink ADTs.
2437         (destroy_storage_stream_info) Make null arg into no-op.
2438         (storage_sink_make_source) Set aux in created source.
2439         (storage_source_read) Deal with changed case, casefile ADTs.
2440         (storage_source_create) New function.
2441         (lagged_case) Rewrite.
2442         (free_case_source) New function.
2443         (free_case_sink) Rewrite.
2444         (struct split_aux_data) Changed prev_case from `struct ccase *' to
2445         `struct ccase'.
2446         (procedure_with_splits) Deal with changed prev_case.
2447         (procedure_with_splits_callback) Ditto.
2448         (multipass_split_aux_data) Changed prev_case from `struct ccase *' to
2449         `struct ccase'.
2450         (multipass_procedure_with_splits) Deal with changed prev_case.
2451         (multipass_split_callback) Ditto.
2452         
2453         
2454 Mon May 31 17:19:06 2004  Ben Pfaff  <blp@gnu.org>
2455
2456         The workspace idea didn't work out.
2457
2458         * Makefile.am: (pspp_SOURCES) Remove workspace.c, workspace.h.
2459         
2460         * workspace.c: Removed.
2461
2462         * workspace.h: Removed.
2463
2464 Sun May 30 18:35:19 2004  Ben Pfaff  <blp@gnu.org>
2465
2466         Fully implement arbitrary delimiters on DATA LIST, extending the
2467         half implementation that was already there.
2468
2469         * data-list.c: (struct data_list_pgm) Remove `delim', add
2470         `delims', `delim_cnt'.
2471         (cmd_data_list) Initialize new members.  Parse delimiters and
2472         clean up code a bit.
2473         (cut_field) Extract fields with arbitrary delimiters.  Also, fix
2474         handling of leading commas.
2475         (read_from_data_list_fixed) Expand tabs.  Adapt to new DFM
2476         interfaces.
2477         (read_from_data_list_free) Adapt to new DFM interfaces.
2478         (read_from_data_list_list) Ditto.
2479         (repeating_data_trns_proc) Ditto.
2480
2481         * dfm.c: Split up reader and writer into separate code, because
2482         they do different things.  Use struct string instead of explicit
2483         allocation code, for clarity.
2484         (enum dfm_reader_flags) New enum.
2485         (struct dfm_fhuser_ext) Removed.
2486         (struct dfm_reader_ext) New.
2487         (get_reader) New function, used by just about all the reader
2488         functions.
2489         (dfm_close) Removed.
2490         (close_reader) New function.
2491         (dfm_open_for_reading) Rewrite initialization of dfm_fhuser_ext.
2492         (dfm_open_for_writing) Ditto.
2493         (macro force_line_buffer_expansion) Removed.
2494         (count_tabs) Removed.
2495         (tabs_to_spaces) Removed.
2496         (read_record) Deal with new dfm_reader_ext.  Use struct string
2497         functions.  Don't convert tabs to spaces.
2498         (dfm_eof) New function.
2499         (dfm_get_record) Changed interface, rewrote.
2500         (dfm_expand_tabs) New function.
2501         (dfm_fwd_record) Renamed dfm_forward_record(), updated to new
2502         dfm_reader_ext, rewritten.
2503         (dfm_bkwd_record) Renamed dfm_reread_record(), updated to new
2504         dfm_reader_ext, rewritten.
2505         (dfm_set_record) Removed in favor of dfm_forward_columns().
2506         (dfm_forward_columns) New function.
2507         (dfm_get_cur_col) Renamed dfm_column_start, updated to new
2508         dfm_reader_ext, rewritten.
2509         (static var dfm_r_class) Use close_reader for the destructor.
2510         (struct dfm_writer_ext) New.
2511         (dfm_put_record) Updated to new dfm_writer_ext, rewritten.  Uses
2512         bounce buffer now instead of local allocation.
2513         (close_writer) New function.
2514         (static var dfm_writer_ext) Use close_writer for destructor.
2515         (cmd_begin_data) Adapt to new dfm_reader_ext.
2516
2517         * file-handle.q: Add support for per-file tab width.
2518         (struct private_file_handle) Add tab_width member.
2519         (q2c specifications) Add tabwidth subcommand.
2520         (cmd_file_handle) Put parsed tab width into private_file_handle.
2521         (create_file_handle) Set default tab width.
2522         (handle_get_tab_width) New function.
2523
2524         * file-type.c: (file_type_source_read) Adapt to new DFM interface.
2525
2526         * inpt-pgm.c: (reread_trns_proc) Ditto.
2527
2528         * matrix-data.c: (context) Ditto.
2529         (another_token) Ditto.
2530         (mget_token) Ditto.
2531         (force_eol) Ditto.
2532
2533 Sun May 30 18:33:59 2004  Ben Pfaff  <blp@gnu.org>
2534
2535         * casefile.c: (casefile_destroy) Fix memory leak by freeing
2536         cf->filename.
2537         (casereader_destroy) Don't close file descriptor -1.
2538
2539         * recode.c: (cmd_recode) Fix memory leak.
2540
2541         * set.q: (q2c specifications) Fix typo in user message.
2542
2543         * str.c: (st_bare_pad_len_copy) Change memcpy to memmove to avoid
2544         undefined behavior for overlapping arguments.
2545
2546 Sun May 30 18:31:48 2004  Ben Pfaff  <blp@gnu.org>
2547
2548         * casefile.c: valgrind doesn't implement posix_fadvise() yet, so
2549         don't call it when we're running under valgrind.
2550         (call_posix_fadvise) New function.
2551         (casefile_to_disk) Use call_posix_fadvise().
2552         (reader_open_file) Ditto.
2553         
2554 Sun May 30 18:20:12 2004  Ben Pfaff  <blp@gnu.org>
2555
2556         Update our string ADTs, struct string and struct len_string.  Get
2557         rid of pool support, which was largely unused.  Rename lots of
2558         functions to have more obvious or consistent names.
2559         
2560         * ascii.c: Get rid of ascii_pool.  It was only used for string
2561         allocations.
2562         (ascii_open_global) Don't create ascii_pool.
2563         (ascii_close_driver) Don't destroy ascii_pool.
2564         (ascii_postopen_driver) Don't use pool.
2565         (ascii_close_driver) Destroy strings manually.
2566
2567         * str.c: (ds_create) Remove pool argument, all references updated.
2568         (ds_init) Ditto.
2569         (ds_replace) Remove pool support, make more efficient when we
2570         don't need to reallocate.
2571         (ds_destroy) Remove pool support.
2572         (ds_rpad) New function.
2573         (ds_size) Renamed ds_capacity(), all references updated.
2574         (ds_value) Renamed ds_c_str(), all references updated.
2575         (ds_concat) Renamed ds_puts(), all references updated.
2576         (ds_concat_buffer) Renamed ds_concat(), all references updated.
2577         (ds_putchar) Renamed ds_putc(), all references updated.
2578         (ds_getline) Renamed ds_gets(), all references updated.
2579         (ls_create) Remove pool argument, all references updated.
2580         (ls_create_buffer) Ditto.
2581         (ls_destroy) Removed pool support.
2582         (ls_value) Renamed ls_c_str(), all references updated.
2583
2584         * str.h: (ls_length) [__GNUC__] Add inline version.
2585         (ls_c_str) [__GNUC__] Add inline version.
2586         (ls_end) [__GNUC__] Add inline version.
2587         (struct string) Remove pool member.  Rename `size' to `capacity',
2588         all references updated.
2589
2590         * tab.c: (text_format) Instead of using pool argument to
2591         ls_create_buffer(), call pool_register() on allocated data.
2592
2593 Mon Apr 26 22:40:07 2004  Ben Pfaff  <blp@gnu.org>
2594
2595         We're abusing the current ASCII driver by telling it to allocate a
2596         9999-line, 9999-character page in the tests.  This causes some
2597         systems to curl up and die because it allocates 20 MB of
2598         contiguous RAM.  This change alleviates at least part of the
2599         problem.  It is mostly a stop-gap until the new output system is
2600         ready.
2601         
2602         * ascii.c: (struct line) New structure.
2603         (struct ascii_driver_ext) Remove `page', `page_size', `line_len',
2604         `line_len_size', `n_output' members.  Add `lines', `lines_cap'.
2605         (ascii_preopen_driver) Initialize new members, not old ones.
2606         (ascii_close_driver) Destroy new members, not old ones.
2607         (ascii_open_page) Allocate new members, not old ones.
2608         (expand_line) Allocate room in line.
2609         (draw_line) Use new members.
2610         (ascii_line_horz) Ditto.
2611         (ascii_line_vert) Ditto.
2612         (ascii_line_intersection) Ditto.
2613         (text_draw) Ditto.
2614         (output_lines) Ditto.
2615         (ascii_close_page) Ditto.
2616
2617 Sun Apr 25 23:40:15 2004  Ben Pfaff  <blp@gnu.org>
2618
2619         * matrix.c: Dead code.  Removed.
2620
2621         * matrix.h: Dead code.  Removed.
2622
2623 Fri Apr 16 23:59:51 2004  Ben Pfaff  <blp@gnu.org>
2624
2625         Contrary to what I'd always understood, there is an efficient
2626         algorithm for deletion from a hash table populated via linear
2627         probing.  This change implements it.
2628         
2629         * hash.c: (hsh_rehash) Probe in increasing order.
2630         (hsh_probe) Ditto.
2631         (locate_matching_entry) Ditto.
2632         (hsh_delete) Use Knuth's Algorithm 6.4R for deletion.
2633
2634 Tue Apr 13 19:24:15 2004  Ben Pfaff  <blp@gnu.org>
2635
2636         * moments.c (calc_moments): Adjust calculation of kurtosis to
2637         avoid subtracting huge numbers from huge numbers, on Michael
2638         Kiefte's advice.
2639
2640 Sun Apr 11 14:22:12 2004  Ben Pfaff  <blp@gnu.org>
2641
2642         Rework moments routines for improved numerical stability based on
2643         Michael Kiefte's advice.  Any bugs or remaining numerical problems
2644         are still mine though.
2645
2646         There is now a struct moments1 for use with one-pass moments.  It
2647         uses a provisional means algorithm as an attempt to improve
2648         accuracy of higher moments.  The older struct moments now only
2649         handles two-pass moments.
2650         
2651         * aggregate.c: Use moments1 instead moments.
2652
2653         * descript.c: Revert previous change, which is no longer needed
2654         due to the moments revision.
2655
2656         * moments.c: (calc_moments) New function for calculating variance,
2657         skewness, kurtosis.
2658         (moments_pass_one) Only accumulate weights bigger than zero.
2659         (moments_calculate) Allow calculating the mean on pass one, others
2660         require pass two.  Implement in terms of calc_moments().
2661         (struct moments1) New structure.
2662         (init_moments1) New function.
2663         (moments1_clear) Ditto.
2664         (moments1_create) Ditto.
2665         (moments1_add) Ditto.
2666         (moments1_calculate) Ditto.
2667         (moments1_destroy) Ditto.
2668         (cmd_debug_moments) Deal with `struct moments' or `struct
2669         moments1' as requested by user.
2670
2671 Sun Apr 11 14:21:55 2004  Ben Pfaff  <blp@gnu.org>
2672
2673         * Makefile.am (pspp_SOURCES): Remove debug.c.
2674
2675         * debug.c: Removed.  It was empty anyway.
2676
2677 Fri Apr  9 20:04:49 2004  Ben Pfaff  <blp@gnu.org>
2678
2679         * descript.c (calc_descriptives): Fix assert failure when only
2680         MOMENT_MEAN is needed.
2681
2682 2004-04-09  Michael Kiefte  <mkiefte@dal.ca>
2683
2684         * descript.c: 
2685
2686         fixed problem with parsing in match_statistic() causing
2687         "DESCRIPTIVE STAT=MEAN." to barf.
2688
2689         "MEAN" is now default if "SORT" given without specification.
2690
2691         Fixed infinite loop with "DESCRIPT GIBBERISH=ALL."  Parsing is
2692         generally less forgiving of syntax errors: better to have it do
2693         nothing and type it in again then to not know what it actually did
2694         instead.  
2695
2696         z-score transformation now checks score for user-missing values
2697         and checks std_dev for SYSMIS.
2698
2699 2004-04-06  Michael Kiefte  <mkiefte@dal.ca>
2700
2701         * aggregate.c, crosstabs.q, descript.c, dictionary.c, frequencies.q, levene.c, t-test.q, var.h: 
2702         Changed dict_get_case_weight() to accept an additional int * flag
2703         to complain about system-missing, user-missing, zero, or negative
2704         weights and updated existing functions to pass int * to
2705         dict_get_case_weight().
2706
2707 2004-04-05  jmd  <jmd@gnu.org>
2708
2709         * main.c: Fixed configuration problems with gsl
2710
2711         * t-test.q: Fixed some problems encountered when compiling under Cygwin
2712
2713 2004-04-03  blp  <blp@gnu.org>
2714
2715         * lexer.c, ChangeLog:
2716         Fix infinite loop on comment at end of file, add test.
2717
2718 2004-04-03  jmd  <jmd@gnu.org>
2719
2720         * 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:
2721         Fixed the calculation of percentiles and added --syntax and --algorithm options
2722
2723 Sat Apr  3 11:43:37 2004  Ben Pfaff  <blp@gnu.org>
2724
2725         * lexer.c: (lex_skip_comment) Handle end-of-file correctly (I
2726         hope).
2727
2728 Sat Apr  3 15:00:18 WST 2004 John Darrington <john@darrington.wattle.id.au>
2729
2730         * frequencies.q:  Fixed the calculation of percentiles
2731
2732         * Makefile.am:  Added the --ansi flag and dealt with the
2733         consequences.  Added some entries to PSPP_sources so that
2734         make distcheck would pass
2735
2736         * cmdline.c:   Added the --syntax and --algorithm options
2737
2738         * q2c.c:  Added an implicit /ALGORITHM subcommand to everything.
2739
2740 Fri Apr  2 11:25:22 WAST 2004 John Darrington <john@darrington.wattle.id.au>
2741
2742         * t-test.q, levene.c, levene.h  Converted t-test (incl levene) to 
2743         use the new multipass_split_... mechanism.
2744
2745 Wed Mar 31 22:36:22 2004  Ben Pfaff  <blp@gnu.org>
2746
2747         * frequencies.q: (calc_stats) Use moments data structure and
2748         calc_seskew(), calc_sekurt() functions.
2749
2750         * set.q main.c settings.h Added support for --syntax and --algorithm 
2751         options
2752
2753 Tue Mar 30 22:04:19 2004  Ben Pfaff  <blp@gnu.org>
2754
2755         * vfm.c: Had to get last call to multipass_split_output() inside
2756         open_active_file()/close_active_file() pairing, so introduce new
2757         function.
2758         (internal_procedure) Move procedure() code here, except for calls
2759         to open_active_file() and close_active_file().
2760         (procedure) Wrap open_active_file() and close_active_file() around
2761         internal_procedure().
2762         (multipass_procedure_with_splits) Wrap open_active_file() and
2763         close_active_file() around internal_procedure().
2764
2765 Tue Mar 30 22:01:57 2004  Ben Pfaff  <blp@gnu.org>
2766
2767         * descript.c: (cmd_descriptives) Free `vars' to avoid memory leak.
2768
2769 Mon Mar 29 16:26:40 2004  Ben Pfaff  <blp@gnu.org>
2770
2771         * debug.c: Removed.  Moved cmd_debug_evaluate() into expr-evl.c.
2772
2773         * expr-evl.c: (cmd_debug_evaluate) Moved here from debug.c.
2774
2775 Mon Mar 29 16:03:08 2004  Ben Pfaff  <blp@gnu.org>
2776
2777         * algorithm.c: By default turn off some of the more expensive
2778         assertions.
2779         (expensive_assert) New macro which expands to assert if
2780         EXTRA_CHECKS is defined, to nothing otherwise.
2781         (unique) Use expensive_assert().
2782         (binary_search) Ditto.
2783         (push_heap) Ditto.
2784         (pop_heap) Ditto.
2785         (make_heap) Ditto.
2786         (sort_heap) Ditto.
2787
2788         * command.c: (conflicting_3char_prefixes) Words that are the same
2789         don't cause conflicts when they are abbreviated to the first three
2790         letters.
2791
2792         * expr-evl.c: (CONCAT_func) Fix memory leak by incrementing struct
2793         nonterm_node's n earlier.
2794         (generic_str_func) Ditto.
2795         
2796 Mon Mar 29 15:32:17 2004  Ben Pfaff  <blp@gnu.org>
2797
2798         Add support for multipass procedures.  Rewrite DESCRIPTIVES to
2799         test multipass support, take advantage of new moments
2800         calculation, and to not be such crappy code.  Get rid of q2c
2801         processing for DESCRIPTIVES.
2802
2803         * vfm.c: (struct multipass_split_aux_data) New structure.
2804         (multipass_procedure_with_splits) New function.
2805         (multipass_split_callback) New function.
2806         (multipass_split_output) New function.
2807         * descript.q: Removed.
2808
2809         * descript.c: New file.
2810
2811         * var.h: Removed descriptives enums.
2812         (struct descriptives_proc) Removed.
2813         (struct variable) Removed p.dsc.
2814
2815         * Makefile.am: (q_sources_c) Remove descript.c.
2816         (q_sources_q) Removed descript.q.
2817         
2818 Mon Mar 29 15:31:55 2004  Ben Pfaff  <blp@gnu.org>
2819
2820         New manager for keeping track of used workspace.
2821         
2822         * workspace.c: New file.
2823
2824         * workspace.h: New file.
2825
2826         * Makefile.am: (pspp_SOURCES) Add workspace.c, workspace.h.
2827
2828         * sort.c: (do_internal_sort) Use workspace_malloc().
2829         (destroy_internal_sort) Use workspace_free().
2830
2831 Mon Mar 29 15:31:08 2004  Ben Pfaff  <blp@gnu.org>
2832
2833         New `struct casefile' for managing sets of cases.
2834
2835         * casefile.c: New file.
2836
2837         * casefile.h: New file.
2838
2839         * command.def: Add DEBUG CASEFILE command.
2840
2841         * Makefile.am: (pspp_SOURCES) Add casefile.c, casefile.h.
2842
2843         * sort.c: (sort_cases) Move logic for sending storage file to disk
2844         into do_external_sort().
2845         (struct internal_sort) Use an array of ccase pointers instead of a
2846         case_list.
2847         (do_internal_sort) Rewrite to handle casefiles.
2848         (compare_case_list) Removed.
2849         (compare_cases) New function.
2850         (compare_case_dblptrs) New function.
2851         (read_internal_sort_output) Deal with new struct internal_sort.
2852
2853         * vfm.c: (static var workspace_overflow) Removed.
2854         (struct storage_stream_info) Removed all the members.  Added
2855         struct casefile * member.
2856         (storage_sink_open) Use casefile.
2857         (open_storage_file) Removed.
2858         (write_storage_file) Removed.
2859         (storage_to_disk) Removed.
2860         (destroy_storage_stream_info) Use casefile.
2861         (storage_sink_write) Use casefile.
2862         (storage_sink_make_source) Use casefile.
2863         (storage_source_count) Use casefile.
2864         (storage_source_read) Use casefile.
2865         (storage_source_on_disk) Removed.
2866         (storage_source_get_cases) Removed.
2867         (storage_source_set_cases) Removed.
2868         (storage_source_get_casefile) New function.
2869         
2870 Mon Mar 29 15:30:09 2004  Ben Pfaff  <blp@gnu.org>
2871
2872         New `struct moments' for calculating moments.
2873
2874         * stats.c: Removed.
2875
2876         * stats.h: Removed.
2877
2878         * moments.c: New file.
2879
2880         * moments.h: New file.
2881
2882         * command.def: Add DEBUG MOMENTS command.
2883
2884         * Makefile.am: (pspp_SOURCES) Add moments.c, moments.h.  Remove
2885         stats.c, stats.h.
2886
2887         * aggregate.c: Modify AGGREGATE to use the new moments
2888         calculation, even if not in such a great way.
2889         (struct agr_var) Add `moments' member.
2890         (parse_aggregate_functions) Set `moments' member to null.
2891         (agr_destroy) Destroy `moments' member.
2892         (accumulate_aggregate_info) Use `moments' for standard deviation.
2893         (dump_aggregate_info) Ditto.
2894         (initialize_aggregate_info) Create or clear `moments'.
2895
2896         * misc.h: Add pow2(), pow3(), pow4() functions in place of sqr(),
2897         cube(), pow4() that were in stats.h.  All references updated.
2898
2899         * crosstabs.q: stats.h had chi-square significance functions.  Use
2900         GSL instead.
2901         (display_chisq) Use gsl_cdf_chisq_Q() instead of chisq_sig().
2902
2903         * expr-evl.c: (expr_evaluate) Use moments_of_values() for
2904         OP_CFVAR, OP_MEAN, OP_SD, OP_VARIANCE.
2905                 
2906 Fri Mar 26 14:21:23 2004  Ben Pfaff  <blp@gnu.org>
2907
2908         * dictionary.c: (dict_compact_values) Compacted values need to
2909         start off from 0.
2910
2911 Fri Mar 26 00:54:57 2004  Ben Pfaff  <blp@gnu.org>
2912
2913         * var-labs.c: (cmd_variable_labels) For compatibility, don't allow
2914         `/' at start.  Check return value of parse_variables() for error
2915         return.
2916
2917 Fri Mar 26 00:19:27 2004  Ben Pfaff  <blp@gnu.org>
2918
2919         Revamp expressions: make the code a little nicer, and fix bugs
2920         found in testing.
2921         
2922         * expr-evl.c: (expr_evaluate) Make expression argument const.
2923         Support OP_ADD, OP_SUB, OP_MUL, OP_DIV instead of OP_PLUS, OP_MUL.
2924         OP_POW is missing for arg 2 <= 0.  OP_LOG is natural log, not
2925         base-10 log.  Fix OP_ANY, OP_ANY_STRING, OP_RANGE, OP_RANGE_STRING
2926         off-by-ones.  Add OP_MAX_STRING, OP_MIN_STRING.  Fix OP_TIME_HMS,
2927         OP_DATE_WKYR boundary conditions.  Add OP_CTIME_DAYS,
2928         OP_CTIME_HOURS, OP_CTIME_MINUTES, OP_CTIME_DAYS, OP_CTIME_SECONDS.
2929         Support OP_INDEX_2, OP_INDEX_3, OP_RINDEX_2, OP_RINDEX_3 instead
2930         of OP_INDEX, OP_INDEX_OPT, OP_RINDEX, OP_RINDEX_OPT.  Merge
2931         OP_LPAD_OPT into OP_LPAD, OP_RPAD_OPT into OP_RPAD, OP_LTRIM_OPT
2932         into OP_LTRIM, OP_RTRIM_OPT into OP_RTRIM, OP_NUMBER_OPT into
2933         OP_NUMBER.  Fix OP_RTRIM fragility.  Support OP_SUBSTR_2,
2934         OP_SUBSTR_3 instead of OP_SUBSTR, OP_SUBSTR_OPT.  Remove OP_INV.
2935         Simplify OP_SYSMIS.  Remove OP_STR_MIS.
2936
2937         * expr-opt.c: (optimize_expression) Rewrite.
2938         (macro n0) Removed.
2939         (macro n1) Removed.
2940         (macro n2) Removed.
2941         (macro s0) Removed.
2942         (macro s0l) Removed.
2943         (macro s1) Removed.
2944         (macro s1l) Removed.
2945         (macro s2) Removed.
2946         (macro s2l) Removed.
2947         (macro s) Removed.
2948         (macro sl) Removed.
2949         (eq_num_con) New function.
2950         (optimize_tree) New function.
2951         (macro rnc) Removed.
2952         (macro frnc) Removed.
2953         (str_search) Add const to string params.
2954         (str_rsearch) Ditto.
2955         (evaluate_tree_no_missing) Renamed from evaluate_tree.  Add num[],
2956         str[], str_len[] locals to substitute for most of removed macros.
2957         Support OP_ADD, OP_SUB, OP_MUL, OP_DIV instead of OP_PLUS, OP_MUL.
2958         Removed support for missing values because we're never called with
2959         missing values.  Use set_number() or set_number_errno() instead of
2960         rnc or frnc.  Removed any stuff that caused trouble in testing.
2961         We can re-add it later if it really slows anything.  Fix some
2962         random problems.
2963         (evaluate_tree_with_missing) Not yet supported.  To be added later
2964         if it's important.
2965         (repl_num_con) Removed.
2966         (collapse_node) New function.
2967         (force_repl_num_con) Removed.
2968         (set_number) New function.
2969         (set_number_errno) New function.
2970         (repl_str_con) Removed.
2971         (set_string) New function.
2972         (yrmoda) Tighten boundary conditions.  Adopt 2030 cut-off for
2973         2-digit years.
2974         (dump_node) No special case for OP_AND, OP_OR.
2975
2976         * expr-prs.c: (expr_prs) Honor EXPR_NO_OPTIMIZE bit.  Rewrite.
2977         (expr_get_type) New function.
2978         (type_check) Rewrite.
2979         (type_coercion) New function.
2980         (struct operator) New structure.
2981         (match_operator New function.
2982         (parse_binary_operators) New function.
2983         (parse_inverting_unary_operator) New function.
2984         (parse_or) Rewritten.
2985         (parse_and) Rewritten.
2986         (parse_not) Rewritten.
2987         (parse_rel) Rewritten.
2988         (parse_add) Rewritten.
2989         (parse_mul) Rewritten.
2990         (parse_neg) Rewritten.
2991         (parse_exp) Rewritten.
2992         (parse_sysvar) Add $TRUE, $FALSE system variables.
2993         Get $LENGTH, $WIDTH from get_viewlength(), get_viewwidth().
2994         (parse_primary) Use allocate_var_node(), allocate_num_con(),
2995         allocate_str_con().
2996         (struct function) Remove desc, change `func' prototype.
2997         (unary_func) Remove special cases.
2998         (MISSING_func) Reduce to unary_func() that just returns a boolean.
2999         (SYSMIS_func) Handle SYSMIS((x)) like SYSMIS(x).
3000         (VALUE_func) Use allocate_var_node().
3001         (nary_num_func) Allow MIN and MAX for strings.
3002         Use allocate_var_node().  Properly clean up.
3003         Fix return type.
3004         (generic_str_func) Use local table instead of removed `desc'
3005         member.  Mostly rewrite.
3006         (get_num_args) Revise error message.
3007         (parse_function) Return EXPR_ERROR, not 0 on error.
3008         (macro op) Removed.
3009         (macro varies) Removed.
3010         (ops[]) Use expr.def.
3011         (free_node) Do nothing if node is null.
3012         (allocate_num_con) New function.
3013         (allocate_str_con) New function.
3014         (allocate_var_node) New function.
3015         (allocate_binary_nonterminal) New function.
3016         (append_nonterminal_arg) Removed.
3017         (static var func_tab[]) Revised.
3018         (expr_debug_print_postfix) Make parameter const.
3019         Use printf() instead of debug_printf().
3020
3021         * expr.def: New file.
3022         
3023         * expr.h: Change PXP_* to EXPR_*, all references updated.  Also
3024         use named enum instead of unnamed, all references updated.  Add
3025         EXPR_ANY, EXPR_NO_OPTIMIZE.
3026
3027         * exprP.h: Remove EX_*.  Add DEFINE_OPERATOR.  Use expr.def
3028         instead of defining OP_* directly.
3029         (macro IS_TERMINAL) New macro.
3030         (macro IS_NONTERMINAL) New macro.
3031         (enum OP_NO_FLAGS) New.
3032         
3033 Fri Mar 26 00:18:01 2004  Ben Pfaff  <blp@gnu.org>
3034
3035         * error.c: (err_assert_fail) msg variable needs to be non-const.
3036
3037 Fri Mar 26 00:17:24 2004  Ben Pfaff  <blp@gnu.org>
3038
3039         * debug.c: (cmd_debug_evaluate) Rewrite.
3040
3041 Fri Mar 26 00:15:13 2004  Ben Pfaff  <blp@gnu.org>
3042
3043         Fix some CROSSTABS bit rot stupidity.
3044
3045         * crosstabs.q: Reorder the CELLS subcommands for compatibility.
3046         (internal_cmd_crosstabs) Initializes cells[] correctly.
3047         (float_M_suffix) Rename format_cell_entry(), change prototype,
3048         rewrite.
3049         (display_crosstabulation) Fix cell formatting.
3050
3051 Fri Mar 26 00:14:09 2004  Ben Pfaff  <blp@gnu.org>
3052
3053         Make lex_rest_of_line(), lex_entire_end() not discard lines.  Have
3054         to call lex_discard_line() to do that.
3055
3056         * command.c: (run_command) Call lex_discard_line() after
3057         lex_rest_of_line().
3058
3059         * lexer.c: (lex_entire_end) Change behavior.
3060         (lex_rest_of_line) Change behavior.  Return const char *.
3061         (lex_discard_line) Don't clear getl_buf, don't emit message.
3062
3063         * main.c: (handle_error) Emit message here.
3064
3065         * repeat.c: (internal_cmd_do_repeat) Use lex_discard_line()
3066         instead of lex_entire_line().
3067
3068         * str.c: (mm_find_reverse) Make length params size_t.  Rewrite.
3069
3070         * title.c: (get_title) Call lex_discard_line() after
3071         lex_rest_of_line().
3072         (cmd_file_label) Ditto.
3073         (cmd_document) Deal with const char * return value.
3074
3075 Fri Mar 26 00:10:16 2004  Ben Pfaff  <blp@gnu.org>
3076
3077         Removed REMARK command.
3078
3079         * command.c: (extract_prefix) Removed.
3080         (output_line) Removed.
3081         (cmd_remark) Removed.
3082
3083         * command.def: Remove REMARK.
3084
3085 Fri Mar 26 00:08:38 2004  Ben Pfaff  <blp@gnu.org>
3086
3087         Added abort() after lots of assert(0) invocations to avoid some
3088         compiler warnings.  We really need a NOT_REACHED macro.
3089
3090 Tue Mar 23 08:00:42 WAST 2004 John Darrington <john@darrington.wattle.id.au>
3091
3092         * sort.c: Added missing call to temp_file_close.  Changed error 
3093         messages to warnings.
3094
3095         * set.q: Improved setting of set_view{length,width} to be more tolerant
3096         of buggy OSes.
3097
3098 Sun Mar 21 10:11:14 WST 2004 John Darrington <john@darrington.wattle.id.au>
3099
3100         * val-labs.c: Fixed a bug where PSPP would crash, if VALUE LABELS was
3101         used with incorrect syntax.
3102
3103         * error.c, error.h et al:  Overridden definition of assert for a
3104         custom one.
3105
3106         * test-q.c: Fixed a buglet where it would crash if no /VARIABLES
3107         subcommand was given when it ought to have been.
3108
3109 Sat Mar 20 22:19:08 2004  Ben Pfaff  <blp@gnu.org>
3110
3111         * tab.c: (tab_vline) Fix assertions to respect row_ofs and
3112         col_ofs.
3113         (tab_hline) Ditto.
3114         (tab_box) Ditto.
3115         (tab_joint_text) Ditto.
3116
3117 Sat Mar 20 17:57:23 2004  Ben Pfaff  <blp@gnu.org>
3118
3119         * levene.c: Add #include.
3120
3121         * set.q: (set_viewport) Add `int' argument to make its prototype
3122         correct for signal().
3123
3124 Sat Mar 20 15:35:17 2004  Ben Pfaff  <blp@gnu.org>
3125
3126         * expr-evl.c: (expr_evaluate) Assert that `c' is nonzero before
3127         using it.
3128
3129 Sat Mar 20 15:18:16 2004  Ben Pfaff  <blp@gnu.org>
3130
3131         Changed DFM from open-at-first-access to explicit-open.  Before,
3132         calling dfm_get_record() or dfm_put_record() would automatically
3133         open the file.  Now, you have to call dfm_open_for_reading() or
3134         dfm_open_for_writing() explicitly.  This makes it possible to
3135         check permissions, file existence, etc. earlier.
3136
3137         Also made struct file_handle more opaque, and clean up in general.
3138
3139         * data-list.c: (cmd_data_list) Open handle for reading.
3140
3141         * dfm.c: (struct dfm_fhuser_ext) Add `where', `saw_begin_data'
3142         members.
3143         (open_file_r) Renamed dfm_open_for_reading(), rewrote.
3144         (open_file_w) Renamed dfm_open_for_writing(), rewrote.
3145         (open_inline_file) Removed.
3146         (read_record) For inline_file, if we haven't seen BEGIN DATA, read
3147         it.  Deal with line_number in extension record instead of file
3148         handle.
3149         (dfm_get_record) Rewrote.
3150         (dfm_put_record) Rewrote.
3151         (dfm_push) Assert file is open and one of ours.  Deal with
3152         line_number in extension record instead of file handle.
3153         (dfm_pop) Assert file is open and one of ours.  Deal with
3154         line_number in extension record instead of file handle.
3155         (cmd_begin_data) Use dfm_open_for_reading().  Mark that we saw
3156         BEGIN DATA.     
3157
3158         * file-handle.h: (enum constants RH_RF_*) Removed.
3159         (enum constants FH_MD_*) Removed.
3160         (struct file_handle) Removed `name', `norm_fn', `fn', `where',
3161         `recform', `lrecl', `mode' members.  Public references to
3162         `recform' changed to use handle_get_mode(), references to `lrecl'
3163         changed to use handle_get_record_width().  Added `private' member.
3164         (enum file_handle_mode) New.
3165
3166         * file-handle.q: (struct private_file_handle) New structure.
3167         (struct file_handle_list) New structure.
3168         (static var files) New.
3169         (static var file_handles) Removed.
3170         (init_file_handle) Removed.
3171         (create_file_handle) Removed.
3172         (get_handle_with_name) New function.
3173         (get_handle_for_filename) New function.
3174         (cmd_file_handle) Rewritten.
3175         (hash_file_handle) Removed.
3176         (cmp_file_handle) Removed.
3177         (fh_init_files) Rewritten.
3178         (fh_parse_file_handle) Rewritten.  Allows identifiers as
3179         filenames.
3180         (fh_get_handle_by_name) Renamed handle_get_name(), all references
3181         updated.  Rewritten.
3182         (fh_get_handle_by_filename) Renamed handle_get_filename(), all
3183         references updated.  Rewritten.
3184         (fh_record_width) Renamed handle_get_record_width(), all
3185         references updated.  Rewritten.
3186         (handle_get_mode) New function.
3187
3188         * file-type.c: (cmd_file_type) Open handle for reading.
3189
3190         * filename.c: [unix] (struct file_identity) New structure.
3191         [unix] (fn_get_identity) New function.
3192         [unix] (fn_free_identity) New function.
3193         [unix] (fn_compare_file_identities) New function.
3194         [!unix] (struct file_identity) New structure.
3195         [!unix] (fn_get_identity) New function.
3196         [!unix] (fn_free_identity) New function.
3197         [!unix] (fn_compare_file_identities) New function.
3198
3199         * lexer.c: (static var put) Renamed put_token, all references
3200         updated.
3201         (static var put_tokstr) New.
3202         (static var put_tokval) New.
3203         (lex_init) Initialize put_tokstr().
3204         (restore_token) New function.
3205         (save_token) New function.
3206         (lex_get) Use restore_token().
3207         (lex_put_back) Use save_token().
3208         (lex_put_back_id) New function.
3209         (lex_put_forward) Removed.
3210         (lex_preprocess_line) Set put_token instead of using
3211         lex_put_forward().
3212         (lex_negative_to_dash) Use save_token(), set put_token directly.
3213         (dump_token) Use stderr instead of stdout.
3214
3215         * main.c: (main) Remove call to cmd_init().
3216         
3217         * matrix-data.c: (cmd_matrix_data) Open file for reading.
3218
3219         * pfm-read.c: Use handle_get_filename() instead of trying to use
3220         h->fn directly, all over.
3221
3222         * pfm-write.c: Ditto.
3223
3224         * print.c: (internal_cmd_print) Open handle for writing.
3225         (dump_table) Use handle_get_filename().
3226         (print_trns_proc) Use handle_get_mode().
3227         (cmd_print_space) Use fh_parse_file_handle().
3228         Open handle for writing.
3229         [0] (debug_print) Removed.
3230
3231         * sfm-read.c: Use handle_get_filename() instead of trying to use
3232         h->fn directly, all over.
3233
3234         * sfm-write.c: Ditto.
3235
3236 Sat Mar 20 14:35:48 2004  Ben Pfaff  <blp@gnu.org>
3237
3238         Fix memory leaks.
3239         
3240         * autorecode.c: (arc_free) Free arc->src_values.
3241
3242         * error.c: (msg) Free buf.
3243
3244         * val-labs.c: (do_value_labels) Always free vars.
3245
3246         * vfm.c: (close_active_file) If sink has no make_source then call
3247         its destroy function.
3248
3249 Sat Mar 20 14:00:24 2004  Ben Pfaff  <blp@gnu.org>
3250
3251         Fixed cmd_parse() so that it always skips past a full command
3252         name.  A few special commands for which this would be bad get
3253         special treatment.  This lets us drop code for skipping past the
3254         end of a command name in most cmd_*() functions.  It's not worth
3255         listing all the commands affected.
3256
3257         * command.c: (struct command) Remove `cmd' member, replace by
3258         `name' member, all references updated.  Remove `word', `next',
3259         `skip_entire_name' members.
3260         (macro DEFCMD) Deal with revised `struct command'.
3261         (macro UNIMPL) Ditto.
3262         (macro SPCCMD) New macro for commands whose last word shouldn't be
3263         skipped.
3264         (static array cmd_table[]) Make const, rename `commands', remove
3265         sentinel element.
3266         (macro COMMAND_CNT) New macro.
3267         (split_words) Removed.
3268         (cmd_init) Removed.
3269         (FILE_TYPE_okay) Make parameter const.
3270         (cmd_parse) Improve error messages.
3271         (match_strings) New function.
3272         (next_word) New function.
3273         (enum command_match) New enum.
3274         (conflicting_3char_prefixes) New function.
3275         (conflicting_3char_prefix_command) New function.
3276         (cmd_match_words) New function.
3277         (count_matching_commands) New function.
3278         (get_command_name) New function.
3279         (free_words) New function.
3280         (unknown_command_error) New function.
3281         (figure_out_command) Renamed parse_command_name(), rewritten.
3282
3283         * command.def: Removed @ command.  Marked BEGIN DATA, DOCUMENT,
3284         FILE LABEL, REMARK, SUBTITLE, TITLE as special.  Renamed EVALUATE
3285         to DEBUG EVALUATE.  Added N alias for N OF CASES, SORT alias for
3286         SORT CASES.
3287
3288         * command.h: (macro SPCCMD) New.
3289
3290         * include.c: (cmd_include_at) Removed.
3291         (cmd_include) Allow identifier to be used as filename.
3292
3293         * inpt-pgm.c: (cmd_reread) Use fh_parse_file_handle().
3294
3295         * t-test.q: (cmd_t_test) Command name is now parsed for us.
3296         
3297
3298 Sat Mar 20 13:56:00 2004  Ben Pfaff  <blp@gnu.org>
3299
3300         Start work on better test framework.
3301         
3302         * Makefile.am: (pspp_sources) Add debug.c.
3303         
3304         * debug.c: New file.
3305
3306         * compute.c: (cmd_evaluate) Moved to debug.c, renamed
3307         cmd_debug_evaluate().
3308
3309         * expr-prs.c: (expr_parse) Remove PXP_DUMP support.
3310
3311         * expr.h: (enum constant PXP_DUMP) Removed.
3312
3313 Sat Mar 20 00:05:42 WST 2004 John Darrington <john@darrington.wattle.id.au>
3314
3315         * set.q:  Implemented the SHOW command, and synced it to the existing 
3316         SET cmd.
3317
3318         Added a handler for SIGWINCH so that viewlength and viewwidth follow
3319         changes as the window size is changed.
3320
3321         Added fallback to set viewlength and viewwidth from LINES and COLUMS
3322         environment variables if other methods are not available.
3323
3324         glob.c: Removed a lot of global variables from glob.c and encapsulated 
3325         them in set.q
3326
3327         random.c: Tidied up the way the random seed is set.
3328
3329         str.c: Added a ds_vprintf function.
3330
3331         error.c: Extended dump_message so that messages are always broken at
3332         '\n' characters.
3333         
3334 Thu Mar 18 11:07:14 2004  Ben Pfaff  <blp@gnu.org>
3335
3336         * pfm-write.c: (bufwrite) Write out the correct element for string
3337         variables.  From Andreas Streichardt <streichardt@globalpark.de>.
3338
3339 Mon Mar 15 20:48:03 2004  Ben Pfaff  <blp@gnu.org>
3340
3341         Get rid of static and global (!) vars in matrix-data.c.
3342
3343         * matrix-data.c: (static var nr_data) Removed.
3344         (static var nr_factor_values) Removed.
3345         (static var max_cell_index) Removed.
3346         (static var split_values) Removed.
3347         (struct nr_aux_data) New structure.
3348         (read_matrices_without_rowtype) Use a local struct nr_aux_data in
3349         place of static vars, pass to create_case_source() and procedure()
3350         as aux data.
3351         (nr_read_data_lines) Use struct nr_aux_data * parameter instead of
3352         struct matrix_data_pgm *.
3353         (nr_read_splits) Ditto.
3354         (nr_read_factors) Ditto.
3355         (nr_output_data) Ditto.
3356         (static var wr_content) Removed.
3357         (global var wr_data) Removed.
3358         (global var wr_current) Removed.
3359         (struct wr_aux_data) New structure.
3360         (read_matrices_with_rowtype) Use a local struct wr_aux_data in
3361         place of static vars, pass to create_case_source() and procedure()
3362         as aux data.
3363         (matrix_data_read_with_rowtype) Use struct wr_aux_data * parameter
3364         instead of matrix_data_pgm *.
3365         (wr_read_splits) Ditto.
3366         (wr_output_data) Ditto.
3367         (wr_read_rowtype) Ditto.
3368         (wr_read_factors) Ditto.
3369         (wr_read_indeps) Ditto.
3370         
3371 Mon Mar 15 20:07:29 2004  Ben Pfaff  <blp@gnu.org>
3372
3373         Get rid of static vars in autorecode.c.
3374
3375         * autorecode.c: (struct autorecode_trns) Rename `arc' to `specs',
3376         `n_arc' to `spec_cnt'.  All references updated.
3377         (static var v_src) Removed.
3378         (static var v_dest) Removed.
3379         (static var h_trns) Removed.
3380         (static var nv_src) Removed.
3381         (static var descend) Removed.
3382         (static var print) Removed.
3383         (enum direction) New enum.
3384         (struct autorecode_pgm) New structure.
3385         (cmd_autorecode) Use struct autorecode_pgm instead of static vars.
3386         Move n_dest local var into struct autorecode_pgm for ease of
3387         clean-up.  Use arc_free().
3388         (arc_free) New function.
3389         (recode) Modify to take struct autorecode_pgm * parameter instead
3390         of using statics.  Let the caller clean up.
3391         (autorecode_proc_func) Use struct autorecode_pgm * auxiliary data
3392         instead of statics.  Rearrange code a little.
3393
3394 Mon Mar 15 00:25:02 2004  Ben Pfaff  <blp@gnu.org>
3395
3396         Get rid of static, global vars in recode.c.  Remove debug code.
3397
3398         * recode.c: (static var head) Removed.
3399         (global var v) Removed.
3400         (global var nv) Removed.
3401         (cmd_recode) New local variables head, v, nv.  Initialize and free
3402         v.  Don't call debug_print().
3403         [DEBUGGING] (dump_dest) Removed.
3404         [DEBUGGING] (debug_print) Removed.
3405
3406 Mon Mar 15 00:14:49 2004  Ben Pfaff  <blp@gnu.org>
3407
3408         Get rid of static vars in expr-opt.c.
3409
3410         * expr-opt.c: (static var e) Removed.
3411         (static var nop) Removed.
3412         (static var mop) Removed.
3413         (static var ndbl) Removed.
3414         (static var mdbl) Removed.
3415         (static var nstr) Removed.
3416         (static var mstr) Removed.
3417         (static var nvars) Removed.
3418         (static var mvars) Removed.
3419         (struct expr_dump_state) New structure.
3420         (dump_expression) Use new struct expr_dump_state instead of static
3421         vars and pass to functions we call.
3422         (dump_node) Use struct expr_dump_state * parameter.
3423         (emit) Ditto.
3424         (emit_num_con) Ditto.
3425         (emit_str_con) Ditto.
3426         (emit_var) Ditto.
3427         
3428 Mon Mar 15 00:03:51 2004  Ben Pfaff  <blp@gnu.org>
3429
3430         Get rid of static var in COUNT.
3431
3432         * count.c: (static var head) Move into cmd_count().
3433         (cmd_count) [DEBUGGING] Don't call debug_print.
3434         [DEBUGGING] (debug_print) Removed.
3435
3436 Sun Mar 14 23:56:09 2004  Ben Pfaff  <blp@gnu.org>
3437
3438         Get rid of static vars in VALUE LABELS, ADD VALUE LABELS.
3439
3440         * val-labs.c: (static var v) Removed.
3441         (static var nv) Removed.
3442         [DEBUGGING] (debug_print) Removed.
3443         (verify_val_labs) Add struct variable **, int parameters.
3444         (get_label) Ditto.  Improve error messages, streamline.
3445         (erase_labels) New function for erasing value labels, taking over
3446         part of verify_val_labs()'s function.
3447         (init) Removed.
3448         (done) Removed.
3449         (cmd_value_labels) No need to call init() or done() anymore.
3450         (cmd_add_value_labels) Ditto.
3451         (do_value_labels) Add vars, var_cnt local variables.  Clean up
3452         after them internally.  Call erase_labels() if we should.  Don't
3453         call debug_print().
3454
3455 Sun Mar 14 23:33:53 2004  Ben Pfaff  <blp@gnu.org>
3456
3457         Get rid of static vars in MATCH FILES.
3458         
3459         * get.c: (static var mtf_head) Removed.
3460         (static var mtf_tail) Removed.
3461         (static var mtf_by) Removed.
3462         (static var mtf_n_by) Removed.
3463         (static var mtf_master) Removed.
3464         (static var mtf_seq_num) Removed.
3465         (static var mtf_seq_nums) Removed.
3466         (static var mtf_sink) Removed.
3467         (static var mtf_case) Removed.
3468         (struct mtf_proc) New structure.
3469         (cmd_match_files) Use struct mtf_proc instead of static vars.
3470         (mtf_processing_finish) Ditto.
3471         (mtf_free) Ditto.
3472         (mtf_delete_file_in_place) Ditto.
3473         (mtf_read_nonactive_records) Ditto.
3474         (mtf_compare_BY_values) Ditto.
3475         (mtf_processing) Ditto.
3476         (mtf_merge_dictionary) Ditto.
3477
3478 Sun Mar 14 22:48:12 2004  Ben Pfaff  <blp@gnu.org>
3479
3480         * command.def: Add CASESTOVARS, VARSTOCASES unimplemented commands.
3481
3482         * dictionary.c: (dict_rename_var) Add assertion.
3483         (dict_contains_var) Check by index instead of name.
3484
3485 Sun Mar 14 22:01:02 2004  Ben Pfaff  <blp@gnu.org>
3486
3487         Get rid of compaction_necessary, compaction_nval, compaction_case.
3488         Redo VFM interface.  Replace disk_sink and memory_sink by
3489         storage_sink, disk_source and memory_source by storage_source.
3490
3491         * vfm.h: (struct case_sink) Add `dict', `idx_to_fv', `value_cnt'
3492         members.
3493
3494         * vfm.c: 
3495         (struct write_case_data) Remove `begin_func', `end_func',
3496         `func_aux' members.  Add `aux', `trns_case', `sink_case',
3497         `cases_written', `cases_analyzed' members.
3498         (global var compaction_necessary) Make static.
3499         (global var compaction_nval) Removed.
3500         (global var compaction_case) Removed.
3501         (static var case_count) Removed.
3502         (struct procedure_aux_data) Removed.
3503         (struct split_aux_data) Removed.
3504         (procedure) Remove begin_func, end_func parameters.  Rewrite.
3505         (static var not_canceled) Removed.
3506         (process_active_file) Removed.
3507         (process_active_file_write_case) Removed.
3508         (process_active_file_output_case) Removed.
3509         (prepare_for_writing) Moved into open_active_file().
3510         (arrange_compaction) Ditto.
3511         (setup_lag) Ditto.
3512         (open_active_file) Rewrote.
3513         (write_case) New function.
3514         [DEBUGGING] (index_to_varname) Removed.
3515         (execute_transformations) New function.
3516         (exclude_this_case) Renamed filter_case(), changed interface.
3517         (clear_case) Added struct ccase * parameter to interface.
3518         (close_active_file) Added struct write_case_data * parameter,
3519         rewrote.
3520         (disk_sink_create) Removed.
3521         (disk_sink_destroy) Removed.
3522         (disk_sink_make_source) Removed.
3523         (disk_sink_write) Removed.
3524         (disk_source_count) Removed.
3525         (disk_source_destroy) Removed.
3526         (disk_source_read) Removed.
3527         (global var disk_sink_class) Removed.
3528         (global var disk_source_class) Removed.
3529         (global var memory_sink_class) Removed.
3530         (global var memory_source_class) Removed.
3531         (memory_sink_create) Removed.
3532         (memory_sink_destroy) Removed.
3533         (memory_sink_make_source) Removed.
3534         (memory_sink_write) Removed.
3535         (memory_source_count) Removed.
3536         (memory_source_destroy) Removed.
3537         (memory_source_get_cases) Removed.
3538         (memory_source_read) Removed.
3539         (memory_source_set_cases) Removed.
3540         (struct disk_stream_info) Removed.
3541         (struct memory_sink_info) Removed.
3542         (struct memory_source_info) Removed.
3543         (write_active_file_to_disk) Removed.
3544         (destroy_storage_stream_info) New function.
3545         (global var null_sink_class) New var.
3546         (global var storage_sink_class) New var.
3547         (global var storage_source_class) New var.
3548         (open_storage_file) New function.
3549         (storage_sink_destroy) New function.
3550         (storage_sink_make_source) New function.
3551         (storage_sink_open) New function.
3552         (storage_sink_write) New function.
3553         (storage_source_count) New function.
3554         (storage_source_destroy) New function.
3555         (storage_source_get_cases) New function.
3556         (storage_source_on_disk) New function.
3557         (storage_source_read) New function.
3558         (storage_source_set_cases) New function.
3559         (storage_source_to_disk) New function.
3560         (storage_to_disk) New function.
3561         (struct storage_stream_info) New structure.
3562         (write_storage_file) New function.
3563         (procedure_write_case) Removed.
3564         (create_case_source) Add `struct dictionary *' parameter, all
3565         references updated.
3566         (create_case_sink) Ditto.
3567         (free_case_sink) New function.
3568         (struct split_aux_data) New structure.
3569         (procedure_with_splits) New function implementing what procedure()
3570         used to.
3571         (SPLIT_FILE_proc_func) Removed.
3572         (procedure_with_splits_callback) New function.
3573         (equal_splits) New function.
3574         
3575         * aggregate.c: Pass around a struct instead of using statics.
3576         (static var outfile) Remove.
3577         (enum type) Give it tag `missing_treatment'.
3578         (static var missing) Remove.
3579         (static var sort) Remove.
3580         (static var agr_first) Remove.
3581         (static var agr_next) Remove.
3582         (static var case_count) Remove.
3583         (static var prev_case) Remove.
3584         (static var buf64_1xx) Remove.
3585         (static var buf_1xx) Remove.
3586         (struct agr_proc) New structure incorporating the above.
3587         (cmd_aggregate) Use new struct.  Clean up error handling using
3588         agr_destroy().  Completely rewrite actual implementation of
3589         aggregation.
3590         (create_sysfile) Add struct agr_proc * parameter, modify
3591         accordingly.
3592         (parse_aggregate_functions) Ditto.
3593         (free_aggregate_functions) Ditto.  Rename agr_destroy().
3594         (aggregate_single_case) Add struct agr_proc * parameter, modify
3595         accordingly.
3596         (accumulate_aggregate_info) Ditto.
3597         (dump_aggregate_info) Ditto.
3598         (initialize_aggregate_info) Ditto.
3599         (agr_00x_trns_proc) Removed.
3600         (agr_00x_end_func) Removed.
3601         (agr_10x_trns_proc) Removed.
3602         (agr_10x_trns_free) Removed.
3603         (agr_10x_end_func) Removed.
3604         (agr_11x_read) Removed.
3605         (agr_11x_finish) Removed.
3606         [DEBUGGING] (debug_print) Removed.
3607         (write_case_to_sfm) Add struct agr_proc * parameter, modify
3608         accordingly.
3609         (agr_to_active_file) New function.
3610         (presorted_agr_to_sysfile) New function.
3611         (sort_agr_to_sysfile) New function.
3612
3613         * autorecode.c: (cmd_autorecode) Use procedure_with_splits().
3614
3615         * crosstabs.q: (internal_cmd_crosstabs) Ditto.
3616
3617         * descript.q: (cmd_descriptives) Ditto.
3618
3619         * dfm.c: (cmd_begin_data) Check for storage_source_class.  Adapt
3620         to new procedure() interface.
3621
3622         * command.c: (cmd_execute) Adapt to new procedure() interface.
3623
3624         * dictionary.c: (dict_compact_values) Also delete scratch
3625         variables.
3626         (dict_get_compacted_value_cnt) New function.
3627         (dict_get_compacted_idx_to_fv) New function.
3628
3629         * flip.c: (cmd_flip) Warn about and cancel TEMPORARY.
3630         (cmd_flip) Adapt to new procedure() interface.
3631         (flip_sink_write) Use sink->idx_to_fv.
3632
3633         * frequencies.q: (internal_cmd_frequencies) Use
3634         procedure_with_splits().
3635
3636         * get.c: (cmd_save_internal) Adapt to new procedure() interface.
3637         (static var mtf_sink) New static var.
3638         (static var mtf_case) New static var.
3639         (cmd_match_files) Warn about and cancel TEMPORARY.  Redo the way
3640         we actually implement the matching.
3641         (mtf_delete_file_in_place) Use mtf_case.
3642         (mtf_processing) Use mtf_case and mtf_sink.
3643         (cmd_export) Adapt to new procedure() interface.
3644
3645         * levene.c: (levene) Use procedure_with_splits().
3646
3647         * list.q: (cmd_list) Use procedure_with_splits().
3648
3649         * matrix-data.c: (read_matrices_without_rowtype) Adapt to new
3650         procedure() interface.
3651         (read_matrices_with_rowtype) Ditto.
3652
3653         * modify-vars.c; (cmd_modify_vars) Warn about and cancel
3654         TEMPORARY.  Adapt to new procedure() interface.
3655
3656         * rename-vars.c: Warn about and cancel TEMPORARY.
3657
3658         * sort.c: (cmd_sort_cases) Warn about TEMPORARY.
3659         (sort_cases) Use dict_get_compacted_value_cnt() instead of
3660         compaction_nval.  Adapt to new procedure() interface.  Use
3661         storage_source_to_disk().
3662         (do_internal_sort) Don't try to dump the cases to memory.
3663         (compare_case_lists) Pass null idx_to_fv.
3664         (struct initial_run_state) Add `idx_to_fv' member.  Remove
3665         `case_size' member.
3666         (write_initial_runs) Don't initialize irs->case_size.  Adapt to
3667         new procedure() interface.  Reset irs->idx_to_fv after calling
3668         procedure().
3669         (sort_sink_write) Set irs->idx_to_fv.  Use case_size from struct
3670         sort_cases_pgm.  Pass irs, not struct sort_cases_pgm to
3671         push_heap().
3672         (destroy_initial_run_state) Don't dereference irs after freeing
3673         it.
3674         (allocate_cases) Don't calculate case_size locally.
3675         (compare_record) Add idx_to_fv parameter.
3676         (compare_record_run) Change parameter from struct sort_cases_pgm *
3677         to struct initial_run_state *.  Pass irs->idx_to_fv to
3678         compare_record().
3679         (compare_record_run) Third parameter now a struct
3680         initial_run_state *.
3681         (output_record) No need for out_case anymore.  Pass irs, not
3682         struct sort_cases_pgm to pop_heap().  Use case_size from struct
3683         sort_cases_pgm.
3684         (merge) Use case_size from struct sort_cases_pgm.
3685         (merge_once) Use case_size from struct sort_cases_pgm.
3686         Pass null pointer to compare_record() as idx_to_fv.
3687         (global var sort_sink_class) Make static.
3688
3689         * t-test.q: (cmd_t_test) Use procedure_with_splits().
3690
3691         * temporary.c: Remove debugging crap.
3692
3693 Sat Mar 13 14:19:52 WST 2004 John Darrington <john@darrington.wattle.id.au>
3694
3695         * t-test.q, levene.c: Fixed up the handling of MISSING values
3696         int the T-TEST
3697
3698 Fri Mar 12 16:23:35 WST 2004 John Darrington <john@darrington.wattle.id.au>
3699
3700         * t-test.q, levene.c: Added support for T-TEST /GROUP where only 
3701         one value is given.
3702
3703 Wed Mar 10 23:25:13 2004  Ben Pfaff  <blp@gnu.org>
3704
3705         Change explicit variable name checks into use of
3706         dict_class_from_id().
3707
3708         * dictionary.c: (dict_create_var)  Change explicit variable name
3709         check into use of dict_class_from_id().
3710
3711         * get.c: (trim_dictionary) Ditto.
3712
3713         * sel-if.c: (cmd_filter) Ditto.
3714
3715         * sysfile-info.c: (cmd_display) Ditto.
3716
3717         * vars-prs.c: (parse_DATA_LIST_vars) Ditto.
3718
3719         * vfm.c: (arrange_compaction) Ditto.
3720
3721         * weight.c: (cmd_weight) Ditto.
3722
3723 Wed Mar 10 21:16:34 2004  Ben Pfaff  <blp@gnu.org>
3724
3725         * temporary.c: (cmd_temporary) When TEMPORARY was the first
3726         transformation following the input program, if any, for some
3727         reason we special-cased f_trns.  That's just wrong.  It should
3728         always be set to n_trns.
3729
3730 Tue Mar  9 23:44:40 2004  Ben Pfaff  <blp@gnu.org>
3731
3732         * format.c: (parse_format_specifier_name) Fix brown-bag bug
3733         introduced in last check-in.
3734
3735 Tue Mar  9 23:10:41 2004  Ben Pfaff  <blp@gnu.org>
3736
3737         * format.c: (global array translate_fmt[]) Removed.
3738         (translate_fmt) New function as replacement.
3739         (parse_format_specifier_name) Rewrite.
3740
3741         * pfm-read.c: (convert_format) Use translate_fmt() instead of
3742         translate_fmt[].
3743
3744         * sfm-read.c: (parse_format_spec) Ditto.
3745
3746         * postscript.c: (text) Fix handling of fonts with missing
3747         ligatures.
3748
3749         * sort.c: (struct external_sort) Add temp_name member.
3750         (destroy_external_sort) Free temp_dir, temp_name members.
3751         (init_external_sort) Allocate temp_name.
3752         (get_temp_file_name) Change prototype.
3753         (open_temp_file) Deal with change to get_temp_file_name().
3754         (close_temp_file) Ditto.
3755         (remove_temp_file) Ditto.
3756         (write_temp_file) Ditto.
3757         (read_temp_file) Ditto.
3758         (sort_sink_destroy) Removed.
3759         (sort_sink_class) Change destroy member to null.
3760
3761 Tue Mar  9 22:36:34 2004  Ben Pfaff  <blp@gnu.org>
3762
3763         Eliminate temp_case.
3764
3765         * aggregate.c: (cmd_aggregate) No need to save/restore temp_case
3766         anymore.  Use agr_11x_finish().
3767         (aggregate_single_case) Make first param const.
3768         (accumulate_aggregate_info) Ditto.
3769         (agr_00x_end_func) Use compaction_case, not temp_case.
3770         (agr_11x_func) Break into agr_11x_read(), agr_11x_finish().
3771
3772         * data-list.c: (struct data_list_pgm) Add `case_size' member.
3773         (cmd_data_list) Initialize case_size.
3774         (read_from_data_list_fixed) Add struct ccase * param, use instead
3775         of temp_case.
3776         (read_from_data_list_free) Ditto.
3777         (read_from_data_list_list) Ditto.
3778         (read_one_case) Rename data_list_trns_proc(), all references
3779         updated.  Add argument in calling above functions.  Use c
3780         argument instead of temp_case.
3781         (destroy_dls) Rename data_list_trns_free(), all references
3782         updated.
3783
3784         * expr-evl.c: (expr_evaluate) Make second parameter const.
3785
3786         * file-type.c: (struct file_type_pgm) Add `case_size' member.
3787         (cmd_end_file_type) Initialize `case_size'.
3788         (file_type_source_read) Add struct ccase * parameter.  Use instead
3789         of temp_case.
3790
3791         * flip.c: Rewritten.
3792
3793         * get.c: (struct get_pgm) New structure to keep track of
3794         case_size.
3795         (cmd_get) Initialize case_size.
3796         (cmd_import) Ditto.
3797         (get_source) Deal with struct get_pgm.
3798         (get_source_read) Add struct ccase * parameter, use instead of
3799         temp_case.
3800         (import_source_read) Ditto.
3801
3802         * get.c: Use a null pointer instead of temp_case to represent the
3803         "current case" in a struct mtf_file's input member.
3804         (mtf_processing_finish) Pass null to mtf_processing(), not
3805         temp_case.
3806         (mtf_read_nonactive_records) Don't set iter->input to temp_case.
3807         (mtf_compare_BY_values) Add extra arg, use instead of null input
3808         members.
3809         (mtf_processing) Use c parameter instead of temp_case.  Pass
3810         compaction_case to process_active_file_output_case().
3811         
3812         * glob.c: (global variable temp_case) Removed.
3813
3814         * inpt-pgm.c: (struct input_program_pgm) Add `case_size' member.
3815         (cmd_input_program) Initialize case_size.  Set
3816         vfm_source->value_cnt.
3817         (init_case) Add struct ccase * parameter, use instead of
3818         temp_case.
3819         (clear_case) Ditto.
3820         (input_program_source_read) Ditto.
3821
3822         * matrix-data.c: (matrix_data_read_without_rowtype) Ditto.
3823         (dump_cell_content) Ditto.
3824         (nr_output_data) Ditto.
3825         (read_matrices_without_rowtype) Ditto.
3826         (matrix_data_read_with_rowtype) Ditto.
3827         (wr_read_splits) Ditto.
3828         (wr_output_data) Ditto.
3829
3830         * sort.h: (struct sort_cases_pgm) New member `case_size'.
3831         
3832         * sort.c: (sort_cases) Initialize scp->case_size.
3833         (struct external_sort) Remove `case_size' member.
3834         (write_initial_runs) Only call vfm_sink->class_destroy if
3835         non-null.
3836         (struct sort_source_aux) New structure.
3837         (sort_source_read_helper) New function.
3838         (sort_source_read) Use sort_source_read_helper().
3839         (read_sort_output) Change interface to be more reasonable.
3840         (read_internal_sort_output) Ditto.
3841         (read_external_sort_output) Ditto.
3842
3843         * vars-prs.c: (dict_class_to_name) Pass return value through
3844         gettext.
3845
3846         * vfm.c: (struct procedure_aux_data) Add `trns_case' member.
3847         (procedure) Initialize trns_case.
3848         (procedure) Pass trns_case to vfm_source->class->read().
3849         Free trns_case.
3850         (process_active_file) Start using struct procedure_aux_data.
3851         (process_active_file_write_case) Pass trns_case to
3852         transformations, lag_case(), clear_case().
3853         (process_active_file_output_case) Add struct ccase * parameter.
3854         (create_trns_case) New function.
3855         (make_temp_case) Removed.
3856         (vector_initialization) Removed.
3857         (close_active_file) Only call make_source if non-null, otherwise
3858         set vfm_source to null pointer.  Don't free temp_case.
3859         (disk_source_read) Add struct ccase * parameter, use instead of
3860         temp_case.
3861         (memory_source_read) Ditto.
3862         (lag_case) Add const struct ccase * member.
3863         (procedure_write_case) Use trns_case instead of temp_case.
3864         (clear_case) Add struct ccase * member, use instead of temp_case.
3865         (exclude_this_case) Ditto.
3866         (create_case_source) Add struct dictionary * parameter, use to
3867         initialize source->value_cnt.
3868
3869         * vfm.h: (struct case_source) Add `value_cnt' member.
3870         (struct case_source_class) Add struct ccase * parameter to `read'
3871         member function pointer.
3872         (struct case_sink_class) Make struct ccase * parameter const in
3873         `write' member function pointer.
3874         
3875 Wed Mar  3 20:44:37 2004  Ben Pfaff  <blp@gnu.org>
3876
3877         Fix a lot of "possibly uninitialized variable" warnings.  Some of
3878         them are even real bugs.  A few of them make me wonder how the
3879         code ever worked.
3880
3881         * aggregate.c: (parse_aggregate_functions) Initialize `function.
3882
3883         * ascii.c: (output_lines) Add default case to switch.
3884
3885         * crosstabs.q: Remove static variable `expected' and all
3886         references to it.
3887         (display_crosstabulation) Always calculate expected value.
3888         (calc_chisq) Ditto.
3889         (output_pivot_table) Initialize `cmp'.
3890         (display_crosstabulation) New variable `last_row', which is
3891         initialized.
3892
3893         * data-in.c: (parse_numeric) Always initialize sign.  How did this
3894         work at all?!
3895
3896         * data-list.c: (repeating_data_trns_proc) Always initialize code.
3897         Always set info.ofs.  (How did this work?!)
3898
3899         * expr-opt.c: (optimize_tree) Always initialize `m'.
3900         (evaluate_tree) Always initialize `c'.  (How did this work?)
3901
3902         * frequencies.q: (frq_custom_variables) Always initialize min,
3903         max.
3904         (frq_custom_grouped) Always initialize `dl'.
3905
3906         * groff-font.c: (groff_read_font) Always initialize char_set.
3907
3908         * matrix-data.c: (nr_output_data) Initialize `split'.
3909         (wr_read_splits) Remove shadowing split_cnt declaration.
3910         (wr_output_data) Initialize `split'.
3911
3912         * output.c: (tokener) Skip add character on syntax error.
3913
3914         * pool.c: (pool_strndup) Always set `copy'.  (How did this work?!)
3915
3916         * postscript.c: (read_ps_encodings) Use line.string instead of
3917         uninitialized `bp'.
3918         (write_text) Add default case to switch.
3919         (text) Always initialize multiple variables.  Fix bug with
3920         ligatures.
3921
3922         * print.c: (fixed_parse_fortran) Initialize head.
3923         (alloc_line) Add default case to switch.
3924
3925         * recode.c: (parse_dest_spec) Handle case where nothing matches.
3926         (recode_trns_proc) Move variable declaration inward.  Add default
3927         case to switch.
3928
3929         * sfm-read.c: (read_header) Initialize skip_amt.
3930
3931         * sysfile-info.c: (display_variables) Always initialize pc.
3932
3933         * vars-prs.c: Initialized `included'.
3934
3935 Wed Mar  3 09:30:09 2004  Ben Pfaff  <blp@gnu.org>
3936
3937         * main.c: (main) sigaction()'s sa_flags member was uninitialized.
3938         Just use signal() instead.
3939
3940 Wed Mar  3 09:26:30 2004  Ben Pfaff  <blp@gnu.org>
3941
3942         Get rid of vfm_sink_info and vfm_source_info.
3943         
3944         * aggregate.c: (agr_00x_end_func) Don't increment
3945         sfm_sink_info.ncases.
3946
3947         * sort.c: (do_internal_sort) Get case count from
3948         vfm_source->class->count().
3949         (struct external_sort) Add `case_size' member.
3950         (do_external_sort) Initialize case_size.
3951         (struct initial_run_state) Add `case_size' member.
3952         (write_initial_runs) Initialize case_size.
3953         (sort_sink_write) Use case_size.
3954         (read_external_sort_output) Use case_size.  Get case_cnt from
3955         initial_runs.
3956
3957         * vfm.c: (struct write_case_data) Add underscores to existing arg
3958         names, all references updated.  Renamed `aux' as `func_aux', all
3959         references updated.  Added new `aux' member.
3960         (global var vfm_source_info) Removed.
3961         (global var vfm_sink_info) Removed.
3962         (struct procedure_aux_data) New.
3963         (struct split_aux_data) New.
3964         (procedure) Use `aux' fields for procedure_aux_data,
3965         split_aux_data.
3966         (process_active_file_write_case) Pass case_count + 1 to
3967         transformation procedures, exclude_this_case().
3968         (process_active_file_output_case) Don't increment
3969         vfm_sink_info.ncases.
3970         (prepare_for_writing) Don't initialize vfm_sink_info.  Don't try
3971         to send data to disk early.
3972         (make_temp_case) Don't use vfm_sink_info.case_size.
3973         (close_active_file) Don't initialize vfm_source_info.
3974         (struct disk_stream_info) New, to allow for case_cnt and case_size fields.
3975         (disk_sink_create) Initialize and/or update disk_stream_info.
3976         (disk_sink_write) Ditto.
3977         (disk_sink_destroy) Ditto.
3978         (disk_sink_make_source) Ditto.
3979         (disk_source_read) Ditto.
3980         (disk_source_destroy) Ditto.
3981         (global var disk_source_class) Add disk_source_count().
3982         (disk_source_count) New function.
3983         (struct memory_sink_info) Add `case_cnt', `case_size' members.
3984         (struct memory_source_info) Ditto.
3985         (memory_sink_create) Deal with case_cnt, case_size.
3986         (memory_sink_write) Ditto.
3987         (memory_sink_make_source) Ditto.
3988         (memory_source_read) Ditto.
3989         (memory_source_count) New function.
3990         (memory_source_class) Add memory_source_count().
3991         (procedure_write_case) Don't use vfm_sink_info.ncases.  Do use
3992         proc_aux->cases_written, and pass it to transformation procedures
3993         and exclude_this_case ().
3994         (exclude_this_case) Add case_num parameter.  Pass it to
3995         expr_evaluate().
3996         (SPLIT_FILE_procfunc) Use split_aux->prev_case instead of static
3997         variable.
3998
3999         * vfm.h: (struct case_source_class) Add `count' member.
4000
4001         * vfmP.h: (struct stream_info) Removed.
4002         (global variable vfm_source_info) Removed.
4003         (global variable vfm_sink_info) Removed.
4004         
4005 Tue Mar  2 23:38:17 2004  Ben Pfaff  <blp@gnu.org>
4006
4007         * var.h: (typedef trns_proc_func) New typedef.
4008         (trns_free_func) New typedef.
4009         (struct trns_header) Change `proc' to type trns_proc_func, `free'
4010         to type trns_free_func.  This only changes the actual type of
4011         trns_proc_func, adding a `case_num' parameter.  Updated all
4012         implementations to use the typedefs instead.
4013
4014         * compute.c: (compute_num) Pass case_num to expr_evaluate().
4015         (compute_num_vec) Ditto.
4016         (compute_str) Ditto.
4017         (compute_str_vec) Ditto.
4018
4019         * do-if.c: (do_if_trns_proc) Ditto.
4020
4021         * expr-evl.c: (expr_evaluate) Add new case_num parameter, use for
4022         OP_CASENUM.
4023
4024         * inpt-pgm.c: (input_program_source_read) Maintain case count,
4025         pass to transformation functions.
4026         (reread_trns_proc) Pass case_num arg to expr_evaluate().
4027
4028         * loop.c: (loop_1_trns_proc) Ditto.
4029         (loop_2_trns_proc) Ditto.
4030         (loop_3_trns_proc) Ditto.
4031
4032         * print.c: (print_space_trns_proc) Ditto.
4033
4034         * sel-if.c: (select_if_proc) Ditto.
4035
4036 Tue Mar  2 11:36:52 2004  Ben Pfaff  <blp@gnu.org>
4037
4038         * frequencies.q: (cleanup_freq_tab) Avoid memory leak by
4039         destroying hash table.
4040
4041         * glob.c: (read_active_file) Variable not referenced, removed.
4042         (cancel_input_pgm) Ditto.
4043
4044         * levene.c: Add #include <stdlib.h> needed to call free().
4045
4046         * aggregate.c: (parse_aggregate_functions) Make `function'
4047         variable const.
4048
4049 Tue Mar  2 11:30:56 2004  Ben Pfaff  <blp@gnu.org>
4050
4051         Start working to eliminate VFM dependence on static variables.
4052
4053         * command.c: (cmd_parse) Use case_source_is_class().
4054
4055         * data-list.c: Rewrite to eliminate use of static variables.
4056
4057         * dfm.c: (cmd_begin_data) Use case_source_is_class().
4058
4059         * file-handle.q: (fh_handle_name) Make parameter const.
4060
4061         * file-type.c: Rewrite to eliminate use of static variables.
4062
4063         * flip.c: Rewrite to eliminate use of static variables.
4064
4065         * format.c: (get_format_var_width) New function.
4066
4067         * get.c: Eliminate use of static variables.
4068
4069         * inpt-pgm.c: Eliminate use of static variables.
4070
4071         * matrix-data.c: Eliminate use of static variables.
4072
4073         * set.q: (set_max_workspace) New variable.
4074         (cmd_set) Use SET WORKSPACE to modify set_max_workspace.
4075
4076         * var.h: (struct case_list) Move here from vfmP.h.
4077
4078         * vars-atr.c: (discard_variables) Handle new vfm_source type.
4079
4080         * vfm.c: (vfm_source) Change type from struct case_stream to
4081         struct case_source.
4082         (vfm_sink) Change type from struct case_stream to struct
4083         case_sink.
4084         (static var paging) Rename workspace_overflow, all references
4085         updated.
4086         (procedure) Use new class structures.
4087         (process_active_file) Ditto.
4088         (process_active_file_write_case) Ditto.
4089         (prepare_for_writing) Use set_max_workspace.  Use new class
4090         structures.
4091         (close_active_file) Use new class structures.  Free old sink.
4092         (global var disk_source_file) Removed.
4093         (global var disk_sink_file) Removed.
4094         (disk_stream_init) Removed.
4095         (disk_stream_read) Removed.
4096         (disk_stream_write) Removed.
4097         (disk_stream_mode) Removed.
4098         (disk_stream_destroy_source) Removed.
4099         (disk_stream_destroy_sink) Removed.
4100         (global var vfm_disk_stream) Removed.
4101         (disk_sink_create) New function.
4102         (disk_sink_write) New function.
4103         (disk_sink_destroy) New function.
4104         (disk_sink_make_source) New function.
4105         (disk_sink_class) New static var.
4106         (disk_source_read) New function.
4107         (disk_source_destroy) New function.
4108         (global var vfm_source_class) New var.
4109         (global var memory_source_cases) Removed.
4110         (global var memory_sink_cases) Removed.
4111         (global var memory_sink_max_cases) Removed.
4112         (struct memory_sink_info) New struct.
4113         (memory_stream_init) Removed.
4114         (memory_stream_read) Removed.
4115         (memory_stream_write) Removed.
4116         (memory_stream_mode) Removed.
4117         (memory_stream_destroy_source) Removed.
4118         (memory_stream_destroy_sink) Removed.
4119         (global var vfm_memory_stream) Removed.
4120         (page_to_disk) Renamed write_active_file_to_disk().
4121         (memory_sink_create) New function.
4122         (memory_sink_write) New function.
4123         (memory_sink_destroy) New function.
4124         (memory_sink_make_source) New function.
4125         (memory_sink_class) New static var.
4126         (memory_source_read) New function.
4127         (memory_source_destroy) New function.
4128         (memory_source_get_cases) New function.
4129         (memory_source_set_cases) New function.
4130         (global var vfm_source_class) New var.
4131         (procedure_write_case) Use new class structures.
4132         (create_case_source) New function.
4133         (case_source_is_complex) New function.
4134         (case_source_is_class) New function.
4135         (create_case_sink) New function.
4136
4137         * vfm.h: (global variable reinit_sysmis) Not used, removed.
4138         (global variable reinit_blanks) Not used, removed.
4139         (global variable init_zero) Not used, removed.
4140         (global variable init_blanks) Not used, removed.
4141         (struct case_source) New struct.
4142         (struct case_source_class) New struct.
4143         (struct case_sink) New struct.
4144         (struct case_sink_class) New struct.
4145         (struct case_stream) Removed.
4146
4147         * vfmP.h: (struct case_list) Moved to var.h.
4148
4149 Tue Mar  2 11:28:30 2004  Ben Pfaff  <blp@gnu.org>
4150
4151         * algorithm.c: (count_equal) New function.
4152         (count_if) New function.
4153         (unique) Add assertions.
4154         (partition) Add assertions.
4155         (is_partitioned) New function.
4156         (copy_if) Add assertions.
4157         (remove_equal) Add assertions.
4158         (lexicographical_compare) Rename lexicographical_compare_3way.
4159         (sort) Add assertions.  Rephrase some code.
4160         (is_sorted) New function.
4161
4162 Sun Feb 29 23:24:57 2004  Ben Pfaff  <blp@gnu.org>
4163
4164         Rewrite SORT CASES.
4165
4166         * sort.c: Completely rewrite.
4167
4168         * sort.h: Expose interface via struct sort_cases_pgm, not via
4169         global variables.
4170
4171         * aggregate.c: (sort) New static var.
4172         (cmd_aggregate) Use sort.
4173         (create_sysfile) Ditto.
4174         (aggregate_single_case) Ditto.
4175         (dump_aggregate_info) Ditto.
4176         (agr_00x_end_func) Ditto.
4177         (debug_print) Ditto.
4178
4179         * var.h: (enum SRT_ASCEND) Removed.
4180         (enum SRT_DESCEND) Removed.
4181         (struct sort_cases_proc) Removed.
4182         (struct variable) Remove p.srt member.
4183
4184 Sun Feb 29 23:22:45 2004  Ben Pfaff  <blp@gnu.org>
4185
4186         Get rid of the old, crappy heap structure and replace it by a new,
4187         shiny, C++ STL-like heap structure.
4188         
4189         * Makefile.am: (pspp_SOURCES) Remove heap.c, heap.h.
4190
4191         * algorithm.c: (push_heap) New function.
4192         (heapify) Ditto.
4193         (pop_heap) Ditto.
4194         (make_heap) Ditto.
4195         (sort_heap) Ditto.
4196         (is_heap) Ditto.
4197         
4198         * heap.c: Removed.
4199
4200         * heap.h: Removed.
4201
4202 Sun Feb 29 23:21:53 2004  Ben Pfaff  <blp@gnu.org>
4203
4204         Increase warning level.
4205         
4206         * Makefile.am: (AM_CFLAGS) Remove -Wnouninitialized.
4207
4208 Sat Feb 21 17:38:58 WST 2004 John Darrington <john@darrington.wattle.id.au>
4209
4210         * main.c: Added a signal handler for SIGSEGV requesting a bug report.
4211          
4212 Fri Feb 20 23:22:14 2004  Ben Pfaff  <blp@gnu.org>
4213
4214         * dictionary.c: (dict_create_var) Fix root cause of bug worked
4215         around by previous change log entry.
4216         
4217         * compute.c: (lvalue_finalize) Remove workaround from previous
4218         change log entry.
4219
4220 Fri Feb 20 14:37:41 WAST 2004 John Darrington <john@darrington.wattle.id.au>
4221
4222         * compute.c: Fixed a bug where the Format was not getting set for 
4223           computed variables (thus causing a crash when SAVEing).
4224
4225         * Added a test to stop this bug ever coming back
4226
4227 Wed Feb 18 22:21:35 2004  Ben Pfaff  <blp@gnu.org>
4228
4229         Got rid of approx.h.  In general, replaced all references to
4230         approx_eq() by ==, approx_lt() by <, etc.  Other types of changes
4231         noted below.
4232
4233         * Makefile.am: (pspp_SOURCES) Removed approx.h.
4234
4235         * data-out.c: (try_F) Replaced test for approx_eq(number, 0.0) by
4236         test for mag < EPSILON.
4237
4238         * misc.h: Add definition of EPSILON.
4239
4240 Wed Feb 18 21:32:44 2004  Ben Pfaff  <blp@gnu.org>
4241
4242         * vfm.c: (procedure) Add check to prevent recursive call.
4243
4244 Wed Feb 18 21:48:54 WST 2004 John Darrington <john@darrington.wattle.id.au>
4245
4246         * Moved the declarations relating to values to their own header file
4247           (val.h)
4248
4249         * Added levene.c and levene.h
4250
4251         * vars-atr.c: Changed the signature of compare_values to 
4252         take const * arguments.
4253                 
4254         * t-test.q: Changed the structure of struct t_test_proc 
4255        variables now contain their own group statistics information.
4256        Eventually, t_test_proc might get renamed, because it'd be 
4257        applicable to other commands too.
4258
4259 Mon Feb 16 23:15:51 2004  Ben Pfaff  <blp@gnu.org>
4260
4261         * data-out.c: Clean up.  Changed interface of convert_*() to take
4262         either a `double' or a `const char *' instead of a `const union
4263         value *'.  Update all implementations of those interfaces.
4264         (data_out) Use switch statements instead of a table.
4265         (convert_AHEX) Rewrite.
4266
4267         * format.h: Update comment.
4268
4269 Mon Feb 16 22:14:36 2004  Ben Pfaff  <blp@gnu.org>
4270
4271         * q2c.c: (dump_header) Add an Emacs header line to output files
4272         that makes generated .c files read-only by default, to make it
4273         difficult to accidentally change generated files.
4274
4275 Mon Feb 16 22:12:07 2004  Ben Pfaff  <blp@gnu.org>
4276
4277         * frequencies.q: (compare_freq_numeric_a) Compare by frequency,
4278         not bogus a->v.c <=> b->v.c pointer compare.
4279         (compare_freq_alpha_a) Ditto.
4280         (compare_freq_numeric_d) Ditto.
4281         (compare_freq_alpha_d) Ditto.
4282         
4283 Mon Feb 16 22:00:53 2004  Ben Pfaff  <blp@gnu.org>
4284
4285         Changed data_out() to store string data directly into a `union
4286         value''s s member, not indirectly into c.
4287
4288         * crosstabs.q: (output_pivot_table) Use format_short() instead of
4289         data_out().
4290         (table_value_missing) Ditto.
4291         (float_M_suffix) Ditto.
4292         (format_short) New function.
4293
4294         * data-in.h: (data_in_finite_line) Remove inline definition.
4295
4296         * data-list.c: (destroy_dls_var_spec) New function.
4297         (destroy_dls) Rewrite in terms of destroy_dls_var_spec().
4298         (data_list_source_destroy_source) Avoid cast.
4299         (struct repeating_data_trns) New field `id_value'.  Update
4300         comments.
4301         (cmd_repeating_data) Initialize id_value.  Use new
4302         repeating_data_trns_free() for freeing REPEATING DATA
4303         transformations.
4304         (rpd_parse_record) Rewrite support for record ID to be less bogus.
4305         (repeating_data_trns_free) New function.
4306
4307         * data-out.c: (data_out) Change return type to `void' by replacing
4308         error returns by writing a message into the output buffer.
4309         (convert_A) Read from v->s instead of v->c.
4310         (convert_AHEX) Ditto.
4311
4312         * expr-evl.c: Update comment.
4313         (expr_evaluate) Add assertion in OP_STRING case.
4314
4315         * format.h: (macro MAX_FORMATTED_LEN) New macro.
4316
4317         * list.q: (list_cases) Update for new data_out() semantics.
4318
4319         * print.c: (print_trns_proc) Ditto.
4320
4321         * tab.c: (tab_value) Ditto.
4322         (tab_float) Avoid stupid cast.
4323
4324         * var.h: Update comments.
4325         (macro MAX_STRING) New macro.
4326         (macro MAX_ELEMS_PER_VALUE) New macro.
4327
4328         * vars-atr.c: (compare_values) New function.
4329
4330         * vfm.c: (dump_splits) Update for new data_out() semantics.
4331
4332 Mon Feb 16 21:45:47 2004  Ben Pfaff  <blp@gnu.org>
4333
4334         * crosstabs.q: (struct table_entry) Rename v[] to values[].  All
4335         references updated.
4336         (struct crosstab) Rename v[] to vars[].  All references updated.
4337         (hash_table_entry) Replace the hash algorithm and fix a bug at the
4338         same time, which caused the hash value to depend only on a single
4339         value, not all of the variables' values.
4340         
4341 Mon Feb 16 12:49:53 2004  Ben Pfaff  <blp@gnu.org>
4342
4343         Clean up struct dictionary's value_cnt usage.
4344
4345         * dictionary.c: Add a function comment to each function.
4346         (struct dictionary) Rename value_cnt to next_value_idx, which more
4347         accurately reflects its meaning.  All references updated.
4348         (dict_rename_vars) Add assertion.
4349         (dict_get_value_cnt) Rename dict_get_next_value_idx().  All
4350         references updated.
4351         (dict_get_case_size) New function.
4352
4353         * aggregate.c: (create_sysfile) Use dict_get_case_size().
4354
4355         * get.c: (mtf_read_nonactive_records) Ditto.
4356
4357         * sort.c: (allocate_cases) Ditto.
4358         (write_initial_runs) Ditto.
4359         (merge) Ditto.
4360         (merge_once) Ditto.
4361
4362         * vfm.c: (prepare_for_writing) Ditto.
4363         (setup_lag) Ditto.
4364         (lag_case) Ditto.
4365
4366 Mon Feb 16 00:17:55 2004  Ben Pfaff  <blp@gnu.org>
4367
4368         Make vfm.c slightly less grotesque.
4369
4370         * vfm.c: (filter_var) Removed.
4371         (filter_index) Removed.
4372         (FILTERED macro) Removed.
4373         (exclude_this_case) New function.
4374         (process_active_file_write_case) Use exclude_this_case() instead
4375         of FILTERED and inline tests.
4376         (procedure_write_case) Ditto.
4377         (setup_filter) Removed.
4378         (open_active_file) Don't call setup_filter().
4379         (close_active_file) Call dict_get_filter() instead of checking
4380         filter_var.
4381
4382 Mon Feb 16 00:01:53 2004  Ben Pfaff  <blp@gnu.org>
4383
4384         * var.h: (struct variable) Update comments.
4385
4386 Sun Feb 15 23:14:59 2004  Ben Pfaff  <blp@gnu.org>
4387
4388         New functions dict_create_var_assert(), dict_lookup_var_assert().
4389         Converted several dict_*_var()/assert pairs into a single
4390         dict_*_var_assert().
4391
4392         * dictionary.c: (dict_create_var_assert) New function.
4393         (dict_lookup_var_assert) New function.
4394
4395 Sun Feb 15 23:06:08 2004  Ben Pfaff  <blp@gnu.org>
4396
4397         Got rid of "struct long_vec", envector(), devector(), etc.  Added
4398         two members `init', `reinit' to struct variable as a substitute.
4399         
4400         * Makefile.am: (pspp_SOURCES) Removed cases.c, cases.h.
4401         
4402         * cases.c: Removed.
4403
4404         * cases.h: Removed.
4405
4406         * aggregate.c: (parse_aggregate_functions) destvar doesn't need
4407         init.
4408
4409         * autorecode.c: (cmd_autorecode) destvars don't need init.
4410
4411         * compute.c: (lvalue_finalize) Set reinit.
4412
4413         * data-list.c: (fixed_parse_compatible) Don't need init usually.
4414         (dump_fmt_list) Ditto.
4415         (parse_free) Ditto.
4416
4417         * descript.q: (run_z_pass) Don't need init for z-scores.
4418
4419         * dictionary.c: (dict_create_var) Initialize `init', `reinit'
4420         members.
4421         (dict_clone_var) Copy `reinit' member, initialize `init' member.
4422
4423         * glob.c: (init_glob) Remove vec_init() calls.
4424
4425         * inpt-pgm.c: (cmd_end_input_program) Use `reinit', not `left'.
4426         
4427         * loop.c: (internal_cmd_loop) Don't need to call envector().
4428
4429         * numeric.c: (cmd_numeric) Ditto.
4430         (cmd_string) Ditto.
4431         (cmd_leave) Ditto.  Set `init', `reinit' members.
4432
4433         * recode.c: (cmd_recode) Don't need to call envector().
4434
4435         * repeat.c: (internal_cmd_do_repeat) Ditto.
4436
4437         * var.h: (struct variable) Remove `left'.  Add `init', `reinit'.
4438         (force_create_variable) Removed prototype.
4439         (force_dup_variable) Ditto.
4440
4441         * vector.c: (cmd_vector) Don't need to call envector().
4442
4443         * vfm.c: (reinit_sysmis) Removed.
4444         (reinit_blanks) Removed.
4445         (init_zero) Removed.
4446         (init_blanks) Removed.
4447         (process_active_file_write_case) No need to deal with vectors.
4448         Call clear_temp_case().
4449         (vector_initialization) Rewrite to use `init', `reinit'.
4450         (close_active_file) No need to call vec_clear().
4451         (procedure_write_case) Call clear_temp_case().
4452         (clear_temp_case) New function.
4453
4454 Sun Feb 15 20:50:36 2004  Ben Pfaff  <blp@gnu.org>
4455
4456         * pfm-write.c: (bufwrite) Get rid of nasty cast that also invoked
4457         undefined behavior.
4458
4459 Thu Feb 12 23:35:15 2004  Ben Pfaff  <blp@gnu.org>
4460
4461         Add auxiliary argument to procedure() interface.  Associated small
4462         clean-ups of vfm interface.
4463         
4464         * Updated every caller of procedure() and process_active_file() to
4465         reflect modified interface.  Simple, ordinary changes not listed
4466         otherwise below.
4467
4468         * Updated every function that implements struct case_stream's
4469         `read' function to take a write_case_func and a write_case_data.
4470         Also updated every caller of write_case() to instead call them
4471         through these arguments.  In some cases this meant that the extra
4472         args had to be threaded through a couple of extra levels.  This
4473         wasn't difficult or interesting so the details won't be given.
4474
4475         * data-list.c: (struct repeating_data_trns) Add members
4476         `write_case', `wc_data' as kluge.
4477         (read_one_set_of_repetitions) Rename repeating_data_trns_proc and
4478         make non-static.
4479         (repeating_data_set_write_case) New function.
4480
4481         * data-list.h: New file to declare repeating_data_trns_proc() and
4482         repeating_data_set_write_case().
4483
4484         * inpt-pgm.c: (input_program_source_read) Call
4485         repeating_data_set_write_case() for all the REPEATING DATA
4486         transformations, so that they know where to send their cases.
4487         It's a big kluge.  Also kluge in END CASE.
4488         (end_case_trns_proc) Never called anymore, but we still need it,
4489         so just assert(0).
4490
4491         * sort.c: (read_sort_output) Update to match struct case_stream
4492         `read' member.
4493
4494         * vfm.c: (struct write_case_data) New structure.
4495         (proc_func) Removed.
4496         (virt_proc_func) Removed.
4497         (begin_func) Removed.
4498         (virt_begin_func) Removed.
4499         (end_func) Removed.
4500         (write_case) Removed.
4501         (procedure) Added an auxiliary parameter to each function pointer
4502         argument's prototype.  Added an auxiliary data parameter.
4503         Rewrote.
4504         (process_active_file) Ditto.
4505         (process_active_file_write_case) Pass aux data along.
4506         (close_active_file) Ditto.
4507         (procedure_write_case) Ditto.
4508         (SPLIT_FILE_procfunc) Ditto.
4509
4510         * vfm.h: (typedef write_case_data) New.
4511         (typedef write_case_func) New.
4512         (struct case_stream) Add parameters to `read' member prototype.
4513         
4514 Thu Feb 12 19:24:53 WST 2004 John Darrington <john@darrington.wattle.id.au>
4515
4516         * t-test.q:  Added calculations for independent samples. (But no Levene
4517         test yet!)
4518
4519         * Makefile.am: Moved q_sources_c into own variable 
4520
4521 Wed Feb 11 23:56:51 2004  Ben Pfaff  <blp@gnu.org>
4522
4523         Miscellaneous cleanups.
4524         
4525         * Change unused to UNUSED in many source files to reflect modified
4526         pref.h.  Change use of __WIN32__, __MSDOS, __DJGPP__,
4527         __CYGWIN32__, __unix__, and unix not to assume that they're
4528         defined to a nonzero value.  Change use of __attribute__ to use
4529         NO_RETURN or PRINTF_FORMAT instead.
4530         
4531         * alloc.h: Move definitions for local_alloc(), local_free() here
4532         from ../pref.h.orig and simplify.
4533
4534         * expr-evl.c: Instead of working differently based on PAGED_STACK,
4535         use a pool allocator unconditionally.
4536         (CHECK_STRING_SPACE) Removed.
4537         (ALLOC_STRING_SPACE) Removed.
4538         (expr_evaluate) Use e->pool instead of CHECK_STRING_SPACE and
4539         ALLOC_STRING_SPACE.
4540
4541         * expr-opt.c: (dump_expression) Allocate string pool.
4542
4543         * expr-prs.c: (expr_free) Free string pool.
4544
4545         * pool.c: (pool_destroy) This pool must be removed from its
4546         parent's list of gizmos, not from its own.  Use free_all_gizmos().
4547         (pool_clear) New function.
4548         (free_all_gizmos) New function.
4549         (pool_alloc) Use space in empty block after this one if any.
4550         (pool_release) Only empty out blocks, don't actually free() them.
4551
4552         * print.c: Get rid of PAGED_STACK special case by always
4553         dynamically allocating line buffers.
4554         (struct print_trns) Always include the `line' member.
4555         (internal_cmd_print) Always initialize the `line' member.
4556         (alloc_line) Always allocate memory for `line'.
4557         (print_trns_proc) Always initialize buf from `line' member.
4558         (print_trns_free) Always free `line' memory.
4559
4560         * sort.c: (allocate_file_handles) Special-case MS-DOS for mkdir()
4561         call.
4562         
4563 Wed Feb 11 20:33:18 2004  Ben Pfaff  <blp@gnu.org>
4564
4565         * flip.c: Fixed crash from FLIP when a numeric variable is
4566           specified on NEWNAMES and a large value is used, and a couple of
4567           other minor bugs besides.
4568           (struct varname) Make name a 9-character fixed-size array
4569           instead of a 1-character variable size array.
4570           (make_new_var) Allow digits in variable names.
4571           (flip_stream_write) Limit numeric values to 8 characters and
4572           format system missing and very large and small values more
4573           appropriately.
4574
4575 Thu Feb  5 13:19:06 WAST 2004 John Darrington <john@darrington.wattle.id.au>
4576
4577         * command.c: Fixed test on command return status for the correct 
4578           value,  which had been causing a crash under certain invalid input.
4579
4580 Wed Feb  4 15:34:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
4581
4582         * t-test.q: Added calculations for the one sample variant of the T-TEST
4583
4584 Tue Feb  3 20:09:54 2004  Ben Pfaff  <blp@gnu.org>
4585
4586         * tab.c: (render_strip) Fix bug that sometimes caused joined text
4587           in joined cells to be rendered outside box boundaries.
4588
4589 Tue Feb  3 18:56:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
4590
4591         * random.c (rng_create): Fixed seeding so that it gets reseeded after
4592         SET seed=xx has been called.
4593
4594 Mon Jan 19 14:08:09 2004  Ben Pfaff  <blp@gnu.org> 
4595
4596         * random.c (rng_get_double): Fix always-returning-zero bug in my
4597         preferred way, and at the same time make sure rounding doesn't
4598         bite us.
4599
4600 Thu Jan  1 23:16:41 2004  Ben Pfaff  <blp@gnu.org>
4601
4602         * html.c: (change_attributes) Dead code, removed.
4603         (escape_string) Eliminate code to call change_attributes() that
4604         never actually called it.
4605         (output_tab_table) Get rid of dependence on tab_hit
4606         and struct tab_joined_cell's hit member, which are abominations.
4607
4608         * tab.c: (tab_output_text) Don't call
4609         d->class->text_set_font_by_name if it's a null pointer.
4610         (macro UNROLL_LOOP) Eliminate.
4611         (macro UNROLL_3_LOOPS) Eliminate.
4612         (tabi_render) Rewrite not to use the above macros.
4613
4614 Thu Jan  1 23:09:07 2004  Ben Pfaff  <blp@gnu.org>
4615
4616         Start working on a new output driver system, one that doesn't suck
4617         so much, by adding a "device-independent" output driver.  The idea
4618         is to write out only a single output stream, then use separate
4619         processes to translate them into whatever formats we want.  This
4620         is similar to how "groff" works with its various output drivers
4621         (grops, grotty, grodvi, ...).
4622         
4623         * Makefile.am: (pspp_SOURCES) Add devind.c, devind.h.
4624
4625         * list.q: (write_all_headers) Stub out devind class.
4626         (clean_up) Ditto.
4627         (determine_layout) Ditto.
4628         (list_cases) Ditto.
4629
4630         * output.c: (outp_init) Add devind class.
4631
4632         * devind.c: New file.
4633
4634         * devind.h: New file.
4635
4636 Thu Jan  1 23:08:14 2004  Ben Pfaff  <blp@gnu.org>
4637
4638         * frequencies.q: (hash_value_alpha) Fixed up the previous change
4639         to use the proper string length.
4640
4641 Wed Dec 31 16:27:33 WAST 2003 John Darrington <john@darrington.wattle.id.au>
4642
4643         * Fixed bug where FREQ would crash on alpha values
4644
4645 Tue Dec 30 22:42:57 2003  Ben Pfaff  <blp@gnu.org>
4646
4647         * Removed bletcherous alloca() workarounds for AIX from top of
4648         many files.  AIX can use the alternative alloca() implementation
4649         instead.
4650
4651 Tue Dec 30 22:35:16 2003  Ben Pfaff  <blp@gnu.org>
4652
4653         * ascii.c: (ascii_option) Fix implementation of headers option.
4654
4655 Tue Dec 30 22:32:53 2003  Ben Pfaff  <blp@gnu.org>
4656
4657         * ascii.c: Add a "squeeze" option to the ASCII driver to squeeze
4658         multiple blank lines into one.
4659         (struct ascii_driver_ext) Add squeeze_blank_lines option.
4660         (ascii_preopen_driver) Initialize squeeze_blank_lines.
4661         (static var option_tab) Add squeeze entry.
4662         (ascii_option) Set squeeze_blank_lines.
4663         (output_lines) Implement squeezing blank lines.
4664
4665 Wed Dec 31 07:19:46 WST 2003 John Darrington <john@darrington.wattle.id.au>
4666
4667         * Removed redundant code from output.h
4668
4669 Sat Dec 27 22:17:52 2003  Ben Pfaff  <blp@gnu.org>
4670
4671         Dictionary classes: each variable is "ordinary", "system", or
4672         "scratch".
4673
4674         * var.h: (enum dict_class) New enum.
4675
4676         * vars-prs.c: (dict_class_from_id) New function.
4677         (dict_class_to_name) New function.
4678
4679 Sat Dec 27 22:16:06 2003  Ben Pfaff  <blp@gnu.org>
4680
4681         * var.h: (struct freq_tab_set) Removed (not used).
4682
4683 Sat Dec 27 22:15:21 2003  Ben Pfaff  <blp@gnu.org>
4684
4685         * value-labels.c: (val_labs_destroy) vls needs to be freed too.
4686
4687 Sat Dec 27 22:10:49 2003  Ben Pfaff  <blp@gnu.org>
4688
4689         * stats.c: (hypercube) Rename pow4().  All references updated.
4690
4691 Sat Dec 27 22:05:49 2003  Ben Pfaff  <blp@gnu.org>
4692
4693         * rename-vars.c: (cmd_rename_variables) Rewritten.
4694         (compare_name) Removed.
4695
4696 Sat Dec 27 22:03:51 2003  Ben Pfaff  <blp@gnu.org>
4697
4698         var_set feature, and code taking advantage of it.
4699         
4700         * crosstabs.q: (static var var_dict) Removed.
4701         (static var variables) New variable.
4702         (static var variables_cnt) New variable.
4703         (cmd_crosstabs) Free variables instead of var_dict.
4704         (internal_cmd_crosstabs) Initialize and use variables,
4705         variables_cnt instead of var_dict.
4706         (free_var_dict) Removed.
4707         (crs_custom_tables) Use var_set instead of a copied dictionary.
4708         (crs_custom_variables) Set up variables, variables_cnt instead of
4709         var_dict.
4710         [DEBUGGING] (debug_print) Ditto.
4711
4712         * means.q: (mns_custom_tables) Use var_set instead of a copied
4713         dictionary.
4714
4715         * vars-prs.c: (parse_vs_variable) New function.
4716         (parse_dict_variable) Rewritten.
4717         (parse_variable) Rewritten.
4718         (parse_variables) Renamed parse_var_set_vars(), rewritten.
4719         (parse_variables) New function in terms of parse_var_set_vars().
4720         Now requires its first argument to be non-null.  All references
4721         that passed a null pointer updated to pass default_dict instead.
4722         (macro id_dict) Removed.
4723         (parse_DATA_LIST_vars) Add assertions.
4724         (parse_mixed_vars) Ditto.
4725         (struct var_set) New structure.
4726         (var_set_get_cnt) New function.
4727         (var_set_get_var) New function.
4728         (var_set_lookup_var) New function.
4729         (var_set_destroy) New function.
4730         (dict_var_set_get_cnt) New function.
4731         (dict_var_set_get_var) New function.
4732         (dict_var_set_lookup_var) New function.
4733         (dict_var_set_destroy) New function.
4734         (var_set_create_from_dict) New function.
4735         (struct array_var_set) New structure.
4736         (array_var_set_get_cnt) New function.
4737         (array_var_set_get_var) New function.
4738         (array_var_set_lookup_var) New function.
4739         (array_var_set_destroy) New function.
4740         (var_set_create_from_array) New function.
4741
4742         * q2c.c: (dump_parser) Use parse_variables(default_dict, ...)
4743         instead of parse_variables(NULL, ...) in output code.
4744
4745 Sat Dec 27 21:38:53 2003  Ben Pfaff  <blp@gnu.org>
4746
4747         Change inp_init from a 2-bit vector to an ordinary array.
4748         Initialize it all in cmd_end_input_program() instead of in
4749         create_variable().
4750
4751         * inpt-pgm.c: (enum value_init_type) New enum.
4752         (global var inp_init) Change to `enum value_init_type *', make
4753         static.
4754         (inp_init_size) Removed.
4755         (inp_nval) Change to `size_t', make static.
4756         (cmd_input_program) Don't initialize inp_init or inp_init_size.
4757         (cmd_end_input_program) Initialize inp_init, inp_nval.
4758         (init_case) Rewrite.
4759         (clear_case) Rewrite.
4760
4761         * inpt-pgm.h: Removed.
4762
4763 Sat Dec 27 21:36:38 2003  Ben Pfaff  <blp@gnu.org>
4764
4765         * hash.c: (hsh_hash_bytes) Use Fowler-Noll-Vo hash instead of
4766         Colin Plumb hash.  It is simpler and should better resist
4767         collisions.
4768         (hsh_hash_string) Ditto.
4769
4770 Sat Dec 27 21:34:57 2003  Ben Pfaff  <blp@gnu.org>
4771
4772         * get.c: (export_write_case_func) Remove debug printing code.
4773
4774 Sat Dec 27 21:11:09 2003  Ben Pfaff  <blp@gnu.org>
4775
4776         * get.c: (cmd_save_internal) Rename parameter.  Use &t->h instead
4777         of cast.
4778         (save_write_case_func) Use &trns->h instead of cast.
4779         (cmd_export) Use &t->h instead of cast.
4780
4781 Sat Dec 27 20:57:42 2003  Ben Pfaff  <blp@gnu.org>
4782
4783         Moved vectors into the dictionary.
4784
4785         * var.h: (struct vector) Moved here from vector.h.  `index' member
4786         renamed `idx', `v' renamed `var', `nv' renamed `cnt'.  All
4787         references updated.
4788         
4789         * vector.h: Removed.
4790
4791         * vector.c: (global var vec) Removed.
4792         (global var nvec) Removed.
4793         (cmd_vector) Rewritten.
4794         (find_vector) Removed.
4795
4796         * dictionary.c: (dict_create_vector) New function.
4797         (dict_get_vector) New function, replaces reading global vec[]
4798         array.
4799         (dict_get_vector_cnt) New function, replaces reading global nvec
4800         variable.
4801         (dict_lookup_vector) New function, replaces find_vector().
4802         (dict_clear_vectors) New function.
4803
4804 Sat Dec 27 20:54:01 2003  Ben Pfaff  <blp@gnu.org>
4805
4806         Start to move away from `struct variable' p `union' member to void
4807         * aux member.
4808
4809         * var.h: (struct variable) Add `aux' member.
4810
4811 Sat Dec 27 20:36:25 2003  Ben Pfaff  <blp@gnu.org>
4812
4813         Get rid of struct variable `foo' member.
4814
4815         * frequencies.q: (internal_cmd_frequencies) Use p.frq.used instead
4816         of foo.
4817         (frq_custom_variables) Ditto.
4818         (frq_custom_grouped) Ditto.
4819
4820         * get.c: (struct save_trns) Change `var' member from `int *' to
4821         `struct variable **'.
4822         (cmd_save_internal) Use aux instead of foo.
4823         (save_trns_proc) Use revised `var' member.
4824         (static var mtf_seq_no) Renamed mtf_seq_num.
4825         (static var mtf_seq_nums) New static var.
4826         (cmd_match_files) Initialize mtf_seq_nums.
4827         (mtf_free) Free mtf_seq_nums.
4828         (mtf_processing) Use mtf_seq_nums instead of foo.
4829         (mtf_merge_dictionary) No need to initialize mv->foo.
4830         (cmd_export) Use aux instead of foo.  Use revised `var' member.
4831         (mns_custom_tables) Don't use foo to check for duplicates, that's
4832         what PV_NO_DUPLICATE is for.
4833
4834         * var.h: (struct variable) Remove `foo' member.
4835         (struct frequencies_proc) New member.
4836         
4837 Sat Dec 27 19:46:13 2003  Ben Pfaff  <blp@gnu.org>
4838
4839         Clean up COMPUTE and IF.
4840
4841         * compute.c: More or less rewrite the darn thing.
4842         (struct compute_trns) Rename and reorder and add and delete
4843         members.
4844         (cmd_compute) Rewrite.
4845         (compute_num) Make conditional on test expression.  Now used for
4846         both COMPUTE and IF.
4847         (compute_num_vec) Ditto.
4848         (compute_str) Ditto.
4849         (compute_str_vec) Ditto.
4850         (cmd_if) Rewrite.
4851         (if_num) Removed.
4852         (if_num_vec) Removed.
4853         (if_str) Removed.
4854         (if_str_vec) Removed.
4855         (parse_target_expression) Renamed parse_rvalue_expression(),
4856         rewritten.
4857         (new_trns) Renamed compute_trns_create(), rewritten.
4858         (delete_trns) Removed.
4859         (free_trns) Renamed compute_trns_free(), rewritten.
4860         (struct lvalue) New structure.
4861         (parse_var_or_vec) Renamed lvalue_parse(), rewritten.
4862         (lvalue_get_type) New function.
4863         (lvalue_is_vector) New function.
4864         (lvalue_finalize) New function.
4865         (lvalue_destroy) New function.
4866         
4867 Sat Dec 27 19:44:14 2003  Ben Pfaff  <blp@gnu.org>
4868
4869         * command.def: Disallow MODIFY VARS in input mode, so that
4870         variables can't get dropped and confuse cmd_end_input_program()'s
4871         attempt to fill inp_init[].
4872         
4873         * modify-vars.c: (static var forward_positional_ordering) New
4874         variable.
4875         (struct var_modification) Entirely changed.
4876         (rearrange_dict) Interface changed, rewritten.
4877         (cmd_modify_vars) Deal with modified struct var_modification, much
4878         rewritten.
4879         (struct var_renaming) New structure.
4880         (compare_var_renaming_by_new_name) New function.
4881         (validate_var_modification) New function.
4882
4883         * var.h: (struct modify_vars_proc) Removed.
4884         (struct variable) Removed member p.mfv.
4885
4886 Sat Dec 27 19:40:26 2003  Ben Pfaff  <blp@gnu.org>
4887
4888         Make EVALUATE a valid command whether we're debugging or not, so
4889         that `make check' can succeed regardless of whether debugging is
4890         turned on.
4891         
4892         * command.def: [GLOBAL_DEBUGGING] Drop the #if.
4893
4894         * compute.c: [GLOBAL_DEBUGGING] (cmd_evaluate) Drop the #if.
4895
4896 Sat Dec 27 19:34:40 2003  Ben Pfaff  <blp@gnu.org>
4897
4898         * apply-dict.c: (cmd_apply_dictionary) Replace a ghastly switch
4899         statement by a simple if test.
4900
4901         * dfm.c: (dfm_get_record) Add assertion.
4902
4903 Sat Dec 27 17:51:26 2003  Ben Pfaff  <blp@gnu.org>
4904
4905         For each file x.c, move #include "x.h" to the very top of the
4906         include list, to catch x.h failing to include the proper headers.
4907
4908 Sat Dec 27 17:50:19 2003  Ben Pfaff  <blp@gnu.org>
4909
4910         * algorithm.c: (find) New function.
4911         (remove_equal) New function.
4912         (set_difference) New function.
4913         (adjacent_find_equal) New function.
4914         [TEST_UNIQUE] Removed test case.
4915         (copy_if) Find end test.
4916
4917 Sat Dec 27 17:42:45 2003  Ben Pfaff  <blp@gnu.org>
4918
4919         * dictionary.c: (dict_get_case_weight) New convenience function.
4920
4921         * aggregate.c: (accumulate_aggregate_info) Use
4922         dict_get_case_weight().
4923
4924         * frequencies.q: (calc_general) Ditto.
4925         (calc_integer) Ditto.
4926         (calc) Ditto.
4927
4928         * t-test.q: (groups_calc) Ditto.
4929         (z_calc) Ditto.
4930
4931 Sat Dec 27 17:29:45 2003  Ben Pfaff  <blp@gnu.org>
4932
4933         * glob.c: (global var default_dict) Change from `struct
4934         dictionary' to `struct dictionary *'.  All references changed.
4935         (init_glob) Initialize default_dict with dict_create().
4936
4937 Sat Dec 27 17:06:06 2003  Ben Pfaff  <blp@gnu.org>
4938
4939         struct dictionary now made opaque.  All related functions:
4940
4941         * get.c: (rename_variables) Removed.
4942         (dict_delete_run) Removed.
4943         
4944         * temporary.c: (copy_variable) Removed.
4945         (new_dictionary) Removed.
4946         (save_dictionary) Removed.
4947         (restore_dictionary) Removed.
4948         (free_dictionary) Removed.
4949
4950         * vars-atr.c: (clear_default_dict) Removed.
4951         (find_variable) Removed.
4952         (find_dict_variable) Removed.
4953         (create_variable) Removed.
4954         (delete_variable) Removed.
4955         (common_init_stuff) Removed.
4956         (init_variable) Removed.  Updating of inp_init moved into
4957         cmd_end_input_program().
4958         (replace_variable) Removed.
4959         (rename_variable) Removed.
4960         (clear_variable) Removed.
4961         (dup_variable) Removed.
4962
4963         * vars-prs.c: (is_varname) Removed.
4964         (is_dict_varname) Removed.
4965         (fill_all_vars) Removed.
4966
4967         * vector.c: (find_vector) Removed.
4968
4969         * weight.c: (stop_weighting) Removed.
4970
4971         * dictionary.c: New file.
4972         (dict_create) New, replaces new_dictionary().
4973         (dict_clone) New, replaces save_dictionary() and
4974         restore_dictionary().
4975         (dict_clear) New, replaces clear_default_dict().
4976         (dict_destroy) New, replaces free_dictionary().
4977         (dict_get_var_cnt) New function, replaces references to
4978         dict->nvar.
4979         (dict_get_var) New function, replaces references to dict->var[i].
4980         (dict_get_vars) New function, replaces fill_all_vars().
4981         (dict_create_var) New, replaces create_variable().  Interface
4982         drops `type' parameter, using a zero `width' to designate numeric.
4983         (dict_clone_var) New, replaces dup_variable().
4984         (dict_rename_var) New, replaces rename_variable().
4985         (dict_lookup_var) New, replaces find_variable(),
4986         find_dict_variable(), is_varname().
4987         (dict_contains_var) New function.
4988         (compare_variable_dblptrs) New function.
4989         (dict_delete_var) New function, replaces clear_variable().
4990         (dict_delete_vars) New function, replaces dict_delete_run().
4991         (dict_reorder_vars) New function.
4992         (dict_rename_vars) New function, replaces rename_variables().
4993         (dict_get_weight) New function, replaces reading dict->weight_var.
4994         (dict_set_weight) New function, replaces writing dict->weight_var
4995         or calling stop_weight(dict).
4996         (dict_get_filter) New function, replaces reading dict->filter_var.
4997         (dict_set_filter) New function, replaces writing dict->filter_var.
4998         (dict_get_case_limit) New function, replaces reading dict->N.
4999         (dict_set_case_limit) New function, replaces writing dict->N.
5000         (dict_get_value_cnt) New function, replaces reading dict->nval.
5001         (dict_compact_values) New function, replaces a loop that was
5002         replicated in several places.
5003         (dict_get_split_vars) New function, replaces reading dict->splits.
5004         (dict_get_split_cnt) New function, replaces reading
5005         dict->n_splits.
5006         (dict_set_split_vars) New function, replaces writing dict->splits.
5007         (dict_get_label) New function, replaces reading dict->label.
5008         (dict_set_label) New function, replaces writing dict->label.
5009         (dict_get_documents) New function, replaces reading
5010         dict->documents.
5011         (dict_set_documents) New function, replaces writing
5012         dict->documents.
5013         
5014         All references to above functions updated.
5015         
5016         * aggregate.c: (cmd_aggregate) Copy file label and documents from
5017         old dictionary to new by hand, because dict_create() can't do it
5018         itself.  Use dict_set_documents(), dict_set_split_vars().
5019
5020         * temporary.c: (cancel_temporary) Also set temp_dict to NULL after
5021         calling dict_destroy().
5022
5023         * data-list.c: (dls_var_spec) Remove `type' member, replace by
5024         `width'.
5025         (fixed_parse_compatible) Some slightly nontrivial changes for
5026         dict_create_var().
5027         (dump_fmt_list) Ditto.
5028         (parse_free) Ditto.
5029
5030         * file-type.c: (create_col_var) Ditto.
5031
5032         * get.c: (cmd_get) Use dict_compact_values() instead of a loop.
5033         (trim_dictionary) Use dict_delete_vars(), dict_reorder_vars().
5034         (rename_variables) Use dict_rename_vars().
5035         (mtf_merge_dictionary) Use dict_get_documents(),
5036         dict_set_documents(), dict_compact_values().
5037
5038         * pfm-read.c: (read_variables) Deal with changes to weighting.
5039
5040         * q2c.c: (dump_parser) Use dict_lookup_var() instead of
5041         is_varname() in output code.
5042
5043         * sfm-read.c: (read_header) Use dict_create(), dict_set_label(),
5044         other dictionary functions.
5045
5046         * title.c: (add_document_line) Use dict_get_documents(),
5047         dict_set_documents().
5048
5049         * vars-atr.c: (discard_variables) Use dict_clear(default_dict),
5050         reset default_handle by hand.  dict_clear() will clear vectors so
5051         there's no need for that by hand.
5052
5053         * vfm.c: (close_active_file) Move call to finish_compaction()
5054         earlier, so that we can do the compaction as a single step using
5055         dict_compact_values().  Use dict_clear_vectors().
5056         (finish_compaction) Use dict_delete_var(), dict_compact_values().
5057                 
5058         Some functions don't have replacements:
5059
5060         * vars-atr.c: (force_create_variable) Removed.  All references
5061         updated to dict_create_var() followed by an assertion.
5062         (force_dup_variable) Removed.  All references updated to
5063         dict_clone_var() followed by an assertion.
5064         
5065         * weight.c: (update_weighting) Removed.  No longer necessary, so
5066         all references removed.
5067
5068 Sat Dec 27 16:43:01 2003  Ben Pfaff  <blp@gnu.org>
5069
5070         Clean up AGGREGATE.
5071         
5072         * aggregate.c: Eliminate separation of weighted and unweighted
5073         case.  It made the code too obscure and I doubt it was actually
5074         faster.  Instead, all code uses the "weighted" code, because
5075         that's a generalization of the "unweighted" code.
5076         (FWEIGHT) Removed.
5077         (FOPTIONS) Ditto.
5078         (parse_aggregate_functions) No need to set FWEIGHT.
5079         (accumulate_aggregate_info) Get rid of FWEIGHT cases.
5080         (dump_aggregate_info) Ditto.
5081         (initialize_aggregate_info) No need for special plain_function
5082         that gets rid of FWEIGHT option.
5083
5084         * aggregate.c: Get rid of approximations.
5085         (accumulate_aggregate_info) Don't use approx_gt(), approx_lt(),
5086         approx_in_range().
5087         (aggregate_single_case) Don't use approx_ne().
5088
5089 Sat Dec 27 16:19:36 2003  Ben Pfaff  <blp@gnu.org>
5090
5091         * ascii.c (ascii_line_width): Dead code, removed.
5092
5093         * postscript.c (ps_line_width): Ditto.
5094
5095         * q2c.c (xrealloc): Ditto.
5096
5097         * count.c (internal_cmd_count): Ditto.
5098
5099         * means.q (validate_dependent_endpoint): Ditto.
5100
5101         * set.q: (cmd_gset) Ditto.
5102
5103         * weight.c: [0] (weight_trns_proc) Ditto.
5104
5105 Sat Dec 27 16:18:16 2003  Ben Pfaff  <blp@gnu.org>
5106
5107         Make the code -Wmissing-prototypes clean.
5108
5109         * Makefile.am (version.c): Add #include "version.h".
5110         
5111         * ascii.c: (ascii_open_global) Make static.
5112         (ascii_close_page) Ditto.
5113         (ascii_font_sizes) Ditto.
5114         (ascii_postopen_driver) Ditto.
5115         (ascii_close_driver) Ditto.
5116         (ascii_option) Ditto.
5117         (ascii_open_page) Ditto.
5118         (ascii_line_horz) Ditto.
5119         (ascii_line_vert) Ditto.
5120         (ascii_line_intersection) Ditto.
5121         (ascii_box) Ditto.
5122         (ascii_polyline_begin) Ditto.
5123         (ascii_polyline_point) Ditto.
5124         (ascii_polyline_end) Ditto.
5125         (ascii_text_set_font_by_name) Ditto.
5126         (ascii_text_set_font_by_position) Ditto.
5127         (ascii_text_set_font_by_family) Ditto.
5128         (ascii_text_get_font_name) Ditto.
5129         (ascii_text_get_font_family) Ditto.
5130         (ascii_text_set_size) Ditto.
5131         (ascii_text_get_size) Ditto.
5132         (ascii_text_metrics) Ditto.
5133         (ascii_text_draw) Ditto.
5134         (ascii_close_page) Ditto.
5135
5136         * cmdline.h: New header for parse_command_line().  Used where
5137         needed.
5138
5139         * command.c: Move prototypes for cmd_*() functions to command.h.
5140
5141         * command.h: Prototypes for cmd_*() functions moved here from
5142         command.c.
5143
5144         * crosstabs.q: (gamma_int) Ditto.
5145
5146         * file-handle.h: Add fh_init_files() prototype.
5147         
5148         * getline.c: (welcome) Ditto.
5149
5150         * glob.h: New header for init_glob().  Used where appropriate.
5151
5152         * hash.c: (comparison_helper) Ditto.
5153
5154         * html.c: (html_open_global) Ditto.
5155         (html_close_global) Ditto.
5156         (html_preopen_driver) Ditto.
5157         (html_postopen_driver) Ditto.
5158         (html_close_driver) Ditto.
5159         (html_option) Ditto.
5160         (html_open_page) Ditto.
5161         (html_close_page) Ditto.
5162         (html_submit) Ditto.
5163
5164         * inpt-pgm.c: (input_program_source_read) Ditto.
5165
5166         * output.c: (find_defn_value) Ditto.
5167         (destroy_list) Ditto.
5168
5169         * pfm-read.c: (read_int) Ditto.
5170
5171         * postscript.c: (ps_open_global) Ditto.
5172         (ps_close_global) Ditto.
5173         (ps_font_sizes) Ditto.
5174         (ps_preopen_driver) Ditto.
5175         (ps_postopen_driver) Ditto.
5176         (ps_close_driver) Ditto.
5177         (ps_option) Ditto.
5178         (ps_open_page) Ditto.
5179         (ps_close_page) Ditto.
5180         (ps_line_horz) Ditto.
5181         (ps_line_vert) Ditto.
5182         (ps_line_intersection) Ditto.
5183         (ps_box) Ditto.
5184         (ps_polyline_begin) Ditto.
5185         (ps_polyline_point) Ditto.
5186         (ps_polyline_end) Ditto.
5187         (ps_text_set_font_by_name) Ditto.
5188         (ps_text_set_font_by_position) Ditto.
5189         (ps_text_set_font_family) Ditto.
5190         (ps_text_get_font_name) Ditto.
5191         (ps_text_get_font_family) Ditto.
5192         (ps_text_set_size) Ditto.
5193         (ps_text_get_size) Ditto.
5194         (ps_text_metrics) Ditto.
5195         (ps_text_draw) Ditto.
5196
5197         * q2c.c: (finish_up) Ditto.
5198         (xmalloc) Ditto.
5199         (xstrdup) Ditto.
5200         (get_buffer) Ditto.
5201         (st_lower) Ditto.
5202         (st_upper) Ditto.
5203         (skip_ws) Ditto.
5204         (get_line) Ditto.
5205         (add_symbol) Ditto.
5206         (find_symbol) Ditto.
5207         (lex_get) Ditto.
5208         (force_id) Ditto.
5209         (force_string) Ditto.
5210         (match_id) Ditto.
5211         (match_token) Ditto.
5212         (skip_token) Ditto.
5213         (parse) Ditto.
5214         (parse_setting) Ditto.
5215         (parse_specifier) Ditto.
5216         (parse_specifiers) Ditto.
5217         (parse_subcommand) Ditto.
5218         (dump_specifier_vars) Ditto.
5219         (is_keyword) Ditto.
5220         (make_identifier) Ditto.
5221         (dump_declarations) Ditto.
5222         (dump_specifier_init) Ditto.
5223         (dump_vars_init) Ditto.
5224         (make_match) Ditto.
5225         (dump_specifier_parse) Ditto.
5226         (dump_subcommand) Ditto.
5227         (dump_parser) Ditto.
5228         (dump_header) Ditto.
5229         (dump_free) Ditto.
5230         (recognize_directive) Ditto.
5231
5232         * recode.c: (string_to_long) Ditto.
5233
5234         * repeat.c: (find_DO_REPEAT_substitution) Ditto.
5235
5236         * repeat.h: New header for perform_DO_REPEAT_substitutions, used
5237         where appropriate.
5238
5239         * sort.c: (sort_stream_read) Ditto.
5240         (sort_stream_mode) Ditto.
5241         
5242 Fri Dec 19 23:35:04 2003  Ben Pfaff  <blp@gnu.org>
5243
5244         * algorithm.c (binary_search): Fix comparison.
5245
5246 Fri Dec 19 23:27:45 2003  Ben Pfaff  <blp@gnu.org>
5247
5248         * algorithm.c: (binary_search) Fix assertion.
5249
5250 Fri Dec 19 21:31:48 2003  Ben Pfaff  <blp@gnu.org>
5251
5252         * sysfile-info.c: (compare_vectors_by_name) Rewrite.
5253
5254 Fri Dec 19 21:30:24 2003  Ben Pfaff  <blp@gnu.org>
5255
5256         * sort.c: (compare_case_lists) Rewrite.
5257
5258 Fri Dec 19 16:44:22 2003  Ben Pfaff  <blp@gnu.org>
5259
5260         * quicksort.c: Removed (not used).
5261
5262         * quicksort.h: Removed (not used).
5263
5264         * sort.c: Removed blp_quicksort() prototype.
5265
5266 Fri Dec 19 16:42:13 2003  Ben Pfaff  <blp@gnu.org>
5267
5268         * postscript.c: (int_2_compare) Rewrite.
5269         (compare_line) Rewrite.
5270
5271 Fri Dec 19 16:38:35 2003  Ben Pfaff  <blp@gnu.org>
5272
5273         * matrix-data.c (compare_factors) Use lexicographical_compare()
5274         algorithm.
5275         (compare_doubles) New function.
5276         
5277         * algorithm.c: (lexicographical_compare) New algorithm.
5278
5279 Fri Dec 19 16:23:45 2003  Ben Pfaff  <blp@gnu.org>
5280
5281         * matrix-data.c (compare_variables_by_mxd_vartype): Rewrite.
5282
5283 Fri Dec 19 15:54:45 2003  Ben Pfaff  <blp@gnu.org>
5284
5285         * expr-prs.c: (cmp_func) Removed.
5286         (parse_function) Use binary_search() algorithm.
5287         (compare_functions) New function.
5288         (init_func_tab) Use sort() algorithm.
5289
5290         * algorithm.c: (binary_search) New algorithm.
5291
5292 Fri Dec 19 15:50:45 2003  Ben Pfaff  <blp@gnu.org>
5293
5294         * descript.q: (display) Use sort() algorithm instead of qsort().
5295         (compare_func) Removed.
5296         (descriptives_compare_variables) New function.
5297
5298 Fri Dec 19 15:08:38 2003  Ben Pfaff  <blp@gnu.org>
5299
5300         Get rid of AVL trees.  Hashes are more appropriate for everything
5301         PSPP does.
5302
5303         * Makefile.am: (pspp_SOURCES) Remove avl.c, avl.h.
5304         
5305         * avl.c: Removed.
5306
5307         * avl.h: Removed.
5308
5309 Fri Dec 19 14:33:31 2003  Ben Pfaff  <blp@gnu.org>
5310
5311         Much code can be clarified by using C++ STL-like algorithms.  Not
5312         all uses of these algorithms are listed below, only the ones where
5313         the change to an algorithm was the only change of interest.
5314         
5315         * Makefile.am: (pspp_SOURCES) Add algorithm.c, algorithm.h.
5316         
5317         * algorithm.c: New file.
5318
5319         * algorithm.h: New file.
5320
5321         * modify-vars.c: (static var forward) Removed.
5322         (static var positional) Removed.
5323         (compare_variables) Removed.
5324         (struct ordering) New.
5325         (cmd_modify_vars) Use sort() algorithm.
5326         (compare_variables_given_ordering) New function.
5327         (rearrange_dict) Use sort() algorithm.
5328
5329         * sysfile-info.c: (cmd_display) Use sort() algorithm.
5330         (cmp_var_by_name) Removed.
5331
5332 Fri Dec 19 14:26:17 2003  Ben Pfaff  <blp@gnu.org>
5333
5334         Make file handles use a hash table.
5335         
5336         * file-handle.q: (files) Change to hash table, make static.
5337         (cmd_file_handle) Use hash table functions.
5338         (fh_get_handle_by_filename) Ditto.
5339         (fh_get_handle_by_name) Ditto.
5340         (hash_file_handle) New function.
5341         (cmp_file_handle) Rewrite.
5342         (fh_init_files) Use hash table functions.
5343
5344 Fri Dec 19 14:24:38 2003  Ben Pfaff  <blp@gnu.org>
5345
5346         Clean up FREQUENCIES.
5347         
5348         * Makefile.am: (pspp_SOURCES) Remove frequencies.g.
5349
5350         * frequencies.q: Remove a lot of old #if'd out code at the end.
5351         (internal_cmd_frequencies) Use calc() instead of calc_no_weight()
5352         or calc_weight().  Initialize percentile_values.
5353         (calc) New function based on calc_weight() from frequencies.g.
5354         (precalc) Use hash functions.
5355         (static var comparison_func) Removed.
5356         (static var comparison_param) Removed.
5357         (comparison_helper) Removed.
5358         (get_freq_comparator) New function.
5359         (not_missing) New function.
5360         (add_freq) Removed.
5361         (postprocess_freq_tab) Use hash table functions, algorithms,
5362         get_freq_comparator().  Rewrite.
5363         (cleanup_freq_tab) Rephrase.
5364         (add_percentile) Clean up spacing.
5365         (hash_value_numeric) New function.
5366         (hash_value_alpha) New function.
5367         (compare_value_numeric_a) Rewrite.
5368         (compare_value_alpha_a) Rewrite.
5369         (compare_value_numeric_d) Rewrite.
5370         (compare_value_alpha_d) Rewrite.
5371         (compare_freq_numeric_a) Rewrite.
5372         (compare_freq_alpha_a) Rewrite.
5373         (compare_freq_numeric_d) Rewrite.
5374         (compare_freq_alpha_d) Rewrite.
5375         (calc_stats) Clean up mode, percentiles, max.
5376         (dump_statistics) Clean up spacing.
5377         
5378         * frequencies.g: Removed.
5379
5380         * var.h: (struct freq_tab) Change `data' to hash table.
5381
5382 Fri Dec 19 14:15:46 2003  Ben Pfaff  <blp@gnu.org>
5383
5384         * file-handle.h: Remove declaration of global variable `files',
5385         which wasn't used anywhere.
5386
5387         * postscript.c: (add_encoding) Remove superfluous cast.
5388         (line) Ditto.
5389
5390         * sfm-read.c: [linux] (bswap_int32) Drop ntohl() non-portable
5391         version.
5392
5393         * temporary.c: [0] (display_tree) Removed.
5394
5395 Fri Dec 19 14:13:04 2003  Ben Pfaff  <blp@gnu.org>
5396
5397         Implement a new random number generator based on the alleged RC4
5398         algorithm.
5399
5400         * expr-evl.c: (expr_evaluate) Use rng_get_double_normal() instead
5401         of rand_normal().
5402
5403         * random.c: [!HAVE_GOOD_RANDOM] (real_rand) Removed.
5404         [!HAVE_GOOD_RANDOM] (real_srand) Removed.
5405         (macro k) Removed.
5406         (static var V[]) Removed.
5407         (static var Y) Removed.
5408         (static var X2) Removed.
5409         (setup_randomize) Removed.
5410         (shuffle) Removed.
5411         (rand_uniform) Removed.
5412         (rand_normal) Removed.
5413         (struct rng) New structure.
5414         (rng_create) New function.
5415         (rng_destroy) New function.
5416         (swap_byte) New static function.
5417         (rng_seed) New function.
5418         (rng_get_bytes) New function.
5419         (rng_get_int) New function.
5420         (rng_get_unsigned) New function.
5421         (rng_get_double) New function.
5422         (rng_get_double_normal) New function.
5423         (pspp_rng) New function.
5424
5425         * random.h: Sync up to random.c.
5426
5427         * sample.c: (struct sample_trns) Make `frac' unsigned and a
5428         fraction of UINT_MAX, not 65536.
5429         (cmd_sample) Use rng_get_unsigned(), rng_get_double(), UINT_MAX
5430         fraction.
5431
5432         * vfm.c: (open_active_file) No need to call setup_randomize() any
5433         longer.
5434
5435 Fri Dec 19 12:05:56 2003  Ben Pfaff  <blp@gnu.org>
5436
5437         Change dictionary name indexes to use hash tables instead of AVL
5438         trees.
5439
5440         * crosstabs.q: (free_var_dict) Use hash tables.
5441         (crs_custom_tables) Ditto.
5442         (calc_general) Ditto.
5443         (compare_table_entry) Rewrite.
5444         (enum_var_values) Reorder parameters.  All references updated.
5445         Rewrite.
5446
5447         * get.c: (rename_variable) Use hash tables.
5448         (mtf_merge_dictionary) Ditto.
5449
5450         * glob.c: (init_glob) Use hash tables.
5451         (cmp_variable) Removed.
5452
5453         * means.q: (mns_custom_tables) Use hash tables.
5454
5455         * modify-vars.c: (rearrange_dict) Use hash tables.
5456
5457         * rename-vars.c: (cmd_rename_variables) Use hash tables.
5458
5459         * sfm-read.c: (read_header) Use hash tables.
5460         (read_variables) Ditto.
5461
5462         * temporary.c: (new_dictionary) Use hash tables.
5463         (save_dictionary) Ditto.
5464         (restore_dictionary) Ditto.
5465
5466         * var.h: (struct dictionary) Change AVL tree `var_by_name' into
5467         hash table `name_tab'.
5468
5469         * vars-atr.c: [DEBUGGING] (dump_one_var_node) Removed.
5470         [DEBUGGING] (dump_var_tree) Removed.
5471         (find_variable) Use hash tables.
5472         (find_dict_variable) Ditto.
5473         (common_init_stuff) Ditto.
5474         (rename_variable) Ditto.
5475         (clear_variable) Ditto.  Also, remove debug code.
5476         (dup_variable) Use hash tables.
5477
5478         * vars-prs.c: (fill_all_vars) Use hash tables.
5479         (is_dict_varname) Ditto.
5480         (parse_dict_variable) Ditto.
5481         
5482 Fri Dec 19 11:46:23 2003  Ben Pfaff  <blp@gnu.org>
5483
5484         Change value labels to use hash tables instead of AVL trees, and
5485         change value labels into an ADT.
5486
5487         * Makefile.am: (pspp_SOURCES) Add value-labels.c, value-labels.h.
5488         
5489         * value-labels.c: New file.
5490
5491         * value-labels.h: New file.
5492
5493         * apply-dict.c: (cmd_apply_dictionary) Use value label ADT.
5494         Get rid of a stupid use of goto.
5495
5496         * autorecode.c: (compare_alpha_value) Rewrite.
5497         (hash_alpha_value) Ditto.
5498         (compare_numeric_value) Rewrite.
5499         (hash_numeric_value) Ditto.
5500
5501         * frequencies.q: (dump_full) Use value label ADT.
5502
5503         * pfm-read.c: (read_value_label) Use value label ADT.
5504
5505         * pfm-write.c: (write_value_labels) Use value label ADT.
5506
5507         * sfm-read.c: (read_variables) Use value label ADT.
5508         (read_value_labels) Rewrite.
5509
5510         * sfm-write.c: (write_value_labels) Rewrite.
5511
5512         * sysfile-info.c: (cmd_sysfile_info) Use value label ADT.
5513         (display_variables) Ditto.
5514         (describe_variable) Ditto.
5515
5516         * t-test.q: (print_t_groups) Use value label ADT.
5517
5518         * temporary.c: (copy_variable) Use value label ADT.
5519         (free_dictionary) Ditto.
5520
5521         * val-labs.c: (verify_val_labs) Use value label ADT.
5522         (get_label) Ditto.
5523         (debug_print) Ditto.
5524         (val_lab_cmp) Removed.
5525         (inc_ref_count) Removed.
5526         (copy_value_labels) Removed.
5527
5528         * var.h: (struct value_label) Removed.
5529         (struct variable) Change AVL tree `val_lab' into hash table
5530         `val_labs'.
5531
5532         * vars-atr.c: (init_variable) Use value label ADT.
5533         (clear_variable) Ditto.
5534         (free_value_label) Removed.
5535         (free_val_lab) Removed.
5536         (get_val_lab) Removed.
5537         (compare_variables) New function.
5538         (hash_variable) New function.
5539
5540         * vfm.c: (dump_splits) Use value label ADT.
5541
5542 Fri Dec 19 11:18:11 2003  Ben Pfaff  <blp@gnu.org>
5543
5544         Add to the hash table interface.
5545
5546         * hash.c: (hsh_hash_bytes) Add assertion.
5547         (hsh_hash_string) Ditto.
5548         (hsh_clear) Ditto.
5549         (hsh_rehash) Ditto.
5550         (hsh_probe) Ditto.
5551         (hsh_create) Ditto.  Also make minimum `size'.
5552         (hsh_destroy) Rephrase.
5553         (sort_nulls_last) Removed.
5554         (not_null) New function.
5555         (hsh_data) Ditto.
5556         (comparison_helper) Ditto.
5557         (hsh_sort) Rewritten.
5558         (hsh_data_copy) New function.
5559         (hsh_sort_copy) Ditto.
5560         (hsh_insert) Ditto.
5561         (hsh_replace) Ditto.
5562         (hsh_hash_double) Ditto.
5563         (hsh_delete) Fix stupid bug.
5564         
5565 Thu Dec 18 12:27:03 WAST 2003 John Darrington <john@darrington.wattle.id.au>
5566         * added a calculation of the mode to FREQUENCIES
5567
5568 Wed Dec 17 12:53:01 WAST 2003 John Darrington <john@darrington.wattle.id.au>
5569
5570         * moved (un)defs of DEBUGGING to config.h
5571
5572 Mon Dec 15 21:35:59 2003  Ben Pfaff  <blp@gnu.org>
5573
5574         * groff-font.c: (add_kern) Fix indentation.
5575         (add_kern) Use & instead of % to take power-of-2 modulus.
5576         (font_get_kern_adjust) Likewise.
5577
5578 Fri Dec 12 23:54:37 2003  Ben Pfaff  <blp@gnu.org>
5579
5580         * autorecode.c: (recode) Replace stupid use of memcpy() by
5581         memberwise copy.
5582         (hash_alpha_value) Use hsh_hash_bytes().  Get rid of nasty casts.
5583         (hash_numeric_value) Ditto.
5584         (autorecode_proc_func) pool_strdup() was wrong here because the
5585         source string was not null-terminated.  Use new pool_strndup()
5586         instead.
5587
5588         * crosstabs.q: (enum_var_values) Remove superfluous and bizarre
5589         use of hsh_iterator_init().
5590
5591         * data-in.c: (parse_N) Initialize i->v->f.
5592
5593         * flip.c: (cmd_flip) Use memmove(), not memcpy(), to copy
5594         overlapping arrays.
5595
5596         * groff-font.c: Use power-of-2 hash table sizes, not prime.
5597         (groff_read_font) Don't call hsh_next_prime().  Don't call
5598         fclose(NULL).
5599         (static var hash) Remove `size_p', `max_used' members.
5600         (font_char_name_to_index) Don't call hsh_next_prime().  Use
5601         hsh_hash_string() instead of hashpjw(), & instead of %.
5602         (default_font) Don't call hsh_next_prime().
5603
5604         * pool.c: (pool_strndup) New function.
5605         (pool_strdup) Reimplement in terms of pool_strndup.
5606
5607         * postscript.c: (hash_font_entry) Use hsh_hash_string().  Get rid
5608         of nasty casts.
5609         (hash_ps_encoding) Use hsh_hash_string().
5610         (hash_ps_combo) Use hsh_hash_string(), hsh_hash_int().
5611         (hash_filename2font) Use hsh_hash_string().
5612
5613         * som.c: Add #include <stdlib.h>.
5614
5615         * tab.c: (tab_destroy) Don't set t->container after freeing `t'
5616         (by destroying its pool).
5617         
5618 Fri Dec 12 23:18:59 2003  Ben Pfaff  <blp@gnu.org>
5619
5620         Miscellaneous hash table code cleanup:
5621         
5622         * hash.h: (struct hsh_table) Moved into hash.c.
5623         (hsh_count) Ditto, and transformed into function.
5624         (hsh_compare_func) New typedef, used for defining otherwise-long
5625         function types here and in hash.c
5626         (hsh_hash_func) Ditto.
5627         (hsh_free_func) Ditto.
5628         
5629         * hash.c: (struct hsh_table) Renamed `n' to `used', `m' to `size',
5630         `table' to `entries'.  Removed `mp'.  All references updated.
5631         (hsh_clear) Don't shrink entries array; if the hash was this big
5632         once, it probably will be again.
5633         (hsh_rehash) Made static.
5634         (force_hsh_insert) Renamed hsh_force_insert.
5635         (force_hsh_find) Renamed hsh_force_find.
5636
5637         Made hash table sizes powers of 2, because that's fine with any
5638         reasonable hash function and because taking a power-of-2 modulus
5639         is faster than any other:
5640         
5641         (hsh_prime_tab) Removed;
5642         (hsh_next_prime) Ditto.
5643         (next_power_of_2) New function.
5644         (hsh_create) Use next_power_of_2.
5645         (hsh_rehash) Use & instead of %.
5646
5647         Cleaned up hsh_sort:
5648         
5649         (internal_comparison_fn) Removed.
5650         (sort_nulls_last) New function.
5651         (hsh_sort) Removed second parameter, switched to using the new
5652         quicksort() function from quicksort.h to avoid using nasty need
5653         for static variables with qsort().  All references updated.
5654
5655         Changed the hash functions offered, because there are better hash
5656         functions than the ones we had, and cleaned up the names to boot:
5657         
5658         * hash.c: (hashpjw_d) Removed.
5659         (hashpjw) Ditto.
5660         (hsh_hash_bytes) New function.
5661         (hsh_hash_string) New function.
5662         (hsh_hash_int) New function.
5663
5664         Improved the hash table iteration interface:
5665         
5666         * hash.h: (hsh_iterator_init) Removed.
5667         (struct hsh_iterator) Removed `init' member, change `next' to
5668         size_t.
5669
5670         * hash.c: (hsh_foreach) Removed.  All references updated to use
5671         hsh_first/hsh_next instead.
5672         (hsh_first) New function.  Notably, unlike hsh_foreach() it does
5673         not treat a null pointer as an empty hash table.
5674         (hsh_next) New function.
5675
5676         Made deletion possible, though slow:
5677
5678         * hash.c: (locate_matching_entry) New function.
5679         (hsh_find) Use locate_matching_entry().
5680         (hsh_delete) New function also using locate_matching_entry().
5681         (hsh_force_delete) New function.
5682
5683 Fri Dec 12 23:16:10 2003  Ben Pfaff  <blp@gnu.org>
5684
5685         * quicksort.c: New file implementing a sort routine with a
5686         interface better than qsort() because it passes a user-provided
5687         parameter to the sort routine.
5688
5689         * Makefile.am: Add quicksort.c, quicksort.h.
5690
5691 Fri Dec 12 13:31:58 2003  Ben Pfaff  <blp@gnu.org>
5692
5693         * All source files: Get rid of nasty special cases for Checker,
5694         which is pretty obsolete now.
5695
5696 Thu Dec 11 21:38:24 WST 2003 John Darrington <john@darrington.wattle.id.au>
5697
5698         * Fixed a bug apparent when using the FREQUENCIES command with the
5699         html driver.  The html driver was incorrectly trying to display 
5700         empty cells.
5701
5702 Sun Jan  2 21:40:13 2000  Ben Pfaff  <blp@gnu.org>
5703
5704         * Makefile.am: Reorganized.  Put locale dir in version.c instead
5705         of passing it to each compile command.  Only put local gmp libs in
5706         LD_ADD if not installed on system.  Remove `boast' target.
5707
5708         * All source files: struct and union typedefs eliminated.
5709         `sizeof type' replaced by `sizeof object' where practical.  Moved
5710         `unused' qualifiers from start to end of declarations for gcc
5711         2.7.2 compatibility.  Change `while (1)' to `for (;;)'.  Made
5712         assertions on pointers strictly compliant.  Removed _ prefixes on
5713         some function parameter names.
5714
5715         * alloc.c: New source file, containing these external linkage
5716         functions removed from common.c: xmalloc, xcalloc, xrealloc,
5717         xstrdup.
5718
5719         * arena.c: Removed.
5720         
5721         * arena.h: Removed.
5722
5723         * ascii.c: Migrated from arenas to pools.
5724         (struct ascii_driver_ext) ops[], box[], fonts[] changed from
5725         c_string to len_string.  All references changed.
5726         (ascii_option) Signature changed to comply to new output.c
5727         interface.
5728         (count_fancy_chars) Removed.
5729         (delineate) Removed support for rich text.
5730         (ascii_text_metrics) Ditto.
5731         (text_draw) Ditto.
5732         (output_shorts) Change `box', `off', `on' from c_string to
5733         len_string.  Change `remaining' from int to size_t.
5734         (ascii_close_page) Make page numbering less haphazard.
5735
5736         * autorecode.c: Migrate from arenas to pools.
5737
5738         * avl.c: Migrate from arenas to pools.  Synch from libavl 1.4.0.
5739
5740         * bitvector.h: New file containing these macros from misc.h:
5741         SET_BIT, CLEAR_BIT, SET_BIT_TO, TEST_BIT, BIT_INDEX.
5742
5743         * command.c: (struct command) cmd1, cmd2, cmd3 members changed to
5744         word[3].  ncmd removed.
5745         (var empty_string) Removed.
5746         (var cmd_table) Declaration updated.
5747         (var cmdtab) Removed.
5748         (cmp_command) Removed.
5749         (split_words) Rewritten to use strtok_r().
5750         (init_cmd_parser) Renamed cmd_init().  Rewritten.
5751         (find_command) Removed.
5752         (FILE_TYPE_okay) Rewritten.
5753         (cmd_parse) Rewritten.  Semantics of the return value of command
5754         handlers has changed: they must now return one of the new CMD_*
5755         enumerals, rather than a magic value.  This meant that all
5756         commands had to be modified, and they were.
5757         (figure_out_command) New function.
5758
5759         * command.def: Add CORRELATIONS, PEARSON CORRELATIONS.  Add
5760         #defines for INIT, INPU, etc.
5761
5762         * command.h: New CMD_* enum series.
5763         (cur_proc) Make const char *, not char *.
5764         (cmd_init) Prototype.
5765         (cmd_parse) Ditto.
5766
5767         * common.c: Removed.
5768
5769         * common.h: Removed.
5770
5771         * correlations.q: New file.
5772
5773         * crosstabs.q: Migrate from arenas to pools.  Migrate to new-style
5774         q2c.
5775         (custom_tables) Renamed crs_custom_tables().
5776         (custom_variables) Renamed crs_custom_variables().
5777         (calc_integer) Add in some `const' qualifiers.
5778         (table_value_missing) Change from a_string to len_string.
5779         (float_M_suffix) Change from a_string to len_string.
5780
5781         * data-in.c: Rewritten.  All references to
5782         parse_string_as_format() changed to data_in().
5783
5784         * data-in.h: New file.
5785
5786         * data-list.c: Change DLS_* from #define's to enums.  Move from
5787         rpd_msg() to tmsg().
5788         (RPD_ERR) New #define.
5789         (do_reading) Change dfm_push_cust() to dfm_push(), pop_cust() to
5790         dfm_pop().
5791         (read_from_data_list_fixed) Change from old
5792         parse_string_as_format() to new data_in().
5793         (read_from_data_list_free) Ditto.
5794         (read_from_data_list_list) Ditto.
5795         (cmd_repeating_data) Modify approach to checking for end of
5796         command.
5797         (rpd_msg) Removed.
5798         (rpd_parse_record) Change from old parse_string_as_format() to new
5799         data_in().  Change from old convert_format_to_string() to new
5800         data_out().
5801         (read_one_set_of_repetitions) Change dfm_push_cust() to
5802         dfm_push(), pop_cust() to dfm_pop().
5803
5804         * data-out.c: Rewritten.  All references to
5805         convert_format_to_string() changed to data_out().
5806
5807         * descript.q: Migrate to new q2c.
5808         (cmd_descriptives) Removed.
5809         (internal_cmd_descriptives) Renamed cmd_descriptives ().
5810         (custom_variables) Renamed dsc_custom_variables().
5811
5812         * dfm.c: (struct dfm_fhuser_ext) `ln' removed.  All references
5813         removed.
5814         (open_file_r) Initialize h->where.line_number.  Migrate to new
5815         struct string.
5816         (open_file_w) Initialize h->where.line_number.
5817         (read_record) Change from ext->ln to h->where.line_number.
5818         Migrate to struct string.
5819         (dfm_put_record) Rephrased.
5820         (dfm_push_cust) Renamed dfm_push(), rewritten.
5821         (dfm_pop) New function.
5822
5823         * error.c: All references updated.
5824         (glob var error_count) Renamed err_err_count.
5825         (glob var warning_count) Renamed err_warning_count.
5826         (glob var error_already_flagged) Renamed err_already_flagged.
5827         (glob var verbosity) Renamed err_verbosity.
5828         (glob var cust_fn) Removed.
5829         (glob var cust_ln) Removed.
5830         (static var file_loc) New.
5831         (static var nfile_loc) New.
5832         (static var mfile_loc) New.
5833         (tmsg) New function.
5834         (push_cust) Removed.
5835         (pop_cust) Removed.
5836         (msg) Rewritten.
5837         (static var terminating) Removed.
5838         (failure) Renamed err_failure().
5839         (hcf) Renamed err_hcf().
5840         (err_push_file_locator) New function.
5841         (err_pop_file_locator) New function.
5842         (err_location) New function.
5843         (check_error_count) Renamed err_check_count().
5844         (vmsg) Renamed err_vmsg().  Interface changed.
5845         (verbose_msg) Removed.
5846         (err_cond_fail) New function.
5847         (error_break) Renamed err_break().
5848
5849         * error.h: All references updated.
5850         (enum MSG_CLASS_COUNT) Renamed ERR_CLASS_COUNT.
5851         (enum ERR_CLASS_MASK, ERR_VERBOSITY_SHIFT, ERR_VERBOSITY_MASK)
5852         New.
5853         (struct file_locator) New.
5854         (struct error) New.
5855         (macro verbose_msg) Removed.
5856         (macro cond_fail) Removed.
5857
5858         * expr-opt.c: (evaluate_tree) sizeof(char) == 1.
5859
5860         * expr-prs.c: Reorganized.  All references updated.
5861         (exprtypename) Renamed expr_type_name().
5862         (typename) Renamed type_name().
5863         (free_expression) Renamed expr_free().
5864         (parse_expression) Renamed expr_parse().  Uses new type_check()
5865         function.
5866         (init_functab) Renamed init_func_tab().
5867         (type_check) New function.
5868         (parse_or) Rewritten to use new allocate_nonterminal() and
5869         append_nonterminal_arg() functions.
5870         (parse_and) Ditto.
5871         (parse_not) Ditto.
5872         (parse_rel) Ditto.  Also simplified logic.
5873         (parse_add) Ditto.
5874         (parse_mul) Ditto.
5875         (parse_neg) Ditto.
5876         (parse_exp) Ditto.
5877         (SYSMIS_func) Ditto.
5878         (VALUE_func) Rephrased.
5879         (CONCAT_func) Fix memory leak by replacing free by free_node on
5880         lossage.
5881         (generic_str_func) Ditto.
5882         (parse_function) Ditto.  Also rephrasings.  Uses bsearch() to find
5883         function.
5884         (allocate_nonterminal) New function.
5885         (append_nonterminal_arg) New function.
5886         (static func_tab[]) Now at file level.
5887         (cmp_func) Moved.
5888         (init_func_tab) Moved.  Now just uses qsort() to sort func_tab[].
5889
5890         * expr.h: (enum series OP_*) Moved to exprP.h.
5891         (OP_* defines) Ditto.
5892         (struct op_desc) Ditto.
5893         (global ops[]) Ditto.
5894         (struct num_con_node) Ditto.
5895         (struct str_con_node) Ditto.
5896         (struct var_node) Ditto.
5897         (struct lag_node) Ditto.
5898         (struct casenum_node) Ditto.
5899         (struct nonterm_node) Ditto.
5900         (union any_node) Members renamed.
5901         (struct sys_node) Removed.
5902         (struct val_node) Removed.
5903         (operator typedef) Removed.
5904         (typedef exprtype) Removed.
5905         (enum series EX_*) Moved to exprP.h.
5906         (struct expression) Ditto.  Also renamed a lot of the members.
5907         (PXP_* defines) Changed to enums.
5908         (free_node prototype) Moved to exprP.h.
5909
5910         * file-handle.h: (struct file_handle) New member `where'.
5911
5912         * file-handle.q: Migrated to new q2c format.
5913         (prepend_current_directory) Removed (dead code).
5914         (cmd_file_handle) Incorporated all of internal_cmd_file_handle().
5915         (fh_get_handle_by_filename) Removed dead code.
5916         Set new `where' member.
5917
5918         * file-type.c: (file_type_source_read) References to
5919         parse_string_as_format() changed to data_in().
5920         dfm_push_cust()/pop_cust() changed to dfm_push()/dfm_pop().
5921
5922         * filename.c: All references updated.
5923         (init_filename) Renamed fn_init().
5924         (expand_line) Removed.
5925         (macro EXPAND_LINE) Removed.
5926         (interp_vars) Renamed fn_interp_vars().  Now uses st_*() instead
5927         of custom functions.
5928         (gnu_getcwd) Renamed fn_get_cwd(), rewritten.
5929         (tilde_expand) Renamed fn_tilde_expand(), uses ds_*().
5930         (normalize_filename) Renamed fn_normalize().
5931         (search_path) Renamed fn_search_path(), rewritten.
5932         (prepend_dir) Renamed fn_prepend_dir().
5933         (blp_getenv) Renamed fn_getenv().
5934         (blp_dirname) Renamed fn_dirname().
5935         (fn_basename) New function, not used.
5936         (absolute_filename_p) Renamed fn_absolute_p().
5937         (is_special_filename) Renamed fn_special_p().
5938         (file_exists) Renamed fn_exists_p().
5939         (readlink_malloc) Renamed fn_readlink().
5940         (getenv_default) Renamed fn_getenv_default().
5941         (open_file) Renamed fn_open().
5942         (close_file) Renamed fn_close().
5943         (open_file_ext) Renamed fn_open_ext().
5944         (close_file_ext) Renamed fn_close_ext().
5945
5946         * font.h: Migrate from arenas to pools.
5947
5948         * format.c: (parse_format_specifier_name) Deal with ds_* strings.
5949
5950         * frequencies.g: Migrate from arenas to pools.
5951
5952         * frequencies.q: Migrate to new q2c version.  Migrate from arenas
5953         to pools.
5954
5955         * getline.c: All references updated.
5956         (global getl_buf) Changed from char * to struct string.
5957         (static getl_include_path) Ditto.
5958         (global getl_buf_len) Removed.
5959         (global getl_buf_size) Removed.
5960         (getl_include_path) Deal with new getl_buf, getl_include_path.
5961         (getl_uninitialize) New function.
5962         (getl_get_current_directory) Rewritten.
5963         (getl_clear_include_path) Rewritten.
5964         (getl_add_include_dir) Rewritten.
5965         (getl_add_file) Assertion fixed.
5966         (getl_add_virtual_file) Change initial value of `remaining_loops'
5967         from 2 to 1.
5968         (welcome) Rewritten.
5969         (handle_line_buffer) Make static.  Change logic to make
5970         getl_add_virtual_file() change sensible.  Use ds_*() strings.
5971         (getl_read_line) Use ds_*() strings.  Implement SET ECHO.
5972         (getl_close_file) Moved.
5973         (getl_location) New function.
5974
5975         * getline.h: All references updated.
5976         (macro curln) Removed.
5977         (macro curfn) Removed.
5978         (macro am_interactive) Renamed getl_am_interactive.
5979         (macro am_reading_script) Renamed getl_reading_script.
5980
5981         * glob.c: (global fmt_parse_ignore_error) Removed.
5982         (init_glob) Use locale_dir not LOCALEDIR.  Use feholdexcept() on
5983         systems that support it (C99).  Turn off SET ECHO by default.  No
5984         necessary julcal initialization anymore.
5985
5986         * groff-font.c: Migrate from arenas to pools.
5987         (groff_read_font) Use err_push_file_locator().
5988         (groff_read_DESC) Ditto.
5989         (font_msg) Use tmsg().
5990
5991         * hash.c: (hsh_sort) Fix debug code.
5992         [GLOBAL_DEBUGGING] Include stdio.h.
5993
5994         * hash.h: (macro force_hsh_insert) Rephrase.
5995
5996         * heap.c: Rewritten.
5997         
5998         * heap.h: Rewritten.
5999
6000         * html.c: (html_option) Change from outp_value to struct string.
6001         (postopen) Change from curfn to getl_location().
6002         (escape_string) Remove rich-text code.  Signature changed.
6003         (output_tab_table) Switch from a_string to struct len_string.
6004         Remove rich text support.
6005
6006         * lexer.c: All references updated.  Largely rewritten.  Major
6007         changes listed below.  Removed tagged quote support.  Adapted to
6008         struct string tokstr.
6009         (global tokstr) Changed to struct string.
6010         (global tokstr_size) Removed.
6011         (global tokstr_len) Removed.
6012         (global tokid) New.
6013         (global tokint) Removed.
6014         (global toklongstr) Removed.
6015         (C* defines) Removed.
6016         (static tbl[]) Removed.
6017         (static id[]) Removed.
6018         (static une[]) Removed.
6019         (discard_line) Renamed lex_discard_line().
6020         (get_entire_line) Renamed lex_entire_line().
6021         (get_rest_of_line) Renamed lex_rest_of_line().
6022         (get_dotted_rest_of_line) Merged into lex_rest_of_line().
6023         (make_hexit) Removed.
6024         (syntax_error) Renamed lex_error().  Return value removed.
6025         (get_token_representation) Renamed lex_token_representation().
6026         (putback) Renamed lex_put_back().
6027         (putfwd) Renamed lex_put_forward().
6028         (convert_negative_to_dash) Renamed lex_negative_to_dash().
6029         (set_prog) Renamed lex_set_prog().
6030         (init_lex) Renamed lex_init().
6031         (reset_eof) Renamed lex_reset_eof().
6032         (lookahead) Renamed lex_look_ahead().
6033         (check_id) Rewritten.
6034         (yylex) Renamed lex_get(), rewritten.
6035         (lex_end_of_command) New function.  Many commands were rephrased
6036         using this.
6037         (lex_integer_p) New function.  Replaces compare of tokint against
6038         NOT_LONG.
6039         (lex_integer) New function.  Replaces tokint.
6040         (match_tok) Renamed lex_match().
6041         (match_id) Renamed lex_match_id().
6042         (match_int) Renamed lex_match_int().
6043         (force_match_id) Renamed lex_force_match_id(), added return value.
6044         (force_match) Renamed lex_force_match(), added return value.
6045         (force_string) Renamed lex_force_string(), added return value.
6046         (force_int) Renamed lex_force_int(), added return value.
6047         (lex_id_match_len) New function.
6048         (id_match) Renamed lex_id_match(), rewritten.
6049         (get_line) Renamed lex_get_line().
6050         (preprocess_line) Renamed lex_preprocess_line().
6051         (tokname) Renamed lex_token_name().
6052         (bin_value_func) Removed.
6053         (oct_value_func) Removed.
6054         (hex_value_func) Removed.
6055         (unexpected_eof) New function.
6056         (convert_numeric_string_to_char_string) New function.
6057         (parse_string) Rewritten, signature changed.
6058         (add_tokstr_char) Removed.
6059         (add_tokstr_unsigned) Removed.
6060         (add_tokstr_string) Removed.
6061         (parse_tagged_quote) Removed.
6062         (skip_comment) Renamed lex_skip_comment().
6063
6064         * lexer.h: All references updated.
6065         (macro is_id1) Renamed CHAR_IS_ID1.
6066         (macro is_idn) Renamed CHAR_IS_IDN.
6067         (token names ID, NUM, STRING, STOP, ... WITH, EXP) Renamed with
6068         prefix T_: T_ID, T_NUM, T_STRING, T_STOP, ... T_WITH, T_EXP.
6069         (macro get_token) Removed.
6070         (macro id_match) Removed.
6071         (macro force_match_id) Removed.
6072         (macro force_match) Removed.
6073         (macro force_string) Removed.
6074         (macro force_int) Removed.
6075         (macro force_num) Removed.
6076         (macro force_id) Removed.
6077
6078         * lexerP.h: Removed.
6079
6080         * list.q: Migrated to new q2c format.
6081         (write_line) Deal with struct len_string.
6082         (write_varname) Ditto.
6083         (write_fallback_headers) Ditto.
6084
6085         * magic.c: New file, incorporating the following global variables
6086         previously in other files: endian, second_lowest_value.  And both
6087         of those are conditional on #define's.
6088
6089         * magic.h: New file, incorporating the following global variable
6090         declarations: endian, second_lowest_value, and the following macro
6091         declarations: NOT_DOUBLE, NOT_LONG, NOT_INT.
6092
6093         * main.c: Added declarations of pgmname, finished, curdate,
6094         start_interactive.
6095         (main) Call new parse_script() function.
6096         (parse_script) New function.
6097         (execute_command) New function.
6098         (dump_token) Removed.
6099         (handle_error) New function.
6100
6101         * matrix.c: New file.
6102
6103         * matrix.h: New file.
6104
6105         * matrix-data.c: Migrated from arenas to pools.
6106         (mget_token) Change from parse_string_as_format() to data_in().
6107
6108         * means.q: Migrate to new q2c.
6109         (custom_tables) Renamed mns_custom_tables().
6110         (custom_crossbreak) Renamed mns_custom_crossbreak().
6111         (custom_variables) Renamed mns_custom_variables().
6112
6113         * mis-val.c: (static var width) Changed from `int' to `size_t'.
6114         (parse_varnames) Prototype.
6115         (parse_numeric) Rephrasings.
6116         (parse_alpha) Adapt to new struct string tokstr.
6117
6118         * misc.c: (intlog10) Rewritten.
6119         (spacing) Removed.
6120         (ansi_rand) Renamed real_rand(), moved into random.c.
6121         (ansi_srand) Renamed real_srand(), moved into random.c.
6122         (setup_randomize) Moved to random.c.
6123         (rand_uniform) Ditto.
6124         (rand_normal) Ditto.
6125         (rand_simple) Ditto.
6126         (get_config_line) Removed.
6127         (reverse) Removed (dead code).
6128
6129         * misc.h: (macro SET_BIT) Moved to bitvector.h.
6130         (macro CLEAR_BIT) Ditto.
6131         (macro TEST_BIT) Ditto.
6132         (macro SET_BIT_TO) Ditto.
6133         (macro BIT_INDEX) Ditto.
6134
6135         * output.c: (outp_read_devices) Move to err_push_file_locator()
6136         from push_cust().  Use struct string.
6137         (expand_op_tokstr) Removed.
6138         (static var op_tokstr) Changed to struct string.
6139         (static var op_tokstr_size) Removed.
6140         (tokener) Rephrasings.  Use struct string.
6141         (parse_options) Use struct string.
6142         (destroy_driver) Fix assertion.
6143         (outp_get_paper_size) Move to err_push_file_locator().
6144         [0] Removed dead code.
6145         (outp_string_width) Move to len_string.
6146
6147         * output.h: Comment fixes.
6148         (TAG_* enum series) Removed.
6149         (struct outp_value) Removed.
6150         (enum OUTP_T_FANCY) Removed.
6151         (struct outp_text) `s' changed from a_string to len_string.
6152         (struct outp_class) `option' change arg 3 from outp_value to
6153         struct string.
6154
6155         * pfm-read.c: (corrupt_msg) Rewritten.
6156
6157         * pfm-write.c: (bufwrite) Fix assertion.
6158
6159         * pool.c: New file, reference version.
6160
6161         * pool.h: New file, reference version.
6162
6163         * postscript.c: (ps_font_sizes) Fix assertion.
6164         (ps_option) Change arg 3 from outp_value to struct string.
6165         Adapt to struct string.
6166         (macro output_line) Removed.
6167         (macro add_string) Removed.
6168         (output_encodings) Adapted to struct string.  Moved to
6169         err_push_file_locator().
6170         (find_encoding_file) Fix assertion.
6171         (read_ps_encodings) Move to err_push_file_locator().
6172         (postopen) Use getl_location() instead of curfn.
6173         (out_text_plain) Move to len_string.
6174         (text) Ditto.  Remove rich text support.
6175
6176         * print.c: (cmd_print) Remove now-unneeded resource cleanup code.
6177         (cmd_print_eject) Ditto.
6178         (cmd_write) Ditto.
6179         (internal_cmd_print) Now cleans up after itself.  Uses
6180         fh_parse_file_handle() now.
6181         (cmd_print_space) Use PXP_NUMERIC to type-check.
6182
6183         * q2c.c: Overhauled.  Removed _("") i18n support.  All references
6184         updated.  All output functions updated to handle structures rather
6185         than local or static variables.  Adapt to new PSPP lex_*()
6186         functions.
6187         (macro _) Removed.
6188         (macro N_) Removed.
6189         (macro MAX_N_SBC) Removed.
6190         (global bare) Removed.
6191         (enum STRING) Renamed T_STRING.
6192         (enum ID) Renamed T_ID.
6193         (get_buffer) Buffer size increased.
6194         (strlower) Renamed st_lower(), rephrased.
6195         (strupper) Renamed st_upper(), rephrased.
6196         (skip_ws) New function.
6197         (get_line) Don't special-case any types of lines (like those
6198         beginning with ! or $, for instance).
6199         (get_token) Renamed lex_get().  Rephrased.
6200         (static var `prefix') New.
6201         (parse) New function.
6202         (parse_setting) Minor rephrasing.
6203         (dump_specifier_vars) Ditto.
6204         (make_identifier) Put null terminator on identifier, duh.
6205         (dump_vars) Renamed dump_declarations().  Never indent.  Never
6206         static.  Output changed entirely.
6207         (dump_specifier_init) Rephrase.
6208         (dump_vars_init) No index variable needed.  Other modifications.
6209         (dump_parser) Don't parse command name.  Do dump functions instead
6210         of just code fragments.
6211         (dump_free) Dump function instead of code fragment.
6212         (recognize_directive) New function.
6213         (main) Use recognize_directive().  Don't rely on magic $ line
6214         beginning: instead, parse comments.  Update list of headers.
6215
6216         * random.c: New file, containing the following functions:
6217         real_rand(), real_srand(), setup_randomize, shuffle, rand_uniform,
6218         rand_normal, rand_simple.
6219
6220         * random.h: New file.
6221
6222         * recode.c: (cmd_recode) Merge internal_cmd_recode() into this
6223         function.  `max_src_width', `max_dst_width' changed to size_t.
6224         (internal_cmd_recode) Removed.
6225         (parse_dest_spec) Merge similar cases.
6226         (parse_src_spec) Add assertion.
6227
6228         * repeat.c: (recognize_keyword) New function.
6229         (internal_cmd_do_repeat) Parse and handle PRINT keyword on END
6230         REPEAT.  Improve recognition of END REPEAT (use
6231         recognize_keyword()).  Move from curfn to getl_location().  Use
6232         struct string.
6233                 
6234         (perform_DO_REPEAT_substitutions) Adapt to struct string.
6235
6236         * set.q: Adapt to new q2c.
6237         (cmd_set) Range-check some values better.
6238         (custom_blanks) Renamed stc_custom_blanks().
6239         (custom_length) Renamed stc_custom_length().
6240         (custom_results) Renamed stc_custom_results().
6241         (custom_seed) Renamed stc_custom_seed().
6242         (custom_width) Renamed stc_custom_width().
6243         (custom_format) Renamed stc_custom_format().
6244         (custom_journal) Renamed stc_custom_journal().
6245         (custom_color) Renamed stc_custom_color().
6246         (custom_listing) Renamed stc_custom_listing().
6247         (custom_disk) Renamed stc_custom_disk().
6248         (custom_log) Renamed stc_custom_log().
6249         (custom_rcolor) Renamed stc_custom_rcolor().
6250         (custom_viewlength) Renamed stc_custom_viewlength().
6251         (custom_workdev) Renamed stc_custom_workdev().
6252
6253         * settings.h: Not necessary to include format.h any longer.
6254
6255         * sfm-read.h: (macro bswap_int32) Moved here from sfmP.h.
6256         (corrupt_msg) Rewritten.
6257
6258         * sort.c: Adapt to rewritten heap ADT.
6259
6260         * str.c: (aa_strcpy) Removed.
6261         (ab_strcpy) Removed.
6262         (ac_strcpy) Removed.
6263         (ba_strcpy) Removed.
6264         (bb_strcpy) Removed.
6265         (ca_strcpy) Removed.
6266         (aa_strdup) Removed.
6267         (aa_strdupcpy) Removed.
6268         (ba_strdup) Removed.
6269         (sa_strdup) Removed.
6270         (memrev) Renamed mm_reverse().
6271         (memrmem) Renamed mm_find_reverse().
6272         (cmp_str) Renamed st_compare_pad().
6273         (strmaxcpy) Removed.
6274         (strbarepadcpy) Renamed st_bare_pad_copy(), signature changed.
6275         (strbarepadlencpy) Renamed st_bare_pad_len_copy(), signature
6276         changed.
6277         (strpadcpy) Renamed st_pad_copy(), signature changed.
6278         (blpstrset) Removed.
6279         (ds_create) New function.
6280         (ds_init) New function.
6281         (ds_replace) New function.
6282         (ds_destroy) New function.
6283         (ds_clear) New function.
6284         (ds_extend) New function.
6285         (ds_shrink) New function.
6286         (ds_truncate) New function.
6287         (ds_length) New function.
6288         (ds_size) New function.
6289         (ds_value) New function.
6290         (ds_end) New function.
6291         (ds_concat) New function.
6292         (ds_concat_buffer) New function.
6293         (ds_printf) New function.
6294         (ds_putchar) New function.
6295         (ds_getline) New function.
6296         (ds_get_config_line) New function derived from the old
6297         misc.c:get_config_line().
6298         (ls_create) New function.
6299         (ls_create_buffer) New function.
6300         (ls_init) New function.
6301         (ls_shallow_copy) New function.
6302         (ls_destroy) New function.
6303         (ls_null) New function.
6304         (ls_null_p) New function.
6305         (ls_empty_p) New function.
6306         (ls_length) New function.
6307         (ls_value) New function.
6308         (ls_end) New function.
6309
6310         * str.h: Reformatted.
6311         (struct a_string) Removed.
6312         (struct b_string) Removed.
6313         (struct c_string) Removed.
6314         (struct len_string) New.
6315         (struct string) New.
6316         (macro as_streq) Removed.
6317         (macro bs_streq) Removed.
6318         (macro cs_streq) Removed.
6319         (macro sa_streq) Removed.
6320         (macro sb_streq) Removed.
6321         [__GNUC__] (inline function ds_putchar) New function.
6322         [__GNUC__] (inline function ds_length) New function.
6323         [__GNUC__] (inline function ds_value) New function.
6324         [__GNUC__] (inline function ds_end) New function.
6325
6326         * sysfile-info.c: (cmd_sysfile_info) Rephrased.
6327         (display_vectors) Fix missing i18n.
6328
6329         * t-test.q: Migrate to new q2c.
6330
6331         * tab.c: Migrate from arenas to pools.
6332         (tab_create) Use struct len_string.
6333         (tab_realloc) Ditto.
6334         (text_format) Ditto.
6335         (tab_joint_text) Ditto.
6336         (tab_natural_width) Remove rich text support.
6337         (tab_natural_height) Ditto.
6338         (tab_output_text) Handle TAT_FIX.
6339         (tab_raw) Change arg from a_string to len_string.
6340         (tabi_driver) Fix assertion.  Use struct len_string.
6341         (render_strip) Use struct len_string.  Remove rich text support.
6342         Add `const' qualifiers.
6343
6344         * tab.h: (enum TAB_RICH) Remove.
6345         (enums TAB_COL_NONE, TAB_COL_DONE) New.  Where appropriate,
6346         SOM_COL_* updated to read TAB_COL_*.
6347         (struct tab_table) Change arena to pool.  Change a_string to
6348         len_string.
6349
6350         * temporary.c: (restore_dictionary) Rewrite Checker code.
6351
6352         * var.h: (macros MAX_SHORT_STRING, MIN_LONG_STRING, SYSMIS,
6353         LOWEST, HIGHEST) Moved here from common.h.
6354         (typedef any_trns) Removed.  All references changed to `struct
6355         trns_header'.
6356
6357         * vars-atr.c: (force_create_variable) Fix assertion.
6358         (force_dup_variable) Fix assertion.
6359         
6360 Thu Jun  3 18:40:42 1999  Ben Pfaff  <blp@gnu.org>
6361
6362         Using alphanumeric variables in functions under AGGREGATE
6363         segfaulted.  Fixed.  Thanks to Dr. Dirk Melcher
6364         <BZN-mdksh@t-online.de> for reporting this bug.
6365         
6366         * aggregate.c: (parse_aggregate_functions) When setting the
6367         FSTRING bit, also allocate memory for the `string' member of
6368         agr_next.
6369         (free_aggregate_functions) Free iter->string.  Don't use the
6370         non-function bits when indexing the array of functions.
6371         [DEBUGGING] (debug_print) Don't use the non-function bits when
6372         indexing the array of functions.        
6373
6374 Sun May 30 00:00:54 1999  Ben Pfaff  <blp@gnu.org>
6375
6376         Under certain circumstances, the final case would be omitted from
6377         the results of an AGGREGATE operation.  Fixed.  Thanks to Dr. Dirk
6378         Melcher <BZN-mdksh@t-online.de> for reporting this bug.
6379         
6380         * aggregate.c (agr_00x_end_func): Increment number of cases in
6381         sink before writing case.  For streams that keep track of how many
6382         cases there are based on this value, this means that the last case
6383         will be read in on the next stream read.
6384
6385 Sat May 29 22:03:31 1999  Ben Pfaff  <blp@gnu.org>
6386
6387         Undefined behavior was invoked by referencing a freed pointer.
6388         
6389         * vfm.c (memory_stream_write): Free pointer *after* checking for
6390         non-null status.
6391
6392 Sat May 29 22:02:22 1999  Ben Pfaff  <blp@gnu.org>
6393
6394         A wrong record size was displayed when paging the active file to
6395         disk.
6396         
6397         * vfm.c: (memory_stream_write) Fix off-by-one error.
6398
6399 Sat May 29 21:50:26 1999  Ben Pfaff  <blp@gnu.org>
6400
6401         Not having enough temporary space for sorting caused a core dump.
6402         Fixed.
6403         
6404         * sort.c: (allocate_cases) Initialize i.
6405
6406 Sat May 29 21:40:54 1999  Ben Pfaff  <blp@gnu.org>
6407
6408         Syntax errors in function descriptions on AGGREGATE caused core
6409         dumps.  Fixed.
6410         
6411         * aggregate.c (cmd_aggregate): Don't free agr_dict after calling
6412         free_aggregate_functions(), since that function already frees
6413         agr_dict.
6414         
6415 Sat May 29 21:06:10 1999  Ben Pfaff  <blp@gnu.org>
6416
6417         A null pointer was dereferenced, causing a core dump, when
6418         PERCENTILES was specified on FREQUENCIES.  This fixes the problem,
6419         but PSPP still doesn't calculate percentiles.  Thanks to Regnor
6420         Jernsletten <rjernsle@eunet.no> for reporting this problem.
6421         
6422         * arena.c: (arena_malloc) If the arena hasn't been initialized
6423         already, initialize it.
6424
6425 Sat May 29 20:47:29 1999  Ben Pfaff  <blp@gnu.org>
6426
6427         * Makefile.cygwin: New file supplied by Hankin <hankin@dunno.com>
6428         for compilation with Cygnus Windows B20.  Not used by other
6429         systems.
6430
6431 Sat May 29 20:36:04 1999  Ben Pfaff  <blp@gnu.org>
6432
6433         SORT always sorted in ascending order.  Fixed.  Thanks to Dr. Dirk
6434         Melcher <BZN-mdksh@t-online.de> for reporting this bug.
6435
6436         * sort.c: (compare_case_lists) Reverse sense of comparison if
6437         sorting in descending order.
6438         (compare_record) Ditto.
6439
6440 Tue Mar  9 13:18:54 1999  Ben Pfaff  <blp@gnu.org>
6441
6442         SPLIT FILE with a string variable caused a core dump.  Fixed.
6443
6444         * vfm.c: If the variable is a string then make a temporary value
6445         struct pointing to it.  The underlying problem is a lot bigger
6446         than this (see TODO) but this is a stopgap for the simple case at
6447         least.
6448         
6449 Tue Mar  9 13:15:53 1999  Ben Pfaff  <blp@gnu.org>
6450
6451         Nested INCLUDEs didn't work.  Fixed.
6452
6453         * getline.c: (getl_include) Set first_line to NULL in allocated
6454         structure.
6455
6456 Tue Mar  9 13:13:46 1999  Ben Pfaff  <blp@gnu.org>
6457
6458         The MATCH FILES procedure set the values of variables not present
6459         to 0.  It should have been SYSMIS.  This is now fixed.
6460
6461         * get.c: (mtf_delete_file_in_place) Replace 0.0 by SYSMIS.
6462
6463 Tue Mar  9 12:52:23 1999  Ben Pfaff  <blp@gnu.org>
6464
6465         The REMARK command was too aggressive about skipping lines.  It
6466         didn't like being the last command in a file.
6467
6468         * command.c: (cmd_remark) Call get_entire_line() instead of
6469         get_line().
6470
6471 Tue Mar  9 12:48:05 1999  Ben Pfaff  <blp@gnu.org>
6472
6473         Comment parsing wasn't consistent with the rest of the code in its
6474         idea of where one command ends and another starts.  This meant
6475         that sometimes commands would be mysteriously ignored.  Thanks to
6476         Dr. Dirk Melcher <BZN-mdksh@t-online.de> for reporting this bug.
6477          
6478         * command.c: (parse_cmd) Hand off comment parsing to new function
6479         skip_comment() in lexer.c.
6480         * lexer.c: (skip_comment) New function.
6481
6482 Wed Jan 20 20:22:07 1999  Ben Pfaff  <blp@gnu.org>
6483
6484         The TABLE subcommand on MATCH FILES worked only erratically at
6485         best.  This fixes it.  Thanks to Dr. Dirk Melcher
6486         <BZN-mdksh@t-online.de> for reporting this bug.
6487
6488         * get.c: (mtf_compare_BY_values) When comparing string values, a
6489         difference of 1 is still a difference :-)
6490         (mtf_processing) Inverted TABLE reading logic fixed.  Also don't
6491         advance TABLE files automatically when matched.  Comment fixes.
6492
6493 Tue Jan 19 22:32:31 1999  Ben Pfaff  <blp@gnu.org>
6494
6495         VARIABLE LABELS rejected a slash before the first variable
6496         specification, contradicting the documentation.  Thanks to Walter
6497         M. Gray <graywm@northernc.on.ca> for reporting this bug.
6498
6499         * var-labs.c: (cmd_variable_labels) Ignore a leading slash in
6500         command specification.
6501
6502 Tue Jan 19 22:29:54 1999  Ben Pfaff  <blp@gnu.org>
6503
6504         Because of an incorrect optimization in memory allocation,
6505         CROSSTABS sometimes segfaulted when asked to output multiple
6506         tables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
6507         reporting this bug.
6508
6509         * crosstabs.q: (postcalc) New variables maxcols, maxcells, which
6510         are passed to output_pivot_table() for its use.
6511         (output_pivot_table) Instead of assuming the number of columns is
6512         constant, keep track with maxcols.  In general mode, use maxcells
6513         to determine whether more matrix cells need to be allocated.    
6514
6515 Tue Jan 19 22:27:46 1999  Ben Pfaff  <blp@gnu.org>
6516
6517         CROSSTABS didn't display value labels for column and row
6518         variables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
6519         reporting this bug.
6520
6521         * crosstabs.q: (table_value_missing) If the specified value has a
6522         value label for this variable, then show it instead of the raw
6523         value.
6524         (display_dimensions) Delegate display of value_labels to
6525         table_value_missing.
6526
6527 Mon Jan 18 20:04:06 1999  Ben Pfaff  <blp@gnu.org>
6528
6529         WRITE didn't write line ends.  Fixed.  Thanks to Dr. Dirk Melcher
6530         <BZN-mdksh@t-online.de> for reporting this bug.
6531
6532         * print.c: (print_trns_proc) Write (CR/)LF if PRINT is used _or_
6533         if the file isn't declared as binary.
6534
6535 Mon Jan 18 19:56:45 1999  Ben Pfaff  <blp@gnu.org>
6536
6537         MATCH FILES corrupted memory and dumped core on some syntax
6538         errors.  Fixed.
6539
6540         * get.c: (cmd_match_files) Set file->handle to NULL before
6541         jumping to lossage.
6542         (mtf_free_file) Don't free a null dictionary.   
6543
6544 Mon Jan 18 19:27:57 1999  Ben Pfaff  <blp@gnu.org>
6545
6546         MATCH FILES should set numeric values not available to the
6547         system-missing value, not to 0.  Thanks to Dr. Dirk Melcher
6548         <BZN-mdksh@t-online.de> for reporting this bug.
6549
6550         * get.c: (mtf_processing) Set unused records to system-missing,
6551         not 0.
6552
6553 Mon Jan 18 15:06:46 1999  Ben Pfaff  <blp@gnu.org>
6554
6555         KEEP didn't work properly on the SAVE procedure.  Fixed.  Thanks
6556         to Ralf Geschke <ralf@kuerbis.org> for reporting this bug.
6557
6558         * temporary.c: (save_dictionary) Initialize var_by_name AVL tree
6559         in newly created dictionary, and add each copied variable to the
6560         tree.
6561  
6562 Mon Jan 18 15:04:48 1999  Ben Pfaff  <blp@gnu.org>
6563
6564         Memory leak fix.
6565         
6566         * get.c: (trim_dictionary) Free variable list for KEEP after
6567         finishing with it.
6568
6569 Mon Jan 18 12:57:36 1999  Ben Pfaff  <blp@gnu.org>
6570
6571         Some systems didn't like the way open_file was coded.  Thanks to
6572         Hankin <hankin@rogue.consultco.com> for pointing this out.
6573
6574         * filename.c: (open_file) Don't try to store stdin, stdout,
6575         stderr as part of an array, because that doesn't always work.
6576
6577 Mon Jan 18 12:53:27 1999  Ben Pfaff  <blp@gnu.org>
6578
6579         The SAVE procedure didn't save long string variables properly.
6580         Fixed by this patch.  Thanks to Hankin
6581         <hankin@rogue.consultco.com> for this patch.
6582         
6583         * sfm-write.c: (write_variable) Fix off-by-one error in writing
6584         out variable pad records.
6585
6586 Tue Jan  5 14:29:27 1999  Ben Pfaff  <blp@gnu.org>
6587
6588         Previously, if PRINT SPACE were given a negative argument, it
6589         would report an error, then spin in an (almost) infinite loop.
6590         This fixes that behavior.
6591
6592         * print.c: (print_space_trns_proc) After reporting a negative
6593         argument, set number of lines to print to 1.
6594
6595 Tue Jan  5 13:59:55 1999  Ben Pfaff  <blp@gnu.org>
6596
6597         SPSS 8.0 outputs some new record types in its system files, and it
6598         allows longer value labels.  Accept these system files.
6599
6600         * sfm-read.c: (sfm_read_dictionary) Ignore record type 7 subtype
6601         11 emitted by SPSS 8.0.
6602         
6603 Tue Jan  5 13:55:50 1999  Ben Pfaff  <blp@gnu.org>
6604
6605         The LIST procedure was too conservative in allocating space for
6606         buffers, which caused a bug that only showed up with very long
6607         output variables.  Thanks to Hankin <hankin@dunno.com> for this
6608         bug report.
6609
6610         * list.q: (determine_layout) Allocate 1022 bytes instead of 256.
6611
6612 Tue Jan  5 13:34:34 1999  Ben Pfaff  <blp@gnu.org>
6613
6614         Typo meant string format specifiers weren't checked properly.  I
6615         think that Hankin <hankin@dunno.com> sent me this report, but I'm
6616         willing to be corrected on this point.
6617  
6618         * format.c: (check_string_specifier) Fix obvious typo.  
6619
6620 Tue Jan  5 12:50:42 1999  Ben Pfaff  <blp@gnu.org>
6621
6622         Using $CASENUM in an expression didn't work.  Here's a fix.
6623         Thanks to Dirk Melcher <BZN-mdksh@t-online.de> for reporting this
6624         bug.
6625          
6626         * expr-evl.c: (evaluate_expression) Add OP_CASENUM case.
6627
6628         * expr-opt.c: (dump_node) OP_CASENUM is acceptable.
6629
6630 Tue Jan  5 12:47:48 1999  Ben Pfaff  <blp@gnu.org>
6631
6632         The changes in 0.2.1 to fix DATA LIST FREE parsing broke some
6633         other behavior, *sigh*.  This patch hopefully fixes that.  This
6634         time I've actually tested it.
6635
6636         Thanks to Hankin <hankin@dunno.com> for reporting this bug.
6637
6638         * data-list.c: (read_from_data_list_free,
6639         read_from_data_list_list) Call parse_string_as_format() directly
6640         without mucking around with the field width.
6641
6642 Tue Jan  5 12:31:19 1999  Ben Pfaff  <blp@gnu.org>
6643
6644         Occasionally, you may encounter a script that wants to be
6645         interpreted in interactive mode.  Make -i emulate this behavior to
6646         allow such scripts to be executed with PSPP.
6647
6648         Thanks to Hankin <hankin@dunno.com> for reporting this behavior.
6649
6650         * cmdline.c: (pre_syntax_message[]) Update -i description.
6651
6652         * lexer.c: (preprocess_line) When getl_interactive is 2 (i.e.,
6653         when -i is given on the command line) don't treat unindented lines
6654         as starting a new command.
6655
6656 Tue Jan  5 12:30:10 1999  Ben Pfaff  <blp@gnu.org>
6657
6658         In conjunction with egcs 1.1.1, Checker emits some bogus warnings,
6659         mostly caused by local initialized aggregates.  After egcs is
6660         fixed upstream these can be removed, but for now they're not a big
6661         deal.
6662         
6663         * ascii.c: (ascii_postopen_driver) Checker chokes on local
6664         initialized arrays.  Avoid this.
6665
6666         * sfm-write.c: (sfm_write_dictionary) Don't use a local
6667         initialized struct.
6668
6669 Tue Jan  5 12:07:24 1999  Ben Pfaff  <blp@gnu.org>
6670
6671         egcs 1.1.1 has some new warnings relative to gcc 2.8.1, which the
6672         following changes avoid.  Currently I compile sources with egcs
6673         1.1.1 and gcc 2.7.2.3 before sending them out.
6674
6675         * apply-dict.c: (apply_dict) Use new avl_traverser_init() macro.
6676         
6677         * ascii.c: (option_tab[]) Initialize all struct members.
6678
6679         * avl.h: (avl_traverser_init) New macro.
6680         
6681         * command.c: (DEFCMD, UNIMPL macros, cmd_table[]) Initialize all
6682         struct members.
6683
6684         * crosstabs.q: (enum_var_values) Use new hsh_iterator_init()
6685         macro.
6686
6687         * hash.c: Comment fix.
6688
6689         * hash.h: (hsh_iterator_init) New macro.
6690
6691         * html.c: (option_tab[]) Initialize all struct members.
6692
6693         * pfm-write.c: (write_value_labels) Use new avl_traverser_init()
6694         macro.
6695
6696         * postscript.c: (option_tab[]) Initialize all struct members.
6697         (output_encodings, preclose, dump_lines) Use new
6698         hsh_iterator_init() macro.
6699
6700         * sfm-write.c: (write_value_labels) Use new avl_traverser_init()
6701         macro.
6702
6703         * sysfile-info.c: (describe_variable) Use new avl_traverser_init()
6704         macro.
6705
6706 Thu Nov 19 12:32:45 1998  Ben Pfaff  <blp@gnu.org>
6707
6708         * data-in.c: Examined each of the parsing functions to make sure
6709         that they wouldn't dump core if they were passed a string of the
6710         wrong length, since now the DATA LIST FREE/LIST routines don't
6711         check for field width before passing it to the data parser.
6712         (parse_RBHEX, parse_AHEX) Reject odd length input.
6713         (parse_string_as_format) Reject input that's too short or too
6714         long.
6715
6716         * data-list.c: Before, the DATA LIST FREE/LIST routines would pad
6717         a field to its entire declared output width then pass it to the
6718         data-in parsing routines.  This contradicted the documented
6719         behavior.  This is fixed in these changes.  Thanks to Mark H. Wood
6720         <mwood@IUPUI.Edu>.  In addition, this fixes a few more details of
6721         free-format parsing that differed from SPSS.
6722         (cut_field) Commas and spaces are treated identically.  Returns
6723         the proper column instead of a fixed 1 value.
6724         (parse_field) Removed.
6725         (read_from_data_list_free, read_from_data_list_list) Call
6726         parse_string_as_format directly instead of parse_field.
6727
6728         * heap.c: (heap_delete) Stylistic fixes.
6729
6730 Sun Aug  9 11:12:13 1998  Ben Pfaff  <blp@gnu.org>
6731
6732         * loop.c: (loop_2_trns_proc) Formatting fix.
6733
6734         * sel-if.c: (cmd_filter) Set FILTER_before_TEMPORARY.
6735
6736         * var.h: (glob var FILTER_before_TEMPORARY) New global var.
6737
6738         * vfm.c: (macro FILTERED) New.
6739         (static var filter_var) New.
6740         (process_active_file_write_case) Use FILTERED.
6741         (setup_filter) Set filter_var.
6742         (close_active_file) Delete the filter if not
6743         FILTER_before_TEMPORARY.
6744         (procedure_write_case) Use FILTERED.
6745
6746 Sat Aug  8 00:20:14 1998  Ben Pfaff  <blp@gnu.org>
6747
6748         * crosstabs.q: Changed /PIVOT={ON,OFF} to /FORMAT={PIVOT,NOPIVOT}.
6749
6750         * data-in.c: (parse_day_count) Message fix.
6751         (parse_month) Style fix.
6752
6753         * data-list.c: (struct data_list_pgm) New member eof.
6754         (cmd_data_list) Init eof to 0.
6755         (do_reading) Implement the /END subcommand and read-past-eof
6756         checking.
6757
6758         * do-if.c: Include stdio.h when debugging.
6759         (cmd_else_if) Make sure the command is .-terminated.
6760
6761         * glob.c: (init_glob) Capitalize the command prompt.
6762
6763         * inpt-pgm.c: (end_case_trns_proc) Debugging message.
6764         (end_file_trns_proc) Debugging message.
6765
6766         * loop.c: (internal_cmd_loop) Make it work when there's no loop
6767         index!
6768         (loop_2_trns_proc) Enable MXLOOPS (why was this disabled?)
6769
6770         * main.c: (dump_token) Make kwtab[] const.
6771
6772         * set.q: Spelling, comment fixes.
6773
6774         * sysfile-info.c: (cmd_display) DISPLAY VECTORS not DISPLAY
6775         VECTOR.
6776
6777         * vars-prs.c: (fill_all_vars) Style fix.
6778
6779         * vfm.c: (index_to_varname) Return const.
6780
6781 Tue Aug  4 23:49:23 1998  Ben Pfaff  <blp@gnu.org>
6782
6783         * Changes in many source files for partial -ansi -pedantic and
6784         no-debugging compliance: Remove trailing common in enum
6785         declarations; add `unused' attributes; insert some appropriate
6786         casts.
6787
6788         * cmdline.c: (parse_command_line) Add new --testing-mode flag.
6789
6790         * command.c: (shell) Make static.
6791         (run_command) Make static.
6792
6793         * data-list.c: (dump_fixed_table) Remove use of local_strdup().
6794
6795         * dfm.c: (cmd_begin_data) I18n fix.
6796
6797         * error.c: (verbose_msg) Define if __STRICT_ANSI__.
6798
6799         * error.h: (macro verbose_msg) Define if __STRICT_ANSI__.
6800
6801         * expr-opt.c: (evaluate_tree) Don't initialize local arrays if
6802         __STRICT_ANSI__.
6803
6804         * file-handle.q: Don't prepend the source file directory name to
6805         the data file name.  (Ongoing issue.)
6806         (prepend_current_directory) Comment out.
6807         (internal_cmd_file_handle) Don't call prepend_current_directory().
6808         (fh_get_handle_by_filename) Ditto.
6809
6810         * filename.c: Append zero byte to readlink() return value.
6811
6812         * getline.c: (getl_read_line) I18n fix.
6813
6814         * lexer.h: Don't use gcc features if __STRICT_ANSI__.
6815
6816         * misc.h: Don't use gcc features if __STRICT_ANSI__.
6817
6818         * pfm-write.c: (bufwrite) Don't try to increment a void * pointer
6819         directly.
6820
6821         * postscript.c: (output_encodings) Don't use local_strdup().
6822         (postopen) Ditto.
6823
6824         * print.c: Don't use gcc features if __STRICT_ANSI__.
6825
6826         * q2c.c: (dump_vars) Don't put a , at the end of the last enum.
6827
6828         * recode.c: (parse_src_spec) Fully brace nested if's.
6829
6830         * set.q: (global var set_testing_mode) New var.
6831
6832 Wed Jul 29 22:01:44 1998  Ben Pfaff  <blp@gnu.org>
6833
6834         * ascii.c: Add some more `unused' attributes that only come into
6835         play when NDEBUG is defined.
6836         (ascii_close_page) Set s_len when reallocating s.
6837         
6838         * crosstabs.q: (delete_missing) New function.
6839         (output_pivot_table) Call delete_missing() if /MISSING=REPORT.
6840         (make_summary_table) Create summary table reallocable.
6841
6842         * postscript.c: Add more `unused' attributes as above.
6843
6844         * tab.c: (tab_create) [GLOBAL_DEBUGGING] Set reallocable member.
6845         (tab_realloc) [GLOBAL_DEBUGGING] Assert that table is reallocable.
6846          
6847         * tab.h: (struct tab_table) [GLOBAL_DEBUGGING] New `reallocable'
6848         member.
6849
6850         * var.h: (macro force_dup_variable) [!GLOBAL_DEBUGGING] Remove
6851         gratuitous space between parameter definition.
6852
6853         * vars-atr.c: Changed some assert(0)'s to abort()'s to prevent
6854         complaints about running off the end of functions with NDEBUG
6855         enabled.
6856
6857 Sun Jul  5 00:17:25 1998  Ben Pfaff  <blp@gnu.org>
6858
6859         * Several source files: Removed some PORTME notes when reflection
6860         revealed that ANSI forbids that sort of breakage.  Also, added
6861         lots of `unused' qualifiers here and there.
6862
6863         * aggregate.c: (accumulate_aggregate_info) Remove local var
6864         weighting that turned out not to be used.
6865
6866         * avl.c: Update to version 1.1.0.  Add unused specifier.
6867         (avl_destroy) Initialize ab to 0.  Comment fixes.  Cast return
6868         value to void *.
6869         (avl_probe) Replace some instances of 1 with +1 where appropriate.
6870         (avl_find) Cast return value to void *.
6871         (avl_delete) q doesn't need to be initialized at the beginning of
6872         the function.  Replace some instances of 1 with +1.
6873         (force_avl_delete) Renamed avl_force_delete, all references changed.
6874         (compare_ints) `param' marked unused.
6875         (print_int) `param' marked unused.
6876         (recurse_tree) Replace some instances of 1 with +1.
6877
6878         * avl.h: Update to version 1.1.0.  Only declares avl function
6879         types if not already declared.
6880         (AVL_MAX_HEIGHT) Only define if not already defined.
6881         (struct avl_node) New unused member char pad[2].
6882         [GLOBAL_DEBUGGING] Change conditionalization to NDEBUG instead.
6883         (force_avl_insert) Renamed avl_force_insert.
6884         (force_avl_delete) Renamed avl_force_delete.
6885
6886         * crosstabs.q: (struct table_entry) Put `freq' into a union with
6887         new member `data'.
6888         (struct crosstab) Add new member `ofs'.
6889         (glob var int_tab) Removed.
6890         (custom_tables) In integer mode, assign v[i] properly through the
6891         indirect var_dict.
6892         (custom_variables) Now p.crs.max == max + 1.
6893         [DEBUGGING] (debug_print) p.crs.min and p.crs.max are now ints.
6894         (precalc) Implement integer mode.
6895         (calc_integer) Implement integer mode.
6896         (compare_table_entry) Remove unused local variable `comparing'.
6897         (make_summary_table) Implement integer mode.
6898         (macro ns_rows) Implemented as static variable now.
6899         (several variables) Made static, from global.
6900         (output_pivot_table) Use table_value_missing() for column heads.
6901         Remove several unused local variables.  Implement integer mode
6902         table summing.  Count up ns_rows.
6903         (crosstabs_dim) Make columns wider when /MISSING=REPORT requested.
6904         (find_pivot_extent) Moved into find_pivot_extent_general; now just
6905         calls that function or find_pivot_extent_integer.
6906         (find_pivot_extent_integer) New function.
6907         (enum_var_values) Implemented for integer mode.
6908         (table_value_missing) New function.
6909         (display_dimensions) Call table_value_missing() for heads.
6910         (float_M_suffix) New function.
6911         (display_crosstabulation) Call table_value_missing() for row
6912         heads.  Handle missing values in /MISSING=REPORT mode.
6913         (calc_fisher) Remove unused var N.
6914         (calc_r) Remove unused var fact.
6915
6916         * data-list.c: (dump_fixed_table) Fix table dimensioning.
6917         (read_one_set_of_repetitions) Remove unused vars var_spec, column.
6918
6919         * data-out.c: (insert_commas) Remove unused var cp.
6920         (convert_CCx) Remove unused vars save_set_decimal,
6921         save_set_grouping.
6922
6923         * descript.q: (dump_z_table) Fix table dimensioning.
6924         (pre_calc) Remove unused var j.
6925         (display) Remove unused vars title, s.  Fix table dimensioning.
6926
6927         * expr-evl.c: Comment fixes.
6928
6929         * frequencies.q: (full_dim) New function.
6930         (dump_full) Fix table dimensioning.
6931         (condensed_dim) New function.
6932         (dump_condensed) Fix table dimensioning.
6933
6934         * get.c: (cmd_match_files) Remove unused var n_val.  Remove unused
6935         label winnage.
6936
6937         * html.c: (html_close_drive) Remove unused var i.
6938         (postopen) Remove unused vars title, curfn_len, cp.
6939         (preclose) Remove unused vars this, x.
6940
6941         * lexer.c: Comment fixes.
6942
6943         * matrix-data.c: (cmd_matrix_data) Remove unused var index.
6944
6945         * means.q: (custom_tables) Remove unused var m_dim.
6946
6947         * mis-val.c: Format fix.
6948
6949         * modify-vars.c: (cmd_modify_vars) Remove unused var new_dict.
6950
6951         * output.c: (outp_get_paper_size) Remove unused var cp.
6952
6953         * pfm-read.c: (read_float) Remove unused var save, unused label
6954         underflow.
6955         (read_variables) Remove unused vars cp, j.
6956         (read_value_label) Remove unused var j.
6957
6958         * pfm-write.c: (bufwrite) Remove unused var i.
6959
6960         * postscript.c: (ps_postopen_drive) Remove unused vars dev_info,
6961         fn.
6962         (output_encodings) Remove unused vars char_cp, n_output.
6963         (read_ps_encodings) Remove unused var ep.
6964         (postopen) Remove unused var title.
6965         (preclose) Remove unused var fp.
6966         (ps_open_page) Remove unused vars true, false, orientation,
6967         mirror_horz, mirror_vert, width, length.
6968         (ps_text_metrics) Remove unused var x.
6969
6970         * q2c.c: (find_symbol) Remove unused var y.
6971         (parse_setting) Remove unused parameter sbc, all references
6972         changed.
6973         (dump_parser) Remove unused var cp.
6974         (dump_free) Remove unused var i.
6975
6976         * set.q: (static vars args, n) Removed.
6977         (internal_cmd_gset) Removed.
6978
6979         * sfm-read.c: (sfm_read_dictionary) Removed unused var i.
6980         (read_machine_flt64_info) Removed unused var file_endian.
6981         (read_documents) Removed unused var i.
6982         (read_compressed_data) Removed unused parameter dict, all
6983         references changed.
6984
6985         * sfm-write.c: (bufwrite) Removed unused var i.
6986         (sfm_write_case) Removed unused var i.
6987
6988         * sort.c: (merge_once) Remove unused var t.
6989         (write_separate) #if 0 out as dead code.
6990
6991         * split-file.c: (cmd_split_file) Remove unused var i.
6992
6993         * sysfile-info.c: (sysfile_info_dim) New function.
6994         (cmd_sysfile_info) Fix table dimensioning.
6995         (variables_dim) New function.
6996         (display_variables) Fix table dimensioning.
6997         (describe_variable) Remove unused var prev_r.
6998
6999         * t-test.q: (z_postcalc) Removed.
7000         (pairs_calc) Remove unused var bad_weight.
7001         (postcalc) Remove unused vars dfn, dfd.
7002
7003         * tab.c: (tab_create) Set t->dim to NULL.
7004         (tab_dim) Make sure t->dim is NULL first.
7005         (tab_natural_width) Remove parameter `clamp'.
7006         (tab_value) Remove duplicate assertion for table.
7007         (tab_raw) New function.
7008         (nowrap_dim) New function.
7009         (wrap_dim) New function.
7010         (tab_output_text) Fix table dimensioning.
7011
7012         * tab.h: (tab_raw) New macro.
7013
7014         * val-labs.c: (get_label) Remove unused var type.
7015         (copy_value_labels) Remove unused var trav.
7016
7017         * var.h: (struct crosstab_proc) Completely changed.
7018
7019         * vars-prs.c: (parse_dict_variable) Remove unused var v.
7020
7021         * vfm.c: (open_active_file) Remove unused vars i, lp.
7022
7023         * weight.c: (weight_trns_proc) #if 0 out as dead code.
7024         
7025 Tue Jun  2 23:37:21 1998  Ben Pfaff  <blp@gnu.org>
7026
7027         * Makefile.am: Add apply-dict.c, flip.c.
7028
7029         * apply-dict.c: New file.
7030         
7031         * command.c: (struct command) Make cmd[] larger for CLEAR
7032         TRANSFORMATIONS command name.
7033         (parse_cmd) Make sure we're in a valid state before using it as an
7034         index.  Discard variables and reset state on invalid transitions.
7035         (cmd_clear_transformations) New function.
7036
7037         * command.def: Add APPLY DICTIONARY, CLEAR TRANSFORMATIONS, FLIP.
7038         Add unimplemented PRESERVE, RESTORE.
7039
7040         * file-handle.h: Include stddef.h.
7041
7042         * flip.c: New file.
7043         
7044         * pfm-read.c: (parse_value) Pad value label values with spaces,
7045         not nulls.
7046
7047         * sfm-read.c: (struct sfm_fhuser_ext) Add reference count.
7048         (sfm_close) Decrement reference count, make sure it's zero.
7049         (sfm_maybe_close) New function.
7050         (sfm_read_dictionary) Handle reference counts.
7051
7052         * vars-atr.c: (clear_default_dict) New function.
7053         (discard_variables) Use clear_default_dict().
7054
7055 Sun May 31 00:58:05 1998  Ben Pfaff  <blp@gnu.org>
7056
7057         * Makefile.am: Add pfm-write.c.
7058         (LDADD) Add the libgmp2 libraries.
7059
7060         * command.def: Define EXPORT.
7061
7062         * get.c: (cmd_export) New function.
7063         (export_write_case_func) New function.
7064
7065         * pfm-read.c: (static spss2ascii[]) Make it const.
7066
7067         * pfm-write.c: New file.
7068
7069         * sfm-write.c: Formatting, comment fixes.
7070
7071         * var.h: Comment fix.
7072
7073 Fri May 29 21:44:12 1998  Ben Pfaff  <blp@gnu.org>
7074
7075         * Makefile.am: Add pfm.h, pfm-read.c.
7076
7077         * command.def: IMPORT is now implemented.
7078
7079         * format.c: (glob var translate_fmt[]) New var.
7080
7081         * get.c: (enum GTSV_NONE) Renamed GTSV_OPT_NONE.
7082         (cmd_import) New function.
7083         (import_source_read) New function.
7084         (glob var import_source) New var.
7085
7086         * pfm-read.c: New file.
7087
7088         * pfm.h: New file.
7089         
7090         * sfm-read.c: (parse_format_spec) Local variable translate_fmt[]
7091         moved in format.c.
7092         (dump_dictionary) Disabled printing a couple of items.
7093
7094 Mon May 25 12:42:37 1998  Ben Pfaff  <blp@gnu.org>
7095
7096         * crosstabs.q: (postcalc) Call make_summary_table().
7097         (make_summary_table) New function.
7098         (insert_summary) New function.
7099         (display_dimensions) Remove some unnecessary arguments, all
7100         references changed.
7101         (output_pivot_table) Fix lots of problems with the risk table
7102         setup.
7103         (submit) Don't display an empty table.
7104         (display_risk) Fix order of arguments to calc_risk().
7105
7106         * glob.c: Always include assert.h and stdlib.h.
7107
7108         * output.h: (enum OUTP_T_JUST_FULL) Removed, all references
7109         removed.
7110
7111         * tab.c: (tab_create) Cosmetic changes.
7112
7113         * tab.h: (enum TAB_JUSTIFY) Removed, all references removed.
7114
7115 Sun May 24 22:39:23 1998  Ben Pfaff  <blp@gnu.org>
7116
7117         * tab.def: Removed.
7118
7119         * crosstabs.q: (output_pivot_table) Headers drawing and submission
7120         code simplified, moved into new function submit().
7121         (submit) New function.
7122         (crosstabs_dim) New function.
7123         (display_directional) Substitute variable names for %s where
7124         appropriate.
7125         (somers_d_v[], somers_d_ase[], somers_d_t[]) New static vars.
7126         (calc_symmetric) Initialize parameters only if non-NULL.
7127         Calculate Somers' d.
7128         (calc_directional) Calculate Somers' d (or copy it, really).
7129         Calculate eta.
7130
7131         * output.c: (outp_string_width) New function.
7132
7133         * postscript.c: (postopen) Calculate font widths based on the
7134         width of the zero '0' character, not the width of the space
7135         character.  Set paper-width and paper-length based on points, not
7136         device units.
7137         (ps_open_page) Fix page setup string for landscape mode.
7138
7139         * som.h: (struct som_dimension) Removed.
7140         (struct som_table_class) height, width members take int * not
7141         som_dimesion * now.
7142
7143         * tab.c: Many functions now have added parameter validation.
7144         (tab_height, tab_width) These functions were removed and merged
7145         into a single function tab_resize(), and all references changed.
7146         (tab_dim) Rewritten since the interface changed; reduced from
7147         hundreds of lines to two.  All callers were changed.  Currently
7148         most of them just use tab_natural_dimensions as their callback and
7149         await detailed translation of functionality.
7150         (tab_natural_width) New function.
7151         (tab_natural_height) New function.
7152         (tab_natural_dimensions) New function.  This is a callback
7153         function, not something that you'd want to call directly.
7154         (tab_nat_dim) Removed.
7155         (tabi_table) Allocates t->w and t->h.
7156         (tabi_driver) Inlined sum_columns()'s functionality.  Calls the
7157         dimensions callback.
7158         (evaluate_dimensions) Removed.
7159         (sum_columns) Removed.
7160
7161         * tab.h: (enum TAL_1THIN) Removed.
7162         (enum series t_*) Removed.
7163         (struct tab_table) Members trh, trv changed to unsigned char *
7164         from int *.  Member dim changed to a function pointer from a
7165         unsigned char *.  Member max_stack_height removed.  New members
7166         hr_tot, vr_tot.
7167         (macros tab_l, tab_r, tab_t, tab_b) New.
7168
7169 Sat May 23 23:22:13 1998  Ben Pfaff  <blp@gnu.org>
7170
7171         * ascii.c: (delineate) Assign last_space_nchars before skipping
7172         spaces, to fix right justification.
7173
7174         * crosstabs.q: (static vars risk, direct) New vars.
7175         (static var pearson_r) Removed.
7176         (glob var chisq_fisher) Made static.
7177         (static vars row_tot[], col_tot[]) Don't include grand total
7178         anymore.
7179         (static var grand_total) Renamed W, all references changed.
7180         (output_pivot_table) Only make `table' if num_cells != 0.  Make
7181         risk and directional tables.  Deal with grand total no longer part
7182         of col_tot[].  Free rows and cols after we're done with them.
7183         (display_risk) New function.
7184         (display_directional) New function.
7185         (clac_r) Rewritten so that it stores all its results into its
7186         arguments, so it can be used for Spearman's correlation too.
7187         (calc_symmetric) Added a t[] argument, all references changed.
7188         Calculates ASEs for tau-b, tau-c, gamma.  Calculates Spearman's r,
7189         Pearson's r, Cohen's kappa.
7190         (calc_risk) New function.
7191         (calc_directional) New function.
7192
7193         * som.c: (som_submit) Improved debugging code.
7194
7195         * stats.c: (hypercube) New function.
7196         (cube) New function.
7197         (sqr) New function.
7198         (normal_sig) Went back to old implementation, which actually
7199         worked.
7200
7201         * stats.h: (macros square, cube, hypercube) Removed.  The
7202         equivalent functions in stats.c are inlined here; all references
7203         to square changed to sqr.
7204
7205 Fri May 22 00:03:41 1998  Ben Pfaff  <blp@gnu.org>
7206
7207         * crosstabs.q: (N_SYMMETRIC) New define.
7208         (postcalc) Disable debug printing.
7209         (static vars chisq_fisher, pearson_r) New.
7210         (output_pivot_table) Add support for symmetric measures.  Add
7211         chi-square output of exact sigs.
7212         (display_chisq) Rewritten.
7213         (display_symmetric) New function.
7214         (gamma_int) New function.
7215         (Pr) New function.
7216         (swap) New function.
7217         (calc_fisher) New function.
7218         (calc_chisq) Check boundary conditions better. Calculate Yates,
7219         Fisher, Mantel-Haenszel tests.
7220         (calc_r) New function.
7221         (calc_symmetric) New function.
7222
7223         * stats.c: (normal_sig) Rewritten with new algorithm.  Renamed
7224         from calc_normal.
7225         (chisq_sig) Better boundary conditions.  Renamed from
7226         calc_significance.
7227
7228         * tab.h: (struct tab_table) New member cf.
7229
7230         * tab.c: (tab_create) Set cf.
7231         (tab_width) New function.
7232         (tab_realloc) Handle cf.
7233         (tab_vline) Handle cf.
7234         (tab_hline) Handle cf.
7235         (tab_box) Handle cf.
7236         (tab_value) Handle cf.
7237         (tab_float) Handle cf.
7238         (tab_text) Handle cf.
7239         (tab_joint_text) Handle cf.
7240         (tab_offset) Handle cf.
7241         (tab_next_row) Handle cf.
7242         (evaluate_dimensions) Handle cf.
7243         (render_strip) Handle cf.
7244
7245 Wed May 20 00:03:59 1998  Ben Pfaff  <blp@gnu.org>
7246
7247         * crosstabs.q: (postcalc) New vars row_tot, col_tot, pass them to
7248         output_pivot_table().
7249         (output_pivot_table) Moved lots of local variables outside and
7250         made them static.  Add beginnings of chi-square statistic
7251         support.  Now column and row totals aren't in the main matrix.
7252         Always zero out any leftover rows & columns after we're done with
7253         the table entries.  Move all output stuff into
7254         display_dimensions(), display_crosstabs(), display_chisq().
7255         (display_dimensions) New function.
7256         (display_crosstabulation) New function.
7257         (display_chisq) New function.
7258         (calc_chisq) Implemented Pearson and likelihood-ratio chisquares.
7259
7260         * frequencies.q: (dump_full, dump_condensed) Remove tab_null()
7261         references, simplify logic.
7262
7263         * postscript.c: Remove scale, translate-x, translate-y,
7264         mirror-horz, mirror-vert, rotate-180 options.
7265         (struct ps_driver_ext) Remove scale, translate_x, translate_y.
7266         All references deleted.
7267         (macro YT) New macro.
7268         (array option_tab[]) Removed options.
7269         (ps_option) Removed options.
7270         (ps_open_page) Write page setup explicitly to output file, without
7271         using now-deleted BP function.
7272         (macro dump_line) Use YT().
7273         (macro dump_thick_line) Use YT().
7274         (draw_headers) Use YT().
7275         (switch_font) Reorder arguments to SF function.
7276         (write_text) Use YT().
7277
7278         * sfm-read.c: (sfm_read_case) Don't attempt to read variables that
7279         have get.fv == -1.
7280
7281         * sysfile-info.c: (describe_variables) Don't use tab_nulls().
7282
7283         * tab.c: (tab_create) Initialize t->ct to zeros.  Remove
7284         null-debugging code.
7285         (tab_realloc) Remove null-debugging code.  Initialize new regions
7286         of t->ct to zeros.
7287         (tab_vline) Support offsets.
7288         (tab_hline) Support offsets.
7289         (tab_box) Support offsets.
7290         (tab_null) Removed.
7291         (tab_nulls) Removed.
7292         (tab_row) Removed.
7293         (tab_col) Removed.
7294         (evaluate_dimensions) Remove null-debugging code.  Understand
7295         TAB_EMPTY attribute.  Assert that text.s.s is always non-NULL if
7296         TAB_EMPTY not present.
7297
7298         * tab.h: New cell attribute TAB_EMPTY.
7299         (macros tab_nr, tab_nc, tab_row, tab_col) New.
7300
7301         * vars-atr.c: (init_variable) Set get.fv to -1 so that GET doesn't
7302         try to read them from system files.
7303
7304         * vfm.c: (dump_splits) Don't call tab_null().   
7305
7306 Sat May 16 19:36:55 1998  Ben Pfaff  <blp@gnu.org>
7307
7308         * crosstabs.q: (struct crosstab) Added `missing' member.
7309         (custom_tables) Init missing.
7310         (calc_general) Handle missing values.
7311         (calc_chisq) New function.
7312         (output_pivot_table) Start work on chi-square output.  Update for
7313         new tab offset support functions.  Shorten statistic names.
7314
7315         * Several files: add in more `const's to placate gcc's warnings.
7316
7317         * tab.h: (struct tab_table) Add col_ofs, row_ofs members.  Comment
7318         fixes.
7319
7320         * tab.c: (tab_height, tab_realloc, tab_vline, tab_hline, tab_box,
7321         tab_null, tab_nulls, tab_value, tab_float, tab_text,
7322         tab_joint_text) Add col_ofs and row_ofs support.
7323         (tab_offset) New function.
7324         (tab_next_row) New function.
7325         (tab_row) New function.
7326         (tab_col) New function.
7327         (tabi_table) Add col_ofs and row_ofs support.
7328
7329         * vars-atr.c: (is_system_missing) New function.
7330
7331 Tue May 12 16:14:30 1998  Ben Pfaff  <blp@gnu.org>
7332
7333         * crosstabs.q: Expanded subcommand names RESID --> RESIDUAL, etc.
7334         (static var no_cells) Removed.
7335         (static var num_cells) New.
7336         (static var expected) New.
7337         (static var cells[]) New.
7338         (internal_cmd_crosstabs) Deal with new variables.
7339         (postcalc) Removed most of the meat and put it in new function
7340         output_pivot_table().
7341         (output_pivot_table) Calculates and outputs an entire pivot table.
7342
7343         * postscript.c: (postopen) Fix problems with free()ing addresses
7344         not obtained from malloc().
7345
7346         * som.c: (som_submit) Add assertion.
7347
7348         * sysfile-info.c: (describe_variable) Use new tab_nulls()
7349         function.
7350
7351         * tab.c: (static var tab_names[]) New.
7352         (tab_realloc) -1 for nc or nr indicates no change.
7353         (tab_nulls) New function.
7354         (tab_dim) Use tab_names[].
7355         (tabi_cumulate) Don't include bottom or right headers.  Furrfu.
7356         (evaluate_dimensions) Don't terminate on uninited cells, just put
7357         an X in them and emit a notice.  Use tab_names[].
7358
7359         * tab.h: Move bits into tab.def.
7360
7361         * tab.def: New.  Don't try to declare tab_table_class because then
7362         som.h has to be included.       
7363         
7364 Thu May  7 22:55:04 1998  Ben Pfaff  <blp@gnu.org>
7365
7366         * command.def: New file, contains all the command definitions
7367         previously included bodily in command.c.
7368
7369         * format.def: New file, contains all of the format definitions
7370         previously split across format.h, format.c, and sfm-write.c.
7371
7372         * lexer.h: Renamed from tokens.h in order to match corresponding
7373         .c file name.
7374
7375         * lexerP.h: Moved some rarely used functions exported by lexer.c
7376         into here.
7377
7378         * Makefile.am: Commemorate renamed files.
7379         (EXTRA_DIST) Add command.def, format.def.
7380
7381         * command.c: [0] (walk_cmdtable_func) Removed.
7382
7383         * crosstabs.q: (postcalc) Made it work and print out matrices
7384         proving it.
7385         (enum_column_values) Renamed enum_var_values, generalized for any
7386         variable.
7387
7388         * format.h: (struct fmt_desc) New member `spss'.
7389
7390         * q2c.c: (main) Generated code includes lexer.h instead of
7391         tokens.h.
7392
7393         * sfm-write.c: (write_format_spec) Use new spss member of fmt_spec
7394         instead of an independent translation table.
7395
7396 Tue May  5 13:19:03 1998  Ben Pfaff  <blp@gnu.org>
7397
7398         * Lots of source files: Added const to declarations.
7399
7400         * aggregate.c: (parse_aggregate_function) Rename inner i to j.
7401         
7402         * arena.c: (arena_clear) Set prev pointer to null when done.
7403
7404         * ascii.c: (ascii_option) Rename index as indx.
7405
7406         * avl.c: This is now a separate library called libavl.
7407         (xmalloc) Make static.
7408         (avl_probe) Step A7 can use the cache instead of an explicit
7409         compare.
7410         (avl_delete) Don't maintain a q pointer because it's always
7411         available in the pointer stack.  Comment fix.
7412
7413         * avl.h: This is now a separate library called libavl.
7414
7415         * command.c: (cmd_table[]) Remove spurious trailing "".
7416
7417         * common.h: Only include random() fix if this system needs it.
7418
7419         * crosstabs.q: Include alloca headers.
7420         (n_sorted_tab) New global var.
7421         (postcalc) Mostly rewritten.
7422         (find_pivot_extent) Rewritten.
7423         (enum_column_values) Rewritten.
7424
7425         * data-out.c: (convert_F) Rename inner n as n_spaces.
7426
7427         * error.c: (dump_message) Don't have an outer var i.
7428
7429         * file-handle.q: (static var f) Removed.  All references removed.
7430         (internal_cmd_file_handle) Uses a local variable instead of f.
7431
7432         * get.c: (trim_dictionary) Change scope of i, i1, i2.
7433         (cmd_match_files) Don't strcpy tokstr into sbc (why was this ever
7434         done?)
7435
7436         * getline.h: Declare getl_history as extern.  Reported by
7437         palme@uni-wuppertal.de (Hubert Palme).
7438
7439         * postscript.c: (postopen) Some large mods for constness.
7440
7441         * recode.c: Remove spurious copyrights since PSPP is owned by FSF
7442         anyway.
7443
7444 Fri Apr 24 12:52:47 1998  Ben Pfaff  <blp@gnu.org>
7445
7446         * Makefile.am: Rename BUILT_SOURCES to q_sources, all references
7447         changed.  Add avl.c, avl.h to pspp_SOURCES.  Remove avllib from
7448         LDADD.
7449
7450         * avl.c, avl.h: New files.  These form a clean-room
7451         reimplementation of avllib.  Iterative algorithms are used in
7452         place of recursive ones, so there is no resemblance in the code.
7453
7454         * Lots of headers: Don't include other headers by default.
7455
7456         * Lots of source files: Explicitly include all needed headers.
7457
7458         * arena.c: (arena_clear) New function.
7459
7460         * crosstabs.q: (ROW_VAR, COL_VAR) New enums.
7461         (static var ar) Removed.
7462         (staitc vars ar_tc, ar_col) New.
7463         (cmd_crosstabs) Destroy the arenas.
7464         (internal_cmd_crosstabs) Create the arenas.
7465         (precalc) Don't need a free function for the hash.
7466         (calc_general) Make sure to zero out the trailer on the key data
7467         before inserting.
7468         (print_table_entries) Updated.
7469         (postcalc) Worked on actually implementing.
7470         (find_pivot_extent) New function.
7471         (compare_value) New function.
7472         (enum_column_values) New function.
7473
7474         * data-in.c: (parse_month) Make local array `static const'.
7475         
7476         * data-out.c: (convert_date) Make local array `static const'.
7477         (convert_WKDAY) Same.
7478         (convert_MONTH) Same.
7479
7480         * frequencies.q: (postprocess_freq_tab) avl_walk_inorder() has
7481         been renamed to avl_walk().
7482         
7483         * hash.c: Rewritten more efficiently.
7484
7485         * hash.h: Add attribute const to hsh_next_prime declaration.
7486
7487         * lexer.c: (id_match) Make arguments const.
7488
7489         * postscript.c: (ps_postopen_driver) Make default fonts the
7490         Helvetica family.
7491
7492         * q2c.c: (main) Generated code needs stdlib.h.
7493
7494         * sfm-write.c: (write_value_labels) An avl_traverser needs to be
7495         initialized to 0 now, not to NULL.  All other references to
7496         avl_traverser were updated in the same way.
7497
7498         * tokens.h: Macro version of id_match updated to use const
7499         properly.
7500
7501         * val-labs.c: (inc_ref_count) New function.
7502         (copy_value_labels) Simply through use of new avl_copy() function.
7503
7504 Wed Apr 15 13:01:58 1998  Ben Pfaff  <blp@gnu.org>
7505
7506         * crosstabs.q: Probably doesn't compile.  New PIVOT subcommand.
7507         (postcalc) Worked on this.
7508
7509         * postscript.c: (OPO_DOUBLE_LINE) New enum.
7510         (struct ps_driver_ext) New line_width_thick member.
7511         (ps_preopen_drive) Init line_width_thick.
7512         (option_tab[]) Add line-* options.
7513         (ps_option) Parse line-* options.
7514         (postopen) Add line_width_thick support.  Strip leading spaces on
7515         prologue output lines.
7516         (ps_open_page) Include line_width_thick in output.
7517         (macro dump_thick_line) New.
7518         (dump_fancy_line) Support thick lines as well as double lines.
7519
7520 Tue Apr 14 00:50:08 1998  Ben Pfaff  <blp@gnu.org>
7521
7522         * Makefile.am: Add crosstabs.c to BUILT_SOURCES.  Add crosstabs.q
7523         to pspp_SOURCES.  Add crosstabs.q to EXTRA_DIST.
7524
7525         * Many source files: Rename `options' to `pv_opts' as appropriate.
7526
7527         * command.c: (static var cmd_table[]) Add CROSSTABS command.
7528
7529         * common.c: (xcalloc) New function.
7530
7531         * crosstabs.q: New file.  Not finished yet, though.
7532                 
7533         * data-list.c: Comment fix.
7534
7535         * error.c: Remove some old Checker cruft.
7536
7537         * frequencies.q: (dump_full) Cumulate valid percent instead of
7538         regular percent.
7539
7540         * getline.c: Comment fix.
7541
7542         * hash.c: Comment fixes.
7543
7544         * hash.h: (struct hsh_table) Make hash functions return unsigned
7545         instead of int to avoid problems with taking the modulo of
7546         negative return values.  All references changed.
7547
7548         * misc.c: (intlog10) Make its table static const instead of auto.
7549
7550         * sfm-read.c: (read_header) Make `prefix' static const instead of
7551         auto.
7552
7553         * var.h: (union value) Add member `hash'.
7554         (struct variable) Rename prv_index as `foo'--all references
7555         changed.  Reorder.
7556         (typedef pv_opts) Removed.  All references changed.
7557
7558         * vars-prs.c: (parse_variables) Message fixes.
7559         
7560 Mon Mar  9 15:35:08 1998  Ben Pfaff  <blp@gnu.org>
7561
7562         * get.c: (cmd_match_files) Don't reverse the order of FILEs as
7563         they are being inserted.  Don't check for BY variables of
7564         different types.  Discard variables if the active file isn't
7565         included in the merge.
7566         (mtf_processing) Essentially rewritten.
7567         (mtf_merge_dictionary) Check for master/slave variables of
7568         different types/widths.
7569
7570         * vfm.c: (static var not_canceled) New var.
7571         (process_active_file) Don't call vfm_source->read() if
7572         there's no vfm-source.  Initialize not_canceled.
7573         (process_active_file_write_case) Honor and update not_canceled.
7574         (prepare_for_writing) Rollback changes from yesterday, they were
7575         wrong.
7576         (close_active_file) Don't destroy vfm_source unless it exists.
7577         
7578 Mon Mar  9 00:56:16 1998  Ben Pfaff  <blp@gnu.org>
7579
7580         * Lots of source files: Added { } around nested if/else constructs
7581         to avoid new gcc 2.8 warnings.
7582
7583         * data-in.c: (parse_Z) Declare `int' type explicitly.
7584         (convert_Z) Ditto.
7585
7586         * get.c: (struct mtf_file) Add prev, next_min, by, input members.
7587         (cmd_match_files) Initialize mtf_by_values.  Manage by, input,
7588         prev members.  Put TABLEs at the end of the chain and FILEs at the
7589         beginning.  Don't allow the active file in STATE_INIT.  Use proper
7590         `seen' value for the active file.  Fill out the by members and
7591         make sure they're of consistent type.  Do the actual merge
7592         operation.
7593         (mtf_processing_finish) New function.
7594         (var_type_description) New function.
7595         (mtf_free_file) New function.
7596         (mtf_free) Rewritten.
7597         (mtf_delete_file_in_place) New function.
7598         (mtf_read_nonactive_records) New function.
7599         (mtf_compare_BY_values) New function.
7600         (static var mtf_seq_no) New var.
7601         (mtf_processing) New function.
7602         (mtf_merge_dictionary) Assign nval members for the system file
7603         dictionary.  Assign fv values for its variables.  Point each slave
7604         variable to the corresponding master variable.
7605
7606         * hash.c: Include str.h.
7607
7608         * mis-val.c: (copy_missing_values) src arg is const.
7609
7610         * misc.c: (spacing) Make `max' var explicitly int.
7611
7612         * sfm-read.c: (dump_dictionary) Message reformatting.
7613         (sfm_read_case) Add assertion.
7614
7615         * sort.c: Esthetic fixes.
7616
7617         * var.h: (struct match_files_proc) New struct.
7618         (struct variable) Add private data match_files_proc.
7619
7620         * vars-atr.c: (delete_variable) Implement.  Add argument for the
7621         dictionary that owning the variable.
7622         (dup_variable) Add assertion.
7623
7624         * vfm.c: Comment fixes, hopefully the comments are correct now.
7625         (process_active_file) New function.
7626         (process_active_file_write_case) New function.
7627         (process_active_file_output_case) New function.
7628         (prepare_for_writing) Use temp_dict->nval for vfm_info, not
7629         default_dict.nval.
7630         (write_case) Renamed procedure_write_case().  Now write_case is a
7631         pointer to a function.  Style fixes.
7632         
7633 1998-03-05  Ben Pfaff  <blp@gnu.org>
7634
7635         * Makefile.am: (q2c) Link with libmisc.
7636         (version.c) Define default_config_path, include_path,
7637         groff_font_path.
7638
7639         * ascii.c: (ascii_postopen_driver) When the default newline string
7640         is requested, open file in text mode.  Suggested by
7641         palme@uni-wuppertal.de (Hubert Palme).
7642         (static vars line_buf, line_p) Change from char * to unsigned char
7643         *.
7644         (ascii_close_page) char * to unsigned char *.
7645
7646         * cmdline.c: (parse_command_line) Implement -r option by
7647         prepending ~/.pspp/rc to the list of files to process.
7648
7649         * command.c: (cmd_remark) Reset getl_prompt to the standard prompt
7650         before pulling in a final line.
7651         (null_func, null_int_func) Removed (dead code).
7652
7653         * descript.q: (display) Calculate width of variable name column
7654         properly.  Calculate number of valid cases properly.  Reported by
7655         palme@uni-wuppertal.de (Hubert Palme).
7656
7657         * filename.c: (init_filename) Use default_config_path instead of
7658         now obsolete CONFIG_PATH.
7659
7660         * getline.c: (getl_initialize) Use include_path instead of now
7661         obsolete INCLUDE_PATH.
7662         (getl_add_file) New argument `where'.  All references changed.
7663
7664         * groff.c: (find_font_file) Use groff_font_path instead of now
7665         obsolete GROFF_FONT_PATH.
7666         
7667         * postscript.c: (find_ps_file) Use groff_font_path instead of now
7668         obsolete GROFF_FONT_PATH.  Copy through temporary variable to
7669         avoid problems with constness.
7670
7671         * str.h: (macro cs_streq) New macro.
7672
7673         * version.h: (glob var default_config_path, include_path,
7674         groff_font_path) New vars.
7675         
7676 1998-02-23  Ben Pfaff  <blp@gnu.org>
7677
7678         * Many source files: Change verbose_msg() priority levels and
7679         messages.
7680
7681         * aggregate.c: Include debug-print.h.
7682
7683         * cmdline.c: (parse_command_line) Add --safer/-s and --command/-c
7684         options.
7685         (static var pre_syntax_message) Document --safer/-s and
7686         --command/-c.
7687
7688         * command.c: (cmd_erase, cmd_host) Disable if set_safer is set.
7689
7690         * dfm.c: (open_inline_file) [__CHECKER__] Zero out ext->file,
7691         because it's not used but it's still copied.
7692         (open_file_r) Remove gratuitous debug message.
7693
7694         * filename.c: (safety_violation) New function.
7695         (open_file) Remove gratuitous debug messages.  Don't allow pipe
7696         files if set_safer is set.
7697
7698         * get.c: Turn off debugging.
7699
7700         * getline.c: (getl_add_virtual_file) New function.
7701         (getl_read_line) Add verbose_msg() call for opening new syntax
7702         file.
7703         (getl_perform_delayed_reset) Add a return value describing whether
7704         any action was taken.  Call reset_eof().
7705
7706         * getline.h: Comment fix.
7707
7708         * groff-font.c: (groff_read_font) Use `goto next_iteration' in
7709         place of incorrect `continue'.  Use strtok_r() instead of
7710         strtok().  Always check strtok_r() return value.
7711         (groff_read_DESC) Use strtok_r() instead of strtok().
7712
7713         * lexer.c: (reset_eof) New function.
7714
7715         * main.c: (parse) Get a token after performing a delayed reset
7716         action; allow empty syntax files.
7717
7718         * postscript.c: (output_encodings) Use strtok_r() instead of
7719         strtok().
7720
7721         * q2c.c: (dump_parser) Use strtok_r() instead of strtok().
7722
7723         * set.q: Comment fixes.
7724         (glob var set_safer) New var.
7725         (internal_cmd_set) Support SAFER.
7726
7727         * str.h: [!HAVE_STRTOK_R] Declare strtok_r() prototype.
7728
7729         * temporary.c: (free_dictionary) Set d->splits to NULL after
7730         freeing.
7731
7732         * vars-atr.c: (clear_variable) Decrement dict->n_splits if
7733         variable deleted, not if it *isn't* deleted.
7734
7735 1998-02-16  Ben Pfaff  <blp@gnu.org>
7736
7737         * command.c: (array cmd_table[]) Add MATCH FILES.
7738
7739         * common.c: Comment fixes.
7740
7741         * data-list.c, dfm.c, error.c, filename.c, list.q, matrix-data.c,
7742         modify-vars.c, postscript.c, sfm-read.c, sfm-write.c, tab.c:
7743         Include alloca.h.  Problem reported by palme@uni-wuppertal.de
7744         (Hubert Palme).
7745
7746         * expr-opt.c: Include str.h.  Problem reported by
7747         palme@uni-wuppertal.de (Hubert Palme).
7748
7749         * get.c: (cmd_get) [DEBUGGING] Update v->p.get to v->get.
7750         (static var mtf_by) Change from char ** to variable **.
7751         (static var mtf_master) New var.
7752         (mtf_merge_dictionary) New function.
7753         (cmd_match_files) Init mtf_master.  Parse mtf_by according to new
7754         var type.  Reorder tests properly.  Initialize file->dict.  Detect
7755         TABLE= without BY=.  Read file dictionaries and merge them.  Give
7756         subcommand name with IN, LAST, FIRST error messages.  Create IN,
7757         LAST, FIRST variables.  Comment fixes.
7758         (mtf_free) Don't free default_dict.  Free mtf_master.
7759
7760         * getline.c: Define getl_mode.  Change getl_buf_size to size_t
7761         from int.
7762         (handle_line_buffer) Cast int to size_t in comparison to avoid
7763         warning.
7764
7765         * getline.h: Declare getl_mode extern.
7766
7767         * groff-font.c: (groff_read_font) Type-fix calls to getline.
7768         (groff_read_DESC) Make line_size a size_t.
7769         (match_tok) Parenthesize name to avoid macro expansion.
7770
7771         * mis-val.c: (copy_missing_values) New function.
7772
7773         * postscript.c: (postopen) Make buf_size a size_t.
7774
7775         * sfm-read.c: (dump_dictionary) Make global from static.  Print
7776         variable info in parts for easier debugging with Checker.
7777
7778         * temporary.c: (copy_variable) Use copy_value_labels().
7779         (new_dictionary) New arg: whether to copy file label, documents.
7780
7781         * val-labs.c: (copy_value_labels) New function.
7782
7783         * var.h: (enums MISSING_*) Add MISSING_COUNT.
7784
7785         * vars-atr.c: [GLOBAL_DEBUGGING] (force_dup_variable) New
7786         function.
7787         (dup_variable) Set prv_index, get.fv, get.nv.
7788
7789 Fri Feb 13 15:38:36 1998  Ben Pfaff  <blp@gnu.org>
7790
7791         * Makefile.am: (pspp_SOURCE) Add htmlP.h.
7792
7793         * Many source files: For ANSI-compliance, add empty statement
7794         after label.  Reported by palme@uni-wuppertal.de (Hubert Palme)
7795         and Micah Altman <maltman@www-vdc.fas.harvard.edu>.
7796
7797         * data-in.c: (parse_numeric) Some header files break on
7798         -DBL_MIN_10_EXP because they get a --; add () for safety.
7799         Reported by palme@uni-wuppertal.de (Hubert Palme).
7800
7801         * dfm.c: Idea by Dr Eberhard W Lisse <el@linux.lisse.na>.
7802         (struct dfm_fhuser_ext) Change `file' from FILE * to file_ext.
7803         (dfm_close) Use close_file_ext.
7804         (open_inline_file) Set file.file to NULL, not file.
7805         (open_file_r, open_file_w) Initialize file.file; fill in file_ext
7806         struct and use open_file_ext().
7807         (read_record) Use file.file.
7808
7809         * file-handle.q: (prepend_current_directory) Pass through special
7810         filenames.
7811
7812         * filename.c: Only include unistd.h if HAVE_UNISTD_H.
7813         (normalize_filename) Pass through special filenames.
7814         (open_file, close_file) Accept pipe| and |pipe syntaxes as
7815         equivalent.
7816         (dirname) Rename blp_dirname() because of name conflict on some
7817         OS.  All references changed.  Reported by palme@uni-wuppertal.de
7818         (Hubert Palme).
7819         (is_special_filename) New function.
7820
7821         * get.c: (GTSV_OPT*) Add GTSV_OPT_MATCH_FILES.
7822         (trim_dictionary) Conditionalize some of the options on whether
7823         GTSV_OPT_MATCH_FILES is in *options.
7824         (rename_variables) Don't allow variables to be renamed as scratch
7825         variables.
7826         (MTF_*) New enum series.
7827         (struct mtf_file) New struct.
7828         (static vars mtf_head, mtf_tail, mtf_by, mtf_n_by, mtf_free) New
7829         vars.
7830         (cmd_match_files, mtf_free) New functions.
7831
7832         * lexer.c: (match_int) Needed parentheses around name to escape
7833         macro expansion.  Reported by Micah Altman
7834         <maltman@www-vdc.fas.harvard.edu>.
7835
7836         * print.c: Needed to include alloca.h.  Reported by Micah Altman
7837         <maltman@www-vdc.fas.harvard.edu>.
7838
7839         * recode.c: (convert_to_double) Parenthesize -DBL_MIN_10_EXP to
7840         -(DBL_MIN_10_EXP).  Reported by palme@uni-wuppertal.de (Hubert
7841         Palme).
7842         
7843         * str.h: Include stdarg.h.  Reported by palme@uni-wuppertal.de
7844         (Hubert Palme) and Micah Altman <maltman@www-vdc.fas.harvard.edu>.
7845
7846 Thu Feb  5 00:18:21 1998  Ben Pfaff  <blp@gnu.org>
7847
7848         * html.c: (struct html_driver_ext) Move into htmlP.h.
7849         (html_preopen_driver) Initialize cp_x, cp_y.
7850         (html_submit) Implement as call to output_tab_table().
7851         (change_attributes) New function.
7852         (escape_string) New function.
7853         (output_tab_table) New function.
7854
7855         * list.q: (write_all_headers) Add code for writing headers for the
7856         html driver.
7857         (clean_up) Write out the html close-table tag.
7858         (determine_layout) Ignore html driver.
7859         (list_cases) Write html data.
7860
7861         * som.c: (som_submit) Move more of the code into output_table().
7862
7863         * tab.c: (static var hit) Make a global var and rename tab_hit.
7864         (static var tab_table_class) Make a global var.
7865
7866         * htmlP.h: New file.
7867
7868 Tue Feb  3 16:12:18 1998  Ben Pfaff  <blp@gnu.org>
7869
7870         * dump-sysfile.c: Removed.
7871
7872         * html.c: (preclose) Change comment in emitted code.
7873
7874         * matrix-data.c: Debugging off by default.  Comment fixes.
7875         (static var container) New var.
7876         (cmd_matrix_data) Create and destroy container.  Initialize
7877         is_per_factor[] to 0s.  Move code into new function
7878         string_to_content_type().  Require split values to be present in
7879         the data when ROWTYPE_ is explicit.  Call specific function, not
7880         general read_matrices().
7881         (string_to_content_type) New function.
7882         (context) Exclude all whitespace, not just spaces.
7883         (mget_token) A dot is a number.  Add assertion.
7884         (static var data) Renamed nr_data.
7885         (static var factor_values) Renamed nr_factor_values.
7886         (read_matrices) Renamed read_matrices_without_rowtype().  Handle
7887         only specific case.  Close data_file before exit.
7888         (fill_matrix) New function.
7889         (read_data_lines) Renamed nr_read_data_lines().  Remove debug
7890         printing.  Style fixes.  Message fixes.  Move code into
7891         fill_matrix().
7892         (read_matrices_without_rowtype) Rename
7893         matrix_data_read_without_rowtype().  Fix off-by-one error on
7894         loops.  Allocate nr_data[] memory from arena.
7895         (read_matrices_with_rowtype) Removed.
7896         (read_splits) Renamed nr_read_splits().  Style fixes.
7897         (read_factors) Renamed nr_read_factors().
7898         (dump_cell_content) Comment fixes.  Arguments changed.  Change
7899         debug printing.  All references changed.
7900         (output_data) Renamed nr_output_data().
7901         (static var wr_content) New var.
7902         (struct factor_data) New struct.
7903         (static var wr_data) New var.
7904         (static var wr_current) New var.
7905         (matrix_data_source_destroy_source) Removed.
7906         (read_matrices_with_rowtype) New function.
7907         (matrix_data_read_with_rowtype) New function.
7908         (wr_read_splits) New function.
7909         (compare_factors) New function.
7910         (wr_output_data) New function.
7911         (wr_read_rowtype) New function.
7912         (wr_read_factors) New function.
7913         (wr_read_indeps) New function.
7914         (glob var matrix_data_source) Make destroy_source member NULL as
7915         well.
7916
7917 Fri Jan 23 00:09:08 1998  Ben Pfaff  <blp@gnu.org>
7918
7919         * lexer.c: (syntax_error) Give better error message when at end of
7920         file.
7921
7922         * matrix-data.c: (var content_names[]) Fix PROX spelling.  Change
7923         N_SCALAR to output as plain N.
7924         (mdump_token) Change output format.
7925         (context) Fix message output interaction with spaces in input.
7926         (another_token) New function.
7927         (force_eol) Improved error message.
7928         (static var max_cell_index) New var.
7929         (read_matrices) Init `cells'.  factor_values is now per-cell.
7930         Init max_cell_index.
7931         (read_data_lines) Replace `compare' local with new `compare' arg.
7932         Debugging messages changed.  Only read factors if per_factor.
7933         Propagate error return from read_factors(), force_eol().
7934         Copy N_SCALAR values across the N vector.
7935         (read_matrices_without_rowtype) Don't init `cells'.  Don't need to
7936         check parentheses manually since we now have is_per_factor[].
7937         Call read_data_lines() with new args.  Check for end of data after
7938         looping, using another_token().
7939         (read_factors) Arguments changed.  Use max_cell_index to determine
7940         whether to read or compare factors.  Message fixes.
7941         (dump_cell_content) New function.
7942         (output_data) Completely rewritten because content types were
7943         supported to be nested inside factor values, not vice versa.
7944         
7945 Thu Jan 22 00:26:38 1998  Ben Pfaff  <blp@gnu.org>
7946
7947         * lexer.c: (syntax_error) Support formatted varargs messages.
7948
7949         * matrix-data.c: Turn debugging on by default.
7950         (static content_type[]) New array.
7951         (static content_names[]) New array.
7952         (static rowtype_, varname_) New vars.
7953         (static is_per_factor[]) New array.
7954         (static split_values) Moved declaration.
7955         (static n_continuous, first_continuous) New var.
7956         (cmd_matrix_data) Don't init split_values.  Assign ROWTYPE_ to
7957         rowtype_.  Simplify SPLIT code.  Init is_per_factor[].  Assign
7958         VARNAME_ to varname_.  Initialize first_continuous, n_continuous.
7959         Check for continuous variables.
7960         [DEBUGGING] (debug_print) Remove content_names[].
7961         (mdump_token) New macro.
7962         (mget_token_dump) New function.
7963         (mdump_token) New function.
7964         (context) New function.
7965         (mget_token) Fix messages.
7966         (static var data, split_values, factor_values) New vars.
7967         (read_matrices) Manage split_values, factor_values.
7968         (read_data_lines) New function.
7969         (read_matrices_without_rowtype) Implemented.
7970         (read_splits) Message fixes.  Uses `just_read'.
7971         (read_factors) New function.
7972         (output_data) New function.
7973         (matrix_data_source_destroy_source) Close the file handle.
7974         (glob var matrix_source) Change name from "DATA LIST" to "MATRIX
7975         DATA".
7976
7977         * str.c: (strpadcmp) Removed.
7978
7979         * vfm.c: (dump_splits) Initialize i; fix test for end of splits.
7980
7981 Sun Jan 18 00:30:59 1998  Ben Pfaff  <blp@gnu.org>
7982
7983         * Lots of source files: Add cast to unsigned character to calls to
7984         tolower() and toupper().
7985
7986         * aggregate.c: Set default_dict.splits to NULL.
7987
7988         * command.c: (static variable tab[]) Add MATRIX DATA.
7989
7990         * data-in.c: Add debugging defines.  Formatting fixes.
7991
7992         * expr-opt.c: Formatting fixes.
7993
7994         * lexer.c: (syntax_error) Message fixes.
7995
7996         * matrix-data.c: New enum series.
7997         (static vars fmt, section, diag, explicit_rowtype, signle_split,
7998         split_values, n_factors, factors, cells, pop_n, contents,
7999         n_contents) New vars.
8000         (cmd_matrix_data) Finished implementation.
8001         (compare_variables_by_mxd_vartype) New function.
8002         [DEBUGGING] (debug_print) New function.
8003         (static vars mtoken, mtokstr, mtoklen, mtokval) New vars.
8004         (read_matrices) New function.
8005         (read_matrices_without_rowtype) New function.
8006         (read_matrices_with_rowtype) New function.
8007         (read_splits) New function.
8008         (mget_token) New function.
8009         (force_eol) New function.
8010         [0] (test_tokenizer) New function.
8011         (matrix_data_source_destroy_source) New function.
8012         (glob var matrix_data_source) New var.
8013
8014         * misc.h: Include ieeefp.h if present.
8015
8016         * split-file.h: (cmd_split_file) Changes corresponding to struct
8017         dictionary changes.
8018
8019         * str.h: Fix memmem prototype.
8020
8021         * temporary.c: (save_dictionary, restore_dictionary,
8022         free_dictionary) Changes corresponding to struct dictionary
8023         changes.
8024
8025         * var.h: (MXD_* enums) New enum series.
8026         (struct matrix_data_proc) New struct.
8027         (struct split) Removed.
8028         (struct dictionary) Changed `splits' member from `split *' to
8029         `variable **'.
8030         (macro force_create_variable) New macro.  Replaced lots of
8031         create_variable()/assert() calls with calls to this macro.
8032
8033         * vars-atr.c: (discard_variables) Changed assertion.
8034         [GLOBAL_DEBUGGING] (force_create_variable) New function
8035         called by the macro of the same name.
8036         (clear_variable) Changes to delete splits from the dictionary
8037         corresponding to struct dictionary changes.
8038
8039         * vars-prs.c: (parse_variables) [GLOBAL_DEBUGGING] Check for
8040         corrupted variable `index' values in the dictionary passed in
8041         every time this function is called.
8042
8043         * vfm.c: (dump_splits, SPLIT_FILE_procfunc) Changes corresponding
8044         to struct dictionary changes.
8045
8046 Tue Jan 13 23:45:02 1998  Ben Pfaff  <blp@gnu.org>
8047
8048         * Makefile.am: (pspp_SOURCES) Add matrix-data.c.
8049
8050         * command.c: New includes.
8051         (static array cmd_table[]) Add ERASE, HOST, NEW FILE.
8052         (cmd_erase) New function.
8053         [unix] (shell) New function.
8054         (run_command) New function.
8055         (cmd_host) New function.
8056         (cmd_new_file) New function.
8057
8058         * expr-prs.c: (parse_primary) Message fix.
8059
8060         * inpt-pgm.c: Formatting fix.
8061         (cmd_reread) Implement the FILE subcommand.
8062
8063         * matrix-data.c: New file.
8064
8065         * q2c.c: (dump_header) Change output commenting style.
8066
8067         * weight.c: Comment fix.
8068
8069 Tue Jan 13 00:53:39 1998  Ben Pfaff  <blp@gnu.org>
8070
8071         * aggregate.c: (buf64_10x) Renamed buf64_1xx, all references
8072         changed.
8073         (buf_10x) Renamed buf_1xx, all references changed.
8074         (cmd_aggregate) Implemented cases 010, 011, 110, and 111 (all
8075         cases now implemented).
8076         (create_sysfile) New function.
8077         (agr_11x_func) New function.
8078
8079         * data-in.c: (parse_numeric) Work properly if there's an
8080         explicitly coded decimal point in the data and decimal places are
8081         specified on DATA LIST.  Bug reported by Dr Eberhard W Lisse
8082         <el@linux.lisse.na>.
8083
8084         * get.c: (cmd_get, cmd_save_internal) Allow extraneous slash
8085         before file specification on GET, SAVE, XSAVE.  Bug reported by Dr
8086         Eberhard W Lisse <el@linux.lisse.na>.
8087
8088         * q2c.c: [!HAVE_STRERROR] Include misc/strerror.c, not
8089         strerror.c.  Bug reported by Alexandre Oliva
8090         <oliva@dcc.unicamp.br>.
8091
8092         * sort.c: Include sort.h.  Comment fixes.  A few esthetic fixes.
8093         (static var separate_case_tab) New var.
8094         (cmd_sort_cases) Cancel temporary transformations here.  Free
8095         v_sort before return.
8096         (sort_cases) Run an EXECUTE procedure if SEPARATE is nonzero and
8097         we're reading from a sort stream.  Don't cancel temporary
8098         transformations.  Offload internal sorting to do_internal_sort().
8099         (do_internal_sort) New function.  Handles internal sorting even
8100         when SEPARATE is nonzero.  Doesn't free v_sort.
8101         (do_external_sort) Take new arg SEPARATE.  Only destroy `x' if
8102         it's non-NULL.
8103         (write_initial_runs) Take new arg SEPARATE.  Only destroy the old
8104         sink if SEPARATE is zero.
8105         (read_output_cases) Renamed read_sort_output(), all references
8106         changed.  Now uses separate_case_tab when it exists.
8107         (write_separate) New function.
8108
8109         * vfm.c: (page_to_disk) Destroy memory_source_cases, not
8110         memory_sink_cases.  Don't redundantly call
8111         vfm_source->destroy_source().
8112         (memory_stream_mode) After switching over, set memory_sink_cases
8113         to NULL.
8114
8115 Sat Jan 10 23:35:51 1998  Ben Pfaff  <blp@gnu.org>
8116
8117         * aggregate.c: (struct agr_var) Expand dbl[] array from 2 to 3
8118         elements.
8119         (static var prev_case) New, moved out of aggregate_single_case()
8120         local scope.
8121         (static var buf64_10x, buf_10x) New.
8122         (cmd_aggregate) Initialize prev_case.  Comment fixes.  Implement
8123         the 000, 001, 100, and 101 cases.  Free prev_case.
8124         (parse_aggregate_functions) Disallow scratch variables.
8125         (free_aggregate_functions) Only free agr_dict if non-null.  Use
8126         iter->function to determine numeric/string type, not
8127         iter->src->type.
8128         (aggregate_single_case) Don't manage prev_case.  Initialize
8129         aggregate info after dumping it.
8130         (accumulate_aggregate_info) Fix sum, weighted sum, mean, weighted
8131         mean, stddev, weighted stddev definitions.
8132         (dump_aggregate_info) Implemented.
8133         (initialize_aggregate_info) Renamed from
8134         initialize_aggregate_functions().  Initializes dbl[2].
8135         (agr_00x_trns_proc, agr_00x_end_func, write_case_to_sfm,
8136         agr_10x_trns_proc, agr_10x_trns_free, agr_10x_end_func) New.
8137
8138         * cases.c: (alloc_val) Removed.
8139
8140         * get.c: (cmd_save_internal) Initialize new `dict' member.
8141
8142         * sfm-write.c: (sfm_write_dictionary, write_header,
8143         write_variable, write_value_labels, write_documents) Reorganize,
8144         simplify for new parameter structure.
8145         (write_variable) Only one variable * argument now.
8146
8147         * sfm.h: (struct sfm_write_info) Removed `pri', `sec', and
8148         replaced by new `dict' member.
8149
8150         * temporary.c: (new_dictionary) Initialize n_documents.
8151
8152         * vars-atr.c: (dup_variable) Allocate `value's from dict into
8153         v->fv manually.
8154         (init_variable, replace_variable) Eliminate usage of alloc_val().
8155
8156         * vars-prs.c: (parse_DATA_LIST_vars) Accept PV_NO_SCRATCH option.
8157
8158         * vfm.c: (arrange_compaction) Allow `temporary' value of 2 to
8159         signal that AGGREGATE is to be used for forming final cases.
8160         (close_active_file) Call end_func before stopping lagging.  Cancel
8161         temporary after finishing compaction.
8162         (write_case) Comment fixes.  Cleaned up.
8163         (compact_case) Let AGGREGATE handle compaction when `temporary' is
8164         2.
8165
8166 Sat Jan 10 02:10:47 1998  Ben Pfaff  <blp@gnu.org>
8167
8168         * Makefile.am: (BUILT_SOURCES) Add means.c.
8169         (pspp_SOURCES) Add means.c.
8170         (EXTRA_DIST) Add means.q.
8171
8172         * command.c: (array cmd_table[]) Add MEANS.
8173
8174         * common.h: Esthetic fixes.  Comment fixes.  Test for
8175         MAX_SHORT_STRING greater than 8.
8176         (macros LOWEST, HIGHEST) New.
8177
8178         * data-in.c, data-list.c, recode.c: Comment fixes.
8179
8180         * means.q: New file, base version.
8181
8182         * mis-val.c: (parse_num_or_range, parse_numeric) Replace -DBL_MAX
8183         with LOWEST, DBL_MAX with HIGHEST.
8184
8185         * q2c.c: (dump_vars) Add an enum to array types giving the number
8186         of values for the enum.
8187
8188         * sfm-read.c: (sfm_read_dictionary, read_machine_flt64_info)
8189         Replace second_lowest_value with second_lowest_flt64.
8190
8191         * sfm-write.c: (write_variable, write_rec_7_34) Replace
8192         second_lowest_value with second_lowest_flt64.
8193
8194         * t-test.q: Comment fix.
8195
8196         * temporary.c: (restore_dictionary) Esthetic fix.
8197
8198         * tokens.h: (force_match_id, force_match, force_string, force_int,
8199         force_num, force_id) Replace msg() with syntax_error().
8200
8201         * var.h: (struct means_proc) New.
8202         (struct variable) Add mns member to `p' union.
8203
8204         * vars-prs.c: (parse_variable, parse_dict_variable,
8205         parse_variables, parse_DATA_LIST_vars) Replace msg() with
8206         syntax_error().
8207
8208 Thu Jan  8 22:28:41 1998  Ben Pfaff  <blp@gnu.org>
8209
8210         * Makefile.am: (pspp_SOURCES) Add tab.h.
8211
8212         * Most source files: Added a cast to unsigned char in usages of
8213         the ctype is*() functions.  Replaced `end of command expected'
8214         calls to msg() with calls to syntax_error().
8215
8216         * frequencies.q: (dump_condensed) Fix tab_dim() column reference.
8217
8218         * lexer.c: (hex_val) Removed (was dead code).
8219         (idmatch) Parenthesize function name to avoid macro expansion.
8220
8221         * postscript.c: Comment fixes.
8222         (ps_preopen_driver) Change default font size to 10pt.
8223
8224         * sfm-read.c: (read_variables) Byteswap sv.print, sv.write as
8225         int32s.
8226         (parse_format_spec) Change system-file format spec argument type
8227         to int32.  Parse the format spec with bitwise operators.
8228
8229         * sfmP.h: (struct sysfile_format) Removed.
8230         (struct sysfile_variable) Changed print, write members from
8231         sysfile_format to int32.
8232
8233         * tokens.h: Esthetic fixes.
8234         [__GNUC__] (macro id_match) New macro to hopefully speed up
8235         identifier matching.
8236         (macros match_id, match_tok, match_int) Implemented in
8237         compiler-independent manner; no longer GNU C only.
8238
8239         * vfm.h: Include time.h.
8240
8241 Mon Jan  5 11:06:15 1998  Ben Pfaff  <blp@gnu.org>
8242
8243         * data-list.c: (dump_fixed_table) Change tab_dim().
8244
8245         * dump-sysfile.c: (open_sysfile) Fix mmap() call.
8246
8247         * error.c: Include command.h.
8248
8249         * frequencies.g: Formatting fixes.
8250
8251         * frequencies.q: Add tab_dim() calls.  Make the total cell a
8252         joined cell.
8253
8254         * glob.c: Include command.h.
8255
8256         * sfm-read.c: (struct sfm_fhuser_ext) New members sysmis, highest,
8257         lowest.
8258         (sfm_read_dictionary) Initialize sysmis, highest, lowest.
8259         (sfm_read_machine_flt64_info) Update sysmis, highest, lowest.
8260         (read_variables) Byteswap sv.type; byteswap sv.print, sv.write as
8261         the other elements (is this right?).
8262         (read_variables) Use lowest, highest members.
8263         (parse_format_spec) New arg `vv' for more stringent checking.
8264         (dump_dictionary) Byteswaps nonexplicit data.
8265         (sfm_read_case) Byteswap numeric data.
8266
8267         * som.c: Initialize table_num to 1.
8268         (render_segments) Remember to increment y_index after each table
8269         segment.
8270
8271         * sysfile-info.c: (cmd_sysfile_info) Change tab_dim().  Don't call
8272         avl_count() on a NULL tree.  No title for the second table.
8273         (cmd_display) Handle DISPLAY VECTORS by calling display_vectors().
8274         Handle AS_SCRATCH as AS_NAMES.  Warn if no variables.  Re-enable;
8275         fix call to display_variables().
8276         (display_variables) Default to 4 columns, not 3.  Set up headers.
8277         Column title is Variable, not Name.  Fix index column.
8278         Add joint text.  Add tab_dim().  Handle value labels properly.
8279         Handle DISPLAY LABELS properly.  Draw boxes correctly.
8280         (describe_variable) Value labels don't need titles.  Don't clear
8281         nonexistent index column.
8282         (compare_vectors_by_name) New function.
8283         (display_vectors) New function.
8284
8285         * tab.c: (tab_height) Add assertion.
8286         (tab_null) Add debug code.
8287         (evaluate_dimensions) Add debug code.
8288
8289         * var.h: (struct variable) get_proc data is sometimes used
8290         simultaneously with other per-procedure info, therefore it was
8291         removed from the union.  All references changed.        
8292
8293 Sun Jan  4 18:13:33 1998  Ben Pfaff  <blp@gnu.org>
8294
8295         * ascii.c: (ascii_close_page) Put title on second line of headers
8296         if there is no subtitle.
8297
8298         * command.c: (glob var cur_proc) Move definition here, from
8299         common.c.
8300         (cmd_remark) Emit blank line before remarks.
8301
8302         * command.h: (glob var cur_proc) Move declaration here, from
8303         common.h.
8304
8305         * data-list.c: (dump_fixed_table) Fix messages.
8306         (dump_free_table) Call tab_nat_dim().
8307
8308         * descript.q: (dump_z_table) Modify tab_dim() call.
8309
8310         * frequencies.q: (dump_condensed, dump_statistics) Add tab_dim()
8311         call.
8312         (dump_statistics) Don't output header.
8313
8314         * groff-font.c: Minor format fix.
8315
8316         * html.c: Comment fix.
8317
8318         * list.q: (write_varname) Indent after advancing page.
8319
8320         * output.h: Minor reordering.
8321
8322         * postscript.c: Comment fixes.  Many places, '\n' was replaced by
8323         a reference to eol[].
8324         (struct ps_driver_ext) New member eol[].
8325         (ps_preopen_driver) Initialize eol[].
8326         (ps_postopen_driver) Fix sense of text for text_opt, line_opt
8327         defaults.  Handle headers.  Fix test for minimum page length.
8328         (static var option_tab[]) Add `line-ends'.
8329         (ps_option) Handle line-ends to change eol[].
8330         (postopen) Scale prop_em_width and fixed_width properly.  Set the
8331         prologue title to outp_title if applicable.  Replace the prologue
8332         line ends with eol[].  Call draw_headers() if headers are enabled.
8333         (text_width) New function.
8334         (out_text_plain) New function.
8335         (draw_headers) New function.
8336
8337         * print.c: (dump_table) Call tab_nat_dim().
8338
8339         * som.c: (som_blank_line) Only advance a line if not at the top of
8340         a page.
8341         (som_submit) Move several informational table calls here.
8342         Increment subtable_num if SOMF_NO_TITLE not set.
8343         (output_table) Advance a line if SOMF_NO_SPACING not set.
8344         (render_columns, render_segments, render_simple) Handle spacing
8345         between tables.  Handle table titles.  Remove debug output.
8346
8347         * som.h: (SOMF_*) New enum series.
8348         (struct som_table_class) New member `flags'.
8349
8350         * sysfile-info.c: (cmd_sysfile_info) Calls tab_nat_dim().  No
8351         headers or spacing.
8352         (display_variables) Calls tab_nat_dim().
8353         (describe_variable) Remove restriction on number of value labels.
8354         Make value labels separated by thin lines.
8355
8356         * tab.c: (tab_create) Default `flags' to none.
8357         (tab_float) New arg `w'.  All references changed.
8358         (tab_nat_dim) New function.
8359         (tab_output_text) No title or spacing.
8360         (tab_flags) New function.
8361         (tabi_flags) New function.
8362         (tabi_title) New function.
8363         (strip_height) Removed.
8364         (tabi_render) Skip title when necessary.
8365         (static var tab_tab_class) Add tabi_flags, tabi_title.
8366         (evaluate_dimensions) Disable display of column, row size.
8367         (sum_columns) Add title height to top header.
8368         (render_strip) Moved within file.
8369
8370         * tab.h: (struct tab_table) New member `flags'.
8371
8372         * vfm.c: (dump_splits) Calls tab_nat_dim().  No title.
8373
8374 Sat Jan  3 16:55:44 1998  Ben Pfaff  <blp@gnu.org>
8375
8376         * Most source files: Add `const' attribute in all appropriate
8377         places.
8378         
8379         * sysfile-info.c: (cmd_sysfile_info) Add tab_dim() call, add a
8380         column to the variables table for use by describe_variable().
8381         (cmd_display) Disable for the present.
8382         (display_documents) Don't wrap documents.
8383         (display_variables) Table has four columns now.
8384         (describe_variable) Table has four columns now.  Don't use a
8385         subtable, use joined cells instead.
8386
8387         * tab.c: (tab_create) Don't set `join'.
8388         (tab_realloc) ct array is not made up of a_string's.
8389         Reallocate trh, hrh, h arrays, initialize trh array.  Initialize
8390         cell contents on GLOBAL_DEBUGGING, not DEBUGGING.
8391         (text_format) New function.
8392         (tab_title) Rewritten, uses text_format().
8393         (tab_text) Rewritten, uses text_format().
8394         (tab_joint_text) New function.
8395         (tab_join) Removed.
8396         (static var hit) New variable.
8397         (render_strip) New args r1, r2.  Implement joined cells that fit
8398         on a single page.
8399         (tabi_render) Increment hit.  Pass new args to render_strip().
8400         (evaluate_dimensions) [GLOBAL_DEBUGGING] Check for uninitialized
8401         cells.  For t_naw and t_nah, ignore joined cells and null cells in
8402         calculations.
8403         
8404         * tab.h: (struct tab_join_rect) Removed.
8405         (struct tab_table) Removed `join'.
8406         (TAB_JOIN_MAIN) Removed.
8407         (struct tab_joined_cell) New struct.
8408         (TAT_NOWRAP) New enum.
8409
8410 Fri Jan  2 01:39:58 1998  Ben Pfaff  <blp@gnu.org>
8411
8412         * ascii.c: (ascii_postopen) Replace ASCII_* macros with their
8413         expansions.
8414         (ascii_postopen_driver) Fix initialization of *_spacing so that
8415         the TAL_0 bit doesn't count.
8416
8417         * data-list.c: (dump_fixed_table) Use natural width for Format
8418         column.
8419
8420         * glob.c: (rerange) Removed.
8421         (get_date) Formatting fixes.  Internationalization fix.
8422
8423         * html.c: (html_postopen_driver) Replace HTML_DEFAULT_OUTPUT_FILE
8424         with "pspp.html".
8425
8426         * postscript.c: (ps_postopen_driver) Replace
8427         PS_DEFAULT_OUTPUT_FILE with "pspp.ps".
8428
8429         * som.c: (som_submit) Don't eject page before every table.
8430         (output_table) Fix order of arguments on call to area().
8431         (render_columns) Fix calculation of max_len.
8432         
8433         * tab.c: (tabi_cumulate) Minor change to increase elegance.
8434         (render_strip) New function.
8435         (strip_height) New function.
8436         (tabi_render) Rewrite as calls to render_strip().
8437
8438         * tab.h: (TAT_* enums) Removed TAT_RICH, all references removed.
8439         Renumbered TAT_PRINTF, TAT_TITLE, TAT_FIX to correspond better
8440         with the TAB_* and OUTP_T_* constants.
8441         
8442 Thu Jan  1 11:53:52 1998  Ben Pfaff  <blp@gnu.org>
8443
8444         * Makefile.am: Formatting fixes.
8445
8446         * ascii.c: (ascii_postopen_driver) Initialize *_line_spacing[],
8447         *_line_width[].
8448
8449         * data-list.c: (dump_fixed_table) Add tab_dim() call.
8450
8451         * descript.q: (dump_z_table, display) Add tab_dim() calls.
8452
8453         * dump-sysfile.c: (glob var length) Make type off_t.
8454         (usage) Fix arguments.
8455         (main) Return 0.
8456
8457         * output.h: (OUTP_T_*) Change constants' value to match tab.h.
8458         Now right-justification is the default so many references had to
8459         change.
8460         (struct outp_class) Removed line_width, all references changed.
8461         (OUTP_DEV_*) Add OUTP_DEV_DISABLED.
8462         (struct outp_driver) Add elements horiz_line_width,
8463         vert_line_width, horiz_line_spacing, vert_line_spacing.  Remove
8464         som element.
8465
8466         * postscript.c: (outp_encodings) Formatting fixes.  Fix garbage
8467         collection.
8468         (postopen) Initialize all the informational members of
8469         outp_driver.
8470
8471         * som.c: (som_blank_line) New function, renamed from blank_line(),
8472         all references changed.
8473         (som_submit) Disables drivers whose pages can't be opened.
8474         (render_columns, render_simple, render_segments) Add debug output.
8475         (render_columns) Fix loop range.
8476         (render_simple) Don't try to render the headers, they're taken
8477         care of automatically.  Advance cp_y past the table when done.
8478         (render_segments) Fix loop ranges.
8479
8480         * tab.c: Initialize new members of tab_table.
8481         (tab_vline) Handle trv[]; don't set style for spacing-only lines.
8482         (tab_hline) Handle trh[]; don't set style for spacing-only lines.
8483         (tab_box) Handle trh[], trv[]; don't set style for spacing-only
8484         lines.
8485         (set_expr) Removed.
8486         (tab_dim) New function.
8487         (tab_col_width) Removed.
8488         (tab_row_height) Removed.
8489         (tab_output_text) Call tab_dim().
8490         (tabi_driver) Call evaluate_dimensions(), sum_columns().
8491         (tabi_area) Implemented.
8492         (tabi_cumulate) Implemented.
8493         (tabi_render) Partially implemented, but broken.
8494         (var tab_table_class) Made static.
8495         (evaluate_dimensions) New function.
8496         (sum_columns) New function.
8497
8498         * tab.h: (enum t_*) Now start at t_end.  New: t_ptw, t_nr, t_nc,
8499         t_nah, t_naw, t_neg, t_xch, t_dup, t_lbl, t_jnz, t_sac, t_sar,
8500         t_scr, t_srr, t_sentinel.  Removed: t_nat.
8501         (struct tab_table) New: wl, wr, ht, hb, trh, hrh, trv, wrv, dim,
8502         max_stack_height, w, h.  Removed: ce, re.
8503         (macro blank_line) Removed.
8504         (glob var zero_length) Removed.
8505
8506 Fri Dec 26 15:44:31 1997  Ben Pfaff  <blp@gnu.org>
8507
8508         * Most source files: include some of the new include files broken
8509         out of var.h.
8510         
8511         * Makefile.am: (pspp_SOURCES) Add all the new source files to the
8512         list.
8513
8514         * aggregate.c: (glob var outfile) Make static.
8515
8516         * command.c: (glob var pgm_state) Move here.
8517
8518         * common.c: (glob vars endian, second_lowest_value, pgmname,
8519         finished, curdate, cur_proc, start_interactive, history_file) Move
8520         here.
8521
8522         * descript.q: (structs dsc_z_score, descriptives_trns) Move here.
8523
8524         * file-handle.q: (glob vars files, inline_file) Move here.
8525
8526         * glob.c: Lost lots of glob vars, detailed in individual file
8527         entries.
8528         (init_glob) set_printer, set_screen were obsolete, deleted.
8529         set_cprompt has fewer spaces because pspp has fewer letters than
8530         fiasco.
8531
8532         * inpt-pgm.c: (glob vars inp_init, inp_init_size) Move here.
8533         (inp_nval) Made static.
8534
8535         * lexer.c: (glob vars token, tokval, tokstr, tokstr_size,
8536         tokstr_len, toklongstr, tokint) Move here.
8537
8538         * misc.c: Lost several vars and functions.
8539
8540         * set.q: (all the set_* variables) Move here.
8541
8542         * str.c: (strmaxcpy, strbarepadcpy, strbarepadlencpy, strpadcpy,
8543         blpstrset, strpadcmp, memrev, memrmem, cmp_str) Move here from
8544         misc.c.
8545
8546         * tab.c: (set_expr, tab_col_width, tab_row_height) New functions.
8547
8548         * tab.h: (enum series t_*) New enums.
8549         (struct tab_table) Use arena struct tag.  New members ce, re.
8550
8551         * tokens.h: Comment fixes.
8552
8553         * var.h: Move lots of enums and variables and functions and
8554         structures to other files.  Use and declare a lot more union and
8555         struct tags.  Comment fixes.  
8556
8557         * vector.c: (glob vars vec, nvec) Move here.
8558
8559         * vfm.c: (glob vars reinit_sysmis, reinit_blanks, init_zero,
8560         init_blanks, last_vfm_invocation) Move here.
8561
8562         * cases.h: New file.
8563         (struct long_vec) Move here.
8564         (vec_init, vec_clear, vec_insert, vec_delete, devector, envector)
8565         Move here.
8566
8567         * command.h: New file.
8568         (STATE_* enums) Move here.
8569         (glob var pgm_state) Move here.
8570
8571         * format.c: New file.
8572         (glob var formats) Move here.
8573         (parse_format_specifier_name, fmt_to_string,
8574         check_input_specifier, check_output_specifier,
8575         check_string_specifier, convert_fmt_ItoO, parse_format_specifier)
8576         Move here.
8577
8578         * format.h: New file.  Move functions now in format.c here.
8579         (FMT_* enums) Move here.
8580         (struct fmt_desc) Move here.
8581         (FCAT_* enums) Move here.
8582         (struct fmt_spec) Move here.
8583         (glob vars formats, fmt_parse_ignore_error) Move here.
8584
8585         * inpt-pgm.h: New file.
8586         (INP_* enums) Move here, make #defines into enums.
8587         (glob vars inp_init, inp_init_size) Move here.
8588
8589         * sort.h: New file.
8590         (glob vars v_sort, nv_sort) Move here.
8591         (sort_cases, read_sort_output) Move here.
8592
8593         * vector.h: New file.
8594         (struct vector) Move here, add struct tag.
8595         (glob vars vec, nvec) Move here.
8596         (find_vector) Move here.
8597
8598         * New file.
8599         (glob vars last_vfm_invocation, temp_case, reinit_sysmis,
8600         reinit_blanks, init_zero, init_blanks) Move here.
8601         (struct case_stream) Move here.
8602         (glob vars vfm_source, vfm_sink, vfm_memory_stream,
8603         vfm_disk_stream, sort_stream, data_list_source,
8604         input_program_source, file_type_source, get_source, n_lag) Move
8605         here.
8606         (procedure, write_case, lagged_case, compact_case, page_to_disk)
8607         Move here.
8608                 
8609 Wed Dec 24 22:40:42 1997  Ben Pfaff  <blp@gnu.org>
8610
8611         * Makefile.am: (pspp_SOURCES) Added html.c, som.c, som.h.
8612         (LDADD) Add libdcdflib.
8613
8614         * ascii.c: Comment and formatting fixes.  Almost every external
8615         function had an assert added, checking driver_open and page_open.
8616         (ascii_init_driver) Broken into ascii_preopen_driver,
8617         ascii_postopen_driver, ascii_close_driver.  Manages driver_open.
8618         (ascii_open_page) Sets page_open.
8619         (ascii_close_page) Clears page_open.
8620
8621         * html.c: Comment and formatting fixes.  Almost every external
8622         function had an assert added, checking driver_open and page_open.
8623         (html_init_driver) Broken into html_preopen_driver,
8624         html_postopen_driver, html_close_driver.  Manages driver_open.
8625         (html_open_page) Sets page_open.
8626         (html_close_page) Clears page_open.
8627         (html_submit) Disabled.
8628
8629         * lexer.c: (parse_string) Remove debugging printf.
8630
8631         * list.q: (determine_layout) Open a page if one is not yet open.
8632
8633         * output.c: Comment fixes.
8634         (add_class) Set the class member of the new list element.
8635         (parse_options) Don't handle device type.
8636         (colon_tokenize) New function.
8637         (configure_driver) New four-field format with a field for device
8638         type.  Now initialize driver_open, page_open, next, and prev
8639         fields.  Use new colon_tokenize() function.  Don't do a memory
8640         copy to replace a driver, it doesn't work; instead delete the old
8641         driver and insert a new one.
8642         (destroy_driver) Don't call som_destroy_driver().  Close the page
8643         if it's open.  Find the class in the list of classes and decrement
8644         that reference count.  Remove the driver from the global driver
8645         list.
8646         (outp_iterate_enabled_drivers) Renamed outp_drivers().  All
8647         references changed.  Rewritten.  Don't return a driver that's not
8648         enabled.
8649         (outp_eject_page) All references to som_internal_eject_page()
8650         changed to use this.  Sets cp_x to 0 as well as cp_y.
8651
8652         * output.h: (OUTP_I_* enums) Removed.
8653         (struct som_submission_form) Removed.
8654         (struct outp_class) init_driver broken into preopen_driver,
8655         postopen_driver, and close_driver.  submit changed to take a
8656         som_table argument.
8657
8658         * postscript.c: Comment and formatting fixes.  Almost every
8659         external function had an assert added, checking driver_open and
8660         page_open.
8661         (ps_init_driver) Broken into ps_preopen_driver,
8662         ps_postopen_driver, ps_close_driver.  Manages driver_open.
8663         (ps_open_page) Sets page_open.
8664         (ps_close_page) Clears page_open.
8665
8666         * som.c: New file, base implementation.
8667         
8668         * som.h: (struct som_table) Add struct tag.
8669         (enum SOM_COL_ACROSS) Removed.
8670         (SOM_ROWS, SOM_COLUMNS) New enums.
8671         (struct som_table_class) Add member `cumulate'.  Remove `segment';
8672         change `render' arguments.
8673         (struct som_point, struct som_rect) Removed.
8674         (som_submit_table) Fixed typo, should have been som_submit.
8675
8676         * sysfile-info: (describe_variable) Don't try to insert a
8677         subtable; just destroy it for now.
8678
8679         * t-test.q: Include dcdflib/cdflib.h instead of cdflib.h.  Fix
8680         references to value labels.
8681
8682         * tab.c: (tab_destroy) New function.
8683         (tab_columns) Change argument.
8684         [0] (tab_submit) Remove dead code.
8685         (tab_title) Allocate string from the table's arena.
8686         (tab_output_text) Only free the buffer if we allocated it.
8687         (tab_submit) New function.
8688         (static vars t, d) New static vars.
8689         (tabi_table, tabi_driver, tabi_count, tabi_area, tabi_columns,
8690         tabi_headers, tabi_cumulate, tabi_render) New functions.
8691         (glob var tab_table_class) New global var.
8692
8693         * tab.h: (struct tab_join_rect) Don't use a som_rect; directly
8694         encapsulate the rectangle.  All references changed.
8695         
8696 Sun Dec 21 16:18:58 1997  Ben Pfaff  <blp@gnu.org>
8697
8698         * All header files updated to use struct tags in addition to
8699         typedefs for all structures.  Don't use word `struct' in struct
8700         tags.
8701         
8702         * Makefile.am: (pspp_SOURCES) Remove html.c.
8703         (INCLUDES) Replace the lib/* includes with a single lib/ include;
8704         all references updated.
8705
8706         * command.c: (parse_cmd) Remove call to som_check_workspace.
8707         (output_line) Update to new som.
8708
8709         * data-in.c: (parse_numeric) A single dot is not an error; it is
8710         the system-missing value.
8711
8712         * data-list.c: (dump_fixed_table, dump_free_table) Update to new
8713         som.
8714
8715         * data-out.c: Added `const' as appropriate to many prototypes.
8716         (convert_E, convert_F, convert_CCx) Take double argument instead
8717         of value * argument.
8718         (convert_format_to_string) Call changed functions appropriately.
8719         Instead of modifying the caller's value for FCAT_SHIFT_DECIMAL,
8720         make a local copy of the value.
8721
8722         * descript.q: Remove custom_variables() prototype now provided by
8723         q2c.  
8724         (custom_variables) Don't increment sbc_variables, the caller does
8725         this.
8726         (dump_z_table, display) Update to new som.
8727
8728         * error.c: (vmsg) Add const to prototype.  Remove code to handle
8729         `too many errors' condition.
8730         (check_error_count) New function.
8731         (msg) Add const to prototype.
8732
8733         * filename.c: (open_file) Rewrite for elegance.
8734
8735         * frequencies.q: Remove custom_*() prototypes now provided by q2c.
8736         (dump_full, dump_condensed, dump_statistics) Update for new som.
8737
8738         * list.q: Don't include somP.h.  Change all references to
8739         som_driver_ext to refer to the new members of som_driver.  Change
8740         som_internal_eject_page() references to outp_eject_page().
8741
8742         * main.c: (parse) Rewrite for elegance.  Add call to
8743         check_error_count().
8744
8745         * output.c: (add_class, outp_list_classes, outp_configure_driver)
8746         Rewrite or revise for new outp_driver_class_list structure.
8747         (outp_iterate_enabled_drivers) Fix comparison between disabled
8748         devices and current device type.
8749         (outp_eject_page) New function.
8750
8751         * output.h: Comment fixes.
8752         (struct outp_driver) New members driver_open, page_open, cp_x,
8753         cp_y, font_height, prop_em_width, fixed_width.  Deleted members
8754         ref_count, next.
8755         (struct outp_driver_class_list) New struct.
8756         (outp_class_list) Changed to type outp_driver_class_list; all
8757         references updated.
8758
8759         * print.c: (dump_table, print_trns_proc) Updated for new som.
8760
8761         * q2c.c: (dump_vars) Simplify array subcommand code.  Declare
8762         prototypes for custom subcommands.
8763         (dump_subcommand) Always include the `else'.
8764         (dump_parser) Fix comments in output code.
8765
8766         * set.q: Reordered functions.
8767
8768         * som-frnt.c, som-high.c, som-low.c, somP.h: Removed.
8769         
8770         * som.h: Rewritten from scratch.
8771
8772         * str.h: Remove dead code.
8773
8774         * tab.c, tab.h: New files, base implementation.
8775
8776         * sysfile-info.c: (cmd_sysfile_info, describe_variable) Update to
8777         new som.
8778
8779         * t-test.q: New code from John Williams
8780         <johnr.williams@stonebow.otago.ac.nz>.  Include math.h, cdflib.h.
8781         Many many new static vars and defines.
8782         (precalc, postcalc, g_postcalc, z_postcalc, t_pairs, t_groups,
8783         groups_calc, pairs_calc, z_dev_calc, z_calc) New functions.
8784         (struct value_list) New struct.
8785         (variance, covariance, pooled_variance, oneway, pearson_r, f_sig,
8786         t_crt, t_sig, print_t_groups) New functions.
8787         (cmd_t_test) Implemented.
8788
8789         * temporary.c: (cancel_temporary) Only free the temp_dict if it's
8790         non-NULL.
8791
8792         * vfm.c: (dump_splits) Update to new som.
8793
8794 Thu Dec  4 23:02:22 1997  Ben Pfaff  <blp@gnu.org>
8795
8796         * Makefile.am: (fiasco_SOURCES) Add html.c.
8797
8798         * aggregate.c: Base source.
8799
8800         * ascii.c: (postopen, preclose) Reformat.
8801
8802         * data-out.c, expr-evl.c: Comment fixes.
8803         
8804         * filename.c: (open_file) When opening a file for writing, use
8805         line buffering instead of full buffering for better interactive
8806         performance.  Suggested by Valerio Aimale
8807         <valerio@svpop.com.dist.unige.it>.  Also, recognize special file
8808         names `stdin', `stdout', `stderr'.
8809
8810         * groff-font.c: Comment fixes.
8811
8812         * html.c: New file; base version.
8813
8814         * list.q: (write_all_headers, clean_up, determine_layout,
8815         list_cases) Ignore `special' devices for now.  Needs to be fixed
8816         later.
8817
8818         * output.c: (outp_init) Add html driver to list; reverse list
8819         order.
8820
8821         * output.h: (struct outp_class_struct) New members `special',
8822         `submit'; comment fixes.  All references changed.
8823
8824         * postscript.c: (ps_init_driver) Make defaults for text_opt,
8825         line_opt depend on whether the OUTP_DEV_SCREEN bit is set on the
8826         device.
8827         (postopen) Comment fix.
8828         (preclose) Comment fixes, formatting fixes.  Change x->file.file
8829         references to more proper f->file.
8830
8831         * som-high.c: (som_submit_table) Special classes use their own
8832         renderers.
8833
8834         * som.h: Comment fixes.
8835
8836         * temporary.c: (new_dictionary) Don't try to xstrdup() a NULL
8837         string.
8838         
8839 Tue Dec  2 14:36:07 1997  Ben Pfaff  <blp@gnu.org>
8840
8841         * Makefile.am: (fiasco_SOURCES) Add aggregate.c back in.
8842
8843         * aggregate.c: Still working on this.
8844
8845         * command.c: (cmd_table[]) Add AGGREGATE back in.
8846         (split_words) Make '-' a legal word separator as well as ' '.
8847
8848         * main.c: Comment fixes.
8849
8850         * q2c.c: (dump_parser) Don't require the procedure's full name to
8851         be present, in the generated source.
8852
8853         * t-test.q: Change name to `t-test' from `t test'.  Let PAIRS be
8854         multiply specified and let it be default; let MISSING, CRITERIA,
8855         FORMAT be multiply specified.
8856         (cmd_t_test) Parse command name.  [DEBUGGING] Call debug_print().
8857         (custom_groups) Fix defaults.
8858         (custom_pairs) Check whether this is a PAIRS subcommand before
8859         attempting to parse.  Better garbage collection.  Proper storage
8860         allocation.
8861         [DEBUGGING] (debug_print) New function.
8862
8863         * temporary.c: Comment fixes.
8864         (copy_variable) Don't copy variable name and index.
8865         (save_dictionary) Copy variable name and index by hand.
8866
8867         * vars-atr.c: Comment fixes.
8868         (create_variable) New dictionary argument.  All references
8869         changed.
8870         (common_init_stuff) New dictionary argument.  All references
8871         changed.
8872         (init_variable) New dictionary argument.  All references changed.
8873         (dup_variable) New function.
8874
8875         * vars-prs.c: (parse_variables) If there are any errors, we always
8876         return 0.  Previously, it was possible for some types of errors to
8877         be ignored.
8878         
8879 Sat Nov 22 01:20:59 1997  Ben Pfaff  <blp@gnu.org>
8880
8881         * Makefile.am: (fiasco_SOURCES) For 0.1.5 release, remove
8882         aggregate.c.
8883
8884         * command.c: (cmd_table[]) Comment out AGGREGATE; add T TEST.
8885
8886         * list.q, t-test.q: Remove ALL option from VARLIST declaration in
8887         grammar rules.
8888
8889         * q2c.c: Comment fixes.
8890         (SBC_* enums) Remove SBC_VARLIST_ALL; all references removed.
8891         
8892         * t-test.q: (cmd_list) Rename cmd_t_test.
8893
8894         * temporary.c: (new_dictionary) Don't declare as static.
8895         
8896 Fri Nov 21 00:03:06 1997  Ben Pfaff  <blp@gnu.org>
8897
8898         * aggregate.c: Changes, still not finished.
8899
8900         * file-handle.q, frequencies.q, list.q, set.q: Comment fixes.
8901
8902         * q2c.c: Comment fixes.  Now its output is internationalized.
8903         (get_token) Fix parsing of escapes within literal strings.
8904         (main) Fix bad #line directives in output.
8905
8906         * t-test.q: Base implementation.
8907
8908         * temporary.c: (new_dictionary) New function.
8909         (restore_dictionary) [__CHECKER__] Change fill character to *
8910         (from @).
8911         
8912 Sun Nov 16 01:29:57 1997  Ben Pfaff  <blp@gnu.org>
8913
8914         * Makefile.am: (BUILT_SOURCES, fiasco_SOURCES) Add t-test.c
8915
8916         * aggregate.c: Changes, still not finished.
8917
8918         * descript.q, list.q: Comment fixes.
8919
8920         * q2c.c: Almost completely rewritten.
8921
8922         * t-test.q: New file, not complete.
8923
8924 Fri Nov 14 00:14:48 1997  Ben Pfaff  <blp@gnu.org>
8925
8926         * aggregate.c: Changes, still not finished.
8927
8928         * sort.c: (sort_cases) Call cancel_temporary() instead of doing it
8929         by hand.
8930
8931         * temporary.c: (cancel_temporary) New function.
8932
8933         * vars-atr.c: (discard_variables) Call cancel_temporary() instead
8934         of doing it by hand.
8935
8936         * vfm.c: (close_active_file) After restoring a TEMPORARY
8937         dictionary, set temp_dict to NULL.  Cancel TEMPORARY through
8938         cancel_temporary().
8939         (SPLIT_FILE_procfunc) Comment fix.
8940
8941 Tue Oct 28 16:08:45 1997  Ben Pfaff  <blp@gnu.org>
8942
8943         * Makefile.am: (fiasco_SOURCES) Add aggregate.c.
8944
8945         * aggregate.c: New file, not finished yet.
8946
8947         * command.c: (cmd_table) Add AGGREGATE.
8948
8949         * common.h: (pgm_state) Move declaration to var.h.
8950
8951         * lexer.c: (bin_value_func, oct_value_func, hex_value_func) i18n
8952         fixes.
8953         (parse_string) Message fix.
8954
8955         * recode.c: Comment fix.
8956
8957         * sfm-read.c: (read_variables) Code esthetic fixes.
8958         (write_header) Default date is `Jan', not `JAN'.
8959
8960         * sfmP.h: (bswap_int32) [!__linux__] Fix off-by-one errors.
8961
8962         * sort.c: (cmd_sort_cases) Farm the work out to new function
8963         parse_sort_variables().
8964         (parse_sort_variables) New function.
8965         (sort_cases) New function.  Cancels temporary transformations,
8966         which sorting didn't do previously.
8967         (cmd_sort_cases) Better garbage collection on error.  Uses
8968         do_external_sort().
8969         (write_initial_runs, merge_once) Improved code esthetics.
8970         (sort_stream_read) Reduced to one call to read_output_cases().
8971         (read_output_cases) New function.
8972
8973         * var-labs.c: (cmd_variable_labels) Re-enabled truncation of
8974         variable labels to 120 characters.
8975
8976         * var.h: Comment fixes.
8977         (glob var pgm_state) From common.h.
8978
8979         * vars-atr.c: (discard_variables) Set pgm_state to STATE_INIT.
8980
8981         * vars-prs.c: (parse_DATA_LIST_vars) Support PV_SINGLE in
8982         options.  Set *names to NULL on error.
8983
8984         * vfm.c: (memory_stream_init) Assert compaction_nval != 0.
8985
8986 Thu Oct  9 09:59:49 1997  Ben Pfaff  <blp@gnu.org>
8987
8988         * sfm-write.c, vfm.c: [HAVE_UNISTD] #include <unistd.h>, needed by
8989         SunOS4.  From Alexandre Oliva <oliva@dcc.unicamp.br>.
8990
8991 Wed Oct  8 18:55:24 1997  Ben Pfaff  <blp@gnu.org>
8992
8993         * vfm.c: (page_to_disk) Added missing local variables.
8994
8995 Tue Oct  7 20:23:17 1997  Ben Pfaff  <blp@gnu.org>
8996
8997         * get.c: Comment fix.
8998
8999         * sort.c: (cmd_sort_cases) Attempt to perform internal sort if the
9000         source is anything other than a disk stream, not just if it's in a
9001         memory stream.  Call page_to_disk() before external sort.
9002         (allocate_cases) Message fix.
9003
9004         * vfm.c: (prepare_for_writing) Warn user when paging workspace to
9005         disk.
9006         (page_to_disk) New function.
9007
9008 Sun Oct  5 15:56:14 1997  Ben Pfaff  <blp@gnu.org>
9009
9010         * Makefile.am: (INCLUDES) Include .. instead of $(top_srcdir).
9011
9012         * common.h: (macro strerror) Remove.  From Alexandre Oliva
9013         <oliva@dcc.unicamp.br>.
9014
9015         * get.c: (dict_delete_run) The number of variables to delete is
9016         not necessarily the number of variables that need to be shifted
9017         up.
9018         (trim_dictionary) Don't set *options to 0.  Fix bug that caused
9019         too many variables to be deleted.
9020
9021         * postscript.c: Comment fix.
9022
9023         * q2c.c: Include strerror.c.  From Alexandre Oliva
9024         <oliva@dcc.unicamp.br>.
9025
9026         * set.q: #undef ON and OFF.  From Alexandre Oliva
9027         <oliva@dcc.unicamp.br>.
9028
9029         * sfm-read.c: (sfm_read_dictionary) Don't set the file class too
9030         early, otherwise errors cause a bad free().
9031
9032         * str.h: (macro nvsprintf) s/FORMATS/FORMAT/ typo.  From Alexandre
9033         Oliva <oliva@dcc.unicamp.br>.
9034
9035         * temporary.c: (save_dictionary) Don't allocate memory if
9036         n_documents is 0.
9037
9038         * vfm.c: (memory_stream_write) Message fix.
9039
9040 Sat Oct  4 16:20:43 1997  Ben Pfaff  <blp@gnu.org>
9041
9042         * command.c: (static var cmd_table[]) Define REPEATING DATA
9043         command.
9044
9045         * common.h: Added support for broken systems that are missing
9046         EXIT_SUCCESS, EXIT_FAILURE, RAND_MAX, and/or strerror().
9047
9048         * Many source files: Replace syntax error messages via msg() with
9049         call to syntax_error().
9050
9051         * data-list.c: (dump_fixed_table) Add support for dumping table
9052         for REPEATING DATA as well as DATA LIST FIXED.
9053         (cmd_repeating_data) Allows and requires `/' between subcommands.
9054         Does proper thing with allowing rpd.starts_end to stay 0.  Allows
9055         CONTINUED specifications to be omitted.  Forces CONTINUED to be
9056         specified if ID is.  Calculates starts_end, cont_end from logical
9057         record length as reported by fhp.  Calls dump_fixed_table() if
9058         requested.  Fixed length of record copied by memcpy.
9059         (parse_num_or_var) Sets `num' to 0, not NOT_INT, for variables.
9060         Message fix.
9061         (realize_value) Returns sensible value for out-of-range variable
9062         values.
9063         (rpd_parse_record) New argument `ofs'.  Fixed confusion between
9064         length of occurrences and length of line.  Added warning for
9065         fields that exceed the line length.  Fixed infinite loop.
9066         (read_one_set_of_repetitions) Numerous minor changes for more
9067         complete SPSS compliance.  Message fixes.
9068
9069         * dfm.c: (dfm_close) If the file being closed is the inline file,
9070         read all the remaining data before closing it.
9071         (dfm_get_record) Don't close the file on lossage, as either it
9072         has been closed already or it doesn't belong to us.
9073
9074         * error.c: (puts_stdout) New function.
9075         (vmsg) Use puts_stdout instead of puts.
9076
9077         * file-handle.q: (fh_record_width) New function.
9078
9079         * inpt-pgm.c: (init_case) Fixed buffer overrun when inp_nval % 4
9080         == 0.
9081         (clear_case) Ditto.
9082         (input_program_source_read) Made an old kluge an approved method.
9083
9084         * lexer.c: (syntax_error) New function.
9085
9086         * misc.c: [BROKEN_RAND] (ansi_rand, ansi_srand; static var next)
9087         New.
9088
9089         * output.c: (oupt_get_paper_size) Message fix.
9090
9091         * q2c.c: Numerous fixes to formatting of generated code made to
9092         conform to GNU coding standards.  Uses syntax_error() in generated
9093         code.  Other miscellaneous generated message fixes.  Added support
9094         for broken systems that are missing EXIT_SUCCESS, EXIT_FAILURE,
9095         RAND_MAX, and/or strerror().
9096
9097 Sat Oct  4 02:09:56 1997  Ben Pfaff  <blp@gnu.org>
9098
9099         * data-in.c: Comment fixes.
9100
9101         * data-list.c: (struct repeating_data_trns) New member `id_spec'.
9102         (find_variable_input_spec) New function.
9103         (cmd_repeating_data) Initializes id_spec.
9104         (rpd_parse_record) Implemented.
9105         (read_one_set_of_repetitions) Returns -3 by default in order to
9106         kluge out some potential bugs.
9107
9108         * data-out.c: Comment fixes.
9109
9110         * file-type.c: (internal_cmd_record_type) Message fix.
9111
9112         * inpt-pgm.c: (input_program_source_read) Special temporary kluge
9113         for handling -3 return value.
9114
9115 Sat Sep 20 23:58:15 1997  Ben Pfaff  <blp@gnu.org>
9116
9117         * data-list.c: Comment fixes.
9118         (struct dls_var_spec) Reordered members.
9119         (read_from_data_list_fixed) Restructured.
9120         (struct repeating_data_trns) Reordered members.  Renamed `starts'
9121         as `starts_beg', `ends' as `starts_end'.
9122         (cmd_repeating_data) Calculates length of repeated data if
9123         necessary and possible.
9124         (parse_num_or_var) Don't allow string variables.
9125         (realize_value) New function.
9126         (rpd_msg) New function.
9127         (rpd_parse_record) New function.  Currently stubbed out.
9128         (read_one_set_of_repetitions) Implemented.
9129
9130         * inpt-pgm.c: (input_program_source_read) Comment fix.
9131
9132 Thu Sep 18 21:34:57 1997  Ben Pfaff  <blp@gnu.org>
9133
9134         * command.c: (cmd_end_repeat_p) Removed.
9135         (init_cmd_parser) Doesn't set cmd_end_repeat_p.
9136         (parse_cmd_name) Removed.
9137
9138         * data-list.c: Comment fixes.
9139         (data_list_pgm) Removed `eof' member.
9140         (static var first) New var.
9141         (cmd_data_list) Sets `first'.  Ensures that DATA LIST uses the
9142         FILE TYPE file inside FILE TYPE structures.
9143         (append_var_spec) Appends to *first, not dls.spec.
9144         (parse_fixed) Message fixes.
9145         (struct rpd_num_or_var) New.
9146         (struct repeating_data_trns) New.
9147         (static var rpd) New.
9148         (cmd_repeating_data) New function.
9149         (parse_num_or_var) New function.
9150         (parse_repeating_data) New function.
9151         (read_one_set_of_repetitions) New function.
9152
9153         * file-type.c: (cmd_file_type) Message fixes.  Always
9154         default_handle to FILE TYPE file handle.
9155         (internal_cmd_record_type) Message fixes.
9156
9157 Wed Aug 20 14:22:03 1997  Ben Pfaff  <blp@gnu.org>
9158
9159         * repeat.c: Comment fix.  Disable debugging.
9160
9161         * temporary.c: (restore_dictionary) Sets splits to NULL and
9162         n_splits to 0 before destroying the variables because now doing
9163         this tries to remove split variables.
9164
9165         * vars-atr.c: (discard_variables) Asserts that n_splits is 0 after
9166         destroying the dictionary.
9167         (clear_variable) Removes a variable from splits after destroying
9168         it.
9169
9170 Mon Aug 18 18:06:55 1997  Ben Pfaff  <blp@gnu.org>
9171
9172         * cmdline.c: (set_compat) Removed.
9173         (pick_compat) Removed.
9174         (parse_command_line) Removed -c option.
9175         (pre_syntax_message) Removed -c option.
9176         (usage) Remove compatibility code.
9177
9178         * common.h: (macros VER_PC, VER_WND, VER_X) Removed.
9179         (glob var compat) Removed.
9180
9181         * compute.c: (type_check) Fixed messages about type mismatches.
9182
9183         * data-list.c: (cmd_data_list) Removed compatibility code.
9184         (fixed_parse_compatible) Calls convert_negative_to_dash().
9185         Fixed bug where it only set the variable in fx.spec if it created
9186         the variable itself.
9187         (dump_fmt_list) Spelling fix.
9188         (cut_field) Removed compatibility code.
9189
9190         * dfm.c: (cmd_begin_data) Don't require a command terminator on
9191         BEGIN DATA command.
9192
9193         * expr-evl.c: (evaluate_expression) Implement LAG.
9194
9195         * expr-prs.c: (parse_add) Calls convert_negative_to_dash().
9196         (parse_neg) Calls convert_negative_to_dash().
9197         (LAG_func) Increases n_lag to the lag requested.  Fixed assignment
9198         bug.
9199
9200         * expr.h: (struct expression_struct) Removed member max_lag.
9201
9202         * file-type.c: (parse_col_spec) Calls convert_negative_to_dash().
9203         (internal_cmd_record_type) Removed special handling to produce
9204         negative numbers from dash tokens.
9205
9206         * getline.c: (static var DO_REPEAT_level) New var.
9207         (getl_add_DO_REPEAT_file) Increments DO_REPEAT_level.
9208         (handle_line_buffer) Copies the line into getl_buf; doesn't call
9209         copy_with_DO_REPEAT_substitutions().
9210         (getl_read_line) Maintains value of getl_mode.  Calls
9211         perform_DO_REPEAT_substitutions() whenever DO_REPEAT_level is
9212         positive.
9213         (getl_close_file) Decrements DO_REPEAT_level when appropriate.
9214
9215         * getline.h: (getl_mode) New glob var.
9216
9217         * glob.c: Comment fixes.
9218         (init_glob) Restructured.  Sets set_seed.
9219         (init_compat_dependent) Removed.  All references removed.
9220         (get_date) Format changed from MM/DD/YY to DD MMM YYYY.
9221         (__htonl, __htons) Removed.  (What were these for?)
9222
9223         * lexer.c: (static var tbl) Dash set to class CNUM.
9224         (make_hexit) New function from data-out.c.
9225         (get_token_representation) Rewritten.
9226         (convert_negative_to_dash) New function.
9227         (lex_init_compat_dependent) Removed.
9228         (yylex) A dash is parsed as part of a number if it is followed by
9229         a digit.  The ASCII representation of a number is copied to
9230         tokstr.  String parsing farmed out to parse_string().  Comment
9231         fixes.
9232         (bin_value_func, oct_value_func, hex_value_func, parse_string) New
9233         functions.
9234         (preprocess_line) Line processing depends on interactive/batch
9235         mode, not on compatibility mode.  Removed PC+ compatibility code.
9236
9237         * loop.c: (loop_3_trns_proc) Comment fix.
9238
9239         * main.c: Remove dead code.
9240         (main) Remove call to init_compat_dependent().
9241
9242         * misc.c: (convert_fmt_ItoO) Make E format conversion more
9243         conformant.
9244
9245         * print.c: (parse_string_argument) Calls
9246         convert_negative_to_dash().
9247         (fixed_parse_compatible) Calls convert_negative_to_dash().
9248
9249         * repeat.c: (RPT_* defines) Removed.
9250         (struct rpt_numeric) Removed.
9251         (struct repeat_entry) New member type, changed `replacement' from
9252         char * to char **.
9253         (clean_up) Deallocation adapted to new repeat_entry.
9254         (internal_cmd_do_repeat) `type' defaults to 0.  Remove lookahead()
9255         usage.  Creates vars for `type' of 1.
9256         (parse_ids) Sets type of 1.  Adapted to new repeat_entry.
9257         (store_numeric) Rewritten, new interface.
9258         (parse_numbers) Rewritten.
9259         (parse_strings) Rewritten.
9260         (find_DO_REPEAT_substitution) New function.
9261         (perform_DO_REPEAT_substitutions) New function.
9262         (copy_with_DO_REPEAT_substitutions) Removed.
9263         (debug_print) Rewritten.
9264
9265         * set.q: Comment fix.
9266         (custom_results) Removed compatibility code.
9267         (internal_cmd_set) Removed SET EMULATION subcommand.  Removed
9268         compatibility code.
9269
9270         * sysfile-info.c: (cmd_display) Removed compatibility code.
9271
9272         * tokens.h: Comment fixes.
9273         (token types enum) Removed `toktype' typedef name for this int
9274         type.  Removed SUBST.  Restructured.
9275
9276         * vars-atr.c: (discard_variables) Sets n_lag to 0.
9277
9278         * vars-prs.c: Comment fix.
9279
9280         * vfm.c: Comment fixes.
9281         (glob var n_lag) New var.
9282         (static vars lag_count, lag_head, lag_queue) New vars.
9283         (procedure) Removed argument nlag.
9284         (setup_lag) New function.
9285         (close_active_file) Discards lagging state.
9286         (lag_case) New function.
9287         (lagged_case) New function.
9288         (write_case) Lags a case if lagging.
9289
9290         * weight.c: (cmd_weight) Removed compatibility code.
9291         
9292 Sun Aug 17 22:34:40 1997  Ben Pfaff  <blp@gnu.org>
9293
9294         * getline.h: (struct getl_script) New members loop_index, macros.
9295
9296         * getline.c: (getl_add_file) Sets first_line field to NULL.
9297         (getl_add_DO_REPEAT_file) New function.
9298         (handle_line_buffer) When the current line's length is negative,
9299         set the filename and line number.  Increment line number after
9300         reading line.  Pass the line to
9301         copy_with_DO_REPEAT_substitutions() for processing.
9302         (getl_close_file) Free DO REPEAT lines before freeing the
9303         filename, and just set the filename to NULL when doing this,
9304         because otherwise the filename gets freed twice.
9305
9306         * glob.c: (glob var queuing) Removed.  All references removed.
9307
9308         * lexer.c: Comment fixes.
9309         (get_token_representation) New function.
9310
9311         * repeat.c: Comment fixes.
9312         (struct repeat_entry) Replaced type and v union members with a
9313         simple string.
9314         (append_record) New function.
9315         (internal_cmd_do_repeat) Started reforming it for the new
9316         repeat_entry struct.  Properly records filename changes in the
9317         getl_line_buf.  Fixed improper use of = for ==.  Fixed sense of
9318         strncasecmp() result usage.  Uses append_record() to simplify.
9319         Properly discards END REPEAT line.  Calls getl_add_DO_REPEAT_file
9320         to add in the file.
9321
9322         (copy_with_DO_REPEAT_substitutions) Started coding.
9323
9324         [DEBUGGING] (debug_print_lines) New function.
9325
9326         * set.q: (custom_results, internal_cmd_set) s/VER_PCP40/VER_PC/;
9327
9328         * tokens.h: (macro is_id1, is_idn) New macros.
9329
9330 Sat Aug 16 10:57:41 1997  Ben Pfaff  <blp@gnu.org>
9331
9332         * cmdline.c: (static var pre_syntax_message) Changed `win'
9333         compatibility mode to `wnd'.
9334
9335         * data-list.c: (fixed_parse_spss) Renamed
9336         fixed_parse_compatible().
9337
9338         * glob.c: (init_glob) Excise unused code for
9339         program_invocation_short_name.
9340
9341         * lexer.c: (preprocess_line) Leading indentors are ignored in Wnd
9342         as well as in X.
9343
9344         * print.c: (fixed_parse_spss) Renamed fixed_parse_compatible().
9345
9346         * set.q: `win' compatibility renamed `wnd'.
9347
9348 Thu Aug 14 22:11:12 1997  Ben Pfaff  <blp@gnu.org>
9349
9350         * filename.c: [__WIN32__] Change the included Windows header files
9351         (again).
9352         (absolute_filename_p) [__MSDOS__] A filename with a colon as the
9353         second character is absolute.
9354         (dirname) Fix logic error.  Don't printf() the results.
9355         (prepend_dir) Don't printf() the results.
9356
9357         * getline.c: (handle_line_buffer) New function.
9358         (getl_read_line) Reads line with handle_line_buffer() when
9359         appropriate.
9360         (getl_close_file) Discard line buffer data.
9361
9362         * getline.h: Comment fixes.
9363         (struct getl_line_list) New struct.
9364         (getl_script_struct) Added line buffer members.  These are hooks
9365         for use by DO REPEAT to allow it to insert virtual source code
9366         into the program.
9367
9368         * glob.c: (init_glob) [__DJGPP__ || (__WIN32__ && __BORLANDC__)]
9369         Override Borland C++ stupidity that claims Windows has a console
9370         window size of 0x3.
9371
9372         * repeat.c: This is in the process of being restructured from
9373         using a token-buffering approach to the DO REPEAT facility to
9374         using the more flexible approach of a line-buffering approach in
9375         conjunction with the getline module.  Comment fixes.
9376         (struct tok_struct) Removed.
9377         (static vars queue_index, queue_head, queue) Removed.
9378         (static vars line_buf_head, line_buf_tail) New vars.
9379         (internal_cmd_do_repeat) Instead of queuing tokens, queue lines.
9380         Not complete.
9381         (pull_queue, destroy_queue) Removed.
9382         [DEBUGGING] (debug_print_tokens) Removed.
9383
9384 Tue Aug  5 13:57:58 1997  Ben Pfaff  <blp@gnu.org>
9385
9386         * file-handle.q: (prepend_current_directory) New function.
9387         (internal_cmd_file_handle, fh_get_handle_by_filename) Prepends
9388         current directory before normalizing filename.
9389
9390         * filename.c: (gnu_getcwd) New function.
9391         (absolute_filename_p) New function.
9392         (search_path) New argument, PREPEND.  All references changed to
9393         pass NULL except those explicitly mentioned.  Uses
9394         absolute_filename_p().  Prepends PREPEND before trying the
9395         filename.
9396         (dirname, prepend_dir) New functions.
9397
9398         * getline.c: (getl_get_current_directory) New function.
9399         (getl_include) Passes getl_get_current_directory() as PREPEND arg
9400         to search_path().
9401                 
9402 Sun Aug  3 11:42:36 1997  Ben Pfaff  <blp@gnu.org>
9403
9404         * In several source files, the term `script' was replaced with
9405         `syntax file' inside error messages.  Usage of the term `script'
9406         in the sense of a syntax file is now deprecated.
9407
9408         * cmdline.c: (static vars pre_syntax_message, post_syntax_message)
9409         Updated messages.
9410
9411         * dump-sysfile.c: (usage) Update message.
9412
9413         * getline.c: (getl_read_line) Ignore lines beginning with `#!'.
9414
9415         * getline.h: (glob var getl_include_path) Declare extern.
9416
9417         * list.q: Define EXTERN as extern before #including somP.h.
9418
9419         * var.h: Remove declaration of `disptype' variable.
9420
9421         * vfm.c: (close_active_file) After switching the data sink to a
9422         data source, set vfm_sink to NULL, because it doesn't exist any
9423         more.
9424
9425 Thu Jul 17 21:41:44 1997  Ben Pfaff  <blp@gnu.org>
9426
9427         * glob.c: [__BORLANDC__] Include math.h.  Define _matherr() and
9428         _matherrl() to ignore all math errors.
9429
9430         * sfm-read.c: (read_value_labels) When reading the labels from
9431         disk, read the little parts separately instead of as a struct;
9432         this avoids alignment problems.
9433
9434         * sfm-write.c: (struct sfm_fhuser_ext) New member `elem_type'.
9435         (sfm_write_dictionary) Sets elem_type and frees it on lossage.
9436         (write_header) Allocates and initializes elem_type.
9437         (sfm_write_case) Uses elem_type to determine how to handle each
9438         flt64 element.
9439         (sfm_close) Frees elem_type.
9440
9441         * sfmP.h: Comment fix.
9442         [__BORLANDC__] Uses #pragma -a to adjust structure member
9443         alignment.
9444         
9445 Thu Jul 17 01:55:12 1997  Ben Pfaff  <blp@gnu.org>
9446
9447         * Makefile.am: (fiasco_SOURCES) Remove display.c.
9448
9449         * common.c: Fix typo.
9450
9451         * dfm.c: (read_record) Remove strncasecmp() emulation and fix the
9452         sense of the condition.
9453
9454         * expr-evl.c: (macro ALLOC_STRING_SPACE) [!PAGED_STACK] Add
9455         line-continuation backslash.
9456
9457         * filename.c: [__WIN32__] Include <windef.h> before <winbase.h>.
9458
9459         * frequencies.q: (custom_grouped, add_percentile) Don't use a
9460         non-constant expression as an argument to sizeof.
9461
9462         * glob.c: [__WIN32__ && __BORLANDC__] When including <conio.h>,
9463         undefine gettext macro because that's a conio function.
9464
9465         * hash.h: (hsh_prime_tab declaration) Remove.
9466
9467         * list.q: (write_fallback_headers) Move `leader' allocation out of
9468         main loop.  Change to local_alloc() allocation.
9469
9470         * output.h: Formatting fixes.  Put __attribute__ in right place on
9471         function prototypes.
9472
9473         * sfm-read.c: (read_machine_flt64_info, read_variables) Change
9474         incorrect `SECOND_LOWEST_VALUE' references to proper
9475         `second_lowest_value'.
9476
9477         * som-frnt.c: (EXTERN macro) Define as `extern' instead of null
9478         value.  This way 2 out of 3 of the som files define the vars
9479         extern, the correct way, that actually works under BC++.
9480         (som_set_float) Don't use nonconstant initializers for a struct.
9481
9482         * som-high.c: Add the standard alloca() header.
9483         (replicate_table) Add prototype.
9484
9485         Merged DISPLAY routine.
9486         * sysfile-info.c: (AS_*) New enum series.
9487         (cmd_sysfile_info) Gutted.  Calls describe_variable() to do the
9488         dirty work.
9489         (cmd_display, display_macros, display_documents,
9490         display_variables) Stolen from defunct display.c.
9491         (describe_variable) New function.
9492
9493         * temporary.c: [0] (display_tree) New debug function.
9494         (copy_variable) Performs shallow copy of value labels instead of
9495         deep copy; i.e., just copys the AVL tree and increments the
9496         reference counts.
9497
9498         * val-labs.c: Comment fixes.
9499         (do_value_labels) Optionally skip leading forward slash.
9500         (get_label) Creates only a single value label instead of many
9501         copies of one, and sets the reference count.
9502
9503         * display.c: Removed.
9504
9505         * dump-sysfile.c: New file, not yet complete.
9506
9507 Fri Jul 11 23:02:18 1997  Ben Pfaff  <blp@gnu.org>
9508
9509         For lots of source files I added more verbose_msg's.  These aren't
9510         listed below as they have tested as being benign.  In some cases
9511         these replaced debug_printf() calls.
9512
9513         * output.c: (outp_read_devices) Message fix.
9514
9515         * postscript.c: (output_encodings) Message fix.  Reports errors on
9516         fclose().
9517         (postopen) Message fix.
9518         
9519 Fri Jul 11 14:09:40 1997  Ben Pfaff  <blp@gnu.org>
9520
9521         * dfm.c: (dfm_close) Don't call fclose() for a NULL FILE.
9522
9523         * filename.c: (close_file_ext) Set f->file to NULL *after* closing
9524         it.
9525
9526         * main.c: Remove <malloc.h> #include.
9527
9528         * mis-val.c: (parse_numeric) Set .f member for each missing[]
9529         instead of trying to just set the missing[] itself, which is a
9530         gcc-specific idiom.
9531
9532         * sfm-read.c: (read_variables) Same.
9533
9534         * str.h: Add memmem() prototype.
9535
9536         * val-labs.c, var-labs.c: Replace <malloc.h> with <stdlib.h>.
9537
9538 Thu Jul 10 22:13:53 1997  Ben Pfaff  <blp@gnu.org>
9539
9540         * Makefile.am: (q2c) Don't include any libraries in the link.
9541
9542         * dfm.c: (force_line_buffer_extension) New macro.
9543         (count_tabs) New function.
9544         (tabs_To_spaces) New function.
9545         (read_record) Calls tabs_to_spaces() on the line being processed.
9546
9547         * q2c.c: Disabled i18n for this proglet so that libintl.a doesn't
9548         have to be compiled twice (once for CC, once for LOCAL_CC).
9549  
9550 Sun Jul  6 19:14:33 1997  Ben Pfaff  <blp@gnu.org>
9551
9552         * Makefile.am: (INCLUDES) Add intl directory; fix directories.
9553         (LDADD) Add @INTLLIBS@.
9554         (q2c) Add LIBS, @INTLLIBS@ to link step.
9555
9556         * inpt-pgm.c: Turn off debugging.
9557
9558         * postscript.c: (postopen) Format fix.  local_free() blocks
9559         returned by local_alloc(); don't free() them.
9560
9561 Sat Jul  5 23:44:51 1997  Ben Pfaff  <blp@gnu.org>
9562
9563         * data-in.c: (parse_string_as_format) Comment fix.  Fix check for
9564         string length.
9565
9566         * data-list.c: (read_from_data_list_fixed) Pass proper value for
9567         LEN arg, not simply the full string length.
9568
9569         * sort.c: (allocate_file_handles) Check SPSS compatible temp file
9570         directories before generic temp file directories.
9571
9572         * vfm.c: Disable debugging.
9573
9574 Fri Jul  4 13:26:41 1997  Ben Pfaff  <blp@gnu.org>
9575
9576         * get.c: Comment fix.
9577         (cmd_save_internal) Always passes GTSV_OPT_SAVE option.
9578
9579 Wed Jun 25 22:52:28 1997  Ben Pfaff  <blp@gnu.org>
9580
9581         * expr-prs.c: (debug_print_postfix) Conditionally included on
9582         GLOBAL_DEBUGGING.  Removed out_header() reference.
9583
9584         * exprP.h: Removed #undef GLOBAL_DEBUGGING.
9585
9586 Sun Jun 22 22:00:28 1997  Ben Pfaff  <blp@gnu.org>
9587
9588         * ascii.c: Removed obsolete ascii_close_page() prototype.
9589
9590         * command.c: (output_line) Comment fix.
9591
9592         * data-in.c: Formatting fix.
9593         (parse_string_as_format) Now the `fc' argument is used only for
9594         the purpose of error messages; it is not an index into the string
9595         passed.  All references changed.
9596
9597         * data-list.c: Comment fix.
9598         (cut_field) Comment fix.  Now returns the column number of the
9599         position of the field cut out on success.
9600         (parse_field) Added `column' argument.  Puts the column numbers in
9601         the error message.
9602         (read_from_data_list_free, read_from_data_list_list) Record the
9603         column number returned by cut_field(), pass it to parse_field().
9604
9605         * dfm.c: Comment fix.
9606
9607         * do-ifP.h: Comment fix.
9608
9609         * expr-prs.c: (SYSMIS_func) Implemented string-type arguments for
9610         the SYSMIS function.
9611
9612         * expr.h, exprP.h: Comment fix.
9613
9614         * glob.c: (init_glob) Only calls setlocale() and family if
9615         ENABLE_NLS set.
9616
9617         * hash.h: Comment fix.
9618
9619         * include.c: Comment fix.
9620
9621         * output.c: Comment fix.
9622
9623         * postscript.c: (ps_line_intersection) Simplified assertion.
9624
9625         * repeat.c: Comment fix.
9626
9627         * vars-atr.c: Comment fix.
9628
9629         * vars-prs.c: Comment fix.
9630
9631         * vfm.c: (vector_initialization) [DEBUGGING] Fixed undefined
9632         behavior with usage of postincrement.
9633         (memory_stream_read) Discards cases as it goes. 
9634
9635 Sun Jun 15 16:45:17 1997  Ben Pfaff  <blp@gnu.org>
9636
9637         * Makefile.am: Cleans q2c, not just distcleans it.  Distcleans
9638         foo.
9639
9640         * Most source files: Includes debug-print.h, related comment
9641         fixes.
9642
9643         * cases.c: (alloc_val) Removed complex allocation code.  Merely
9644         increments default_dict.nval and returns the former value.
9645         (envector, devector) Removed references to lv member of struct
9646         variable.
9647
9648         * common.h: (macro VME) Replaced complex definition with simple
9649         one.
9650
9651         * data-list.c: (cmd_data_list) Sets vfm_source instead of
9652         read_active_file and cancel_input_pgm.
9653         (read_from_data_list, cancel_data_list) Removed.
9654         (data_list_source_read, data_list_source_destroy_source) New
9655         functions.
9656         (glob var data_list_source) New var.
9657
9658         * dfm.c: (open_file_r, open_file_w) Simplified debug output.
9659         (cmd_begin_data) Improved criteria for an input program accessing
9660         the inline file.  Still not perfect.
9661
9662         * do-if.c: (do_if_trns_proc) Simplified debug output.
9663
9664         * expr-prs.c: Comment fixes.
9665         [DEBUGGING] (debug_print_postfix) Simplified debug output.
9666
9667         * file-handle.q: (fh_close_handle) Simplified debug output.
9668
9669         * file-type.c: Comment fixes.
9670         (cmd_file_type) Sets vfm_source instead of read_active_file and
9671         cancel_input_pgm.
9672         (cmd_end_file_type) On failure, discards variables in place of
9673         just canceling the input program.
9674         (read_from_file_type) Renamed file_type_source_read.
9675         (cancel_file_type) Renamed file_type_source_destroy_source.
9676         (glob var file_type_source) New var.
9677
9678         * get.c: (GTSV_* enum series) New enums GTSV_OPT_SAVE, GTSV_NONE.
9679         (cmd_get) Initializes options to GTSV_NONE before passing to
9680         trim_dictionary().  Removed `lv' reference.  Sets vfm_source
9681         instead of read_active_file and cancel_input_pgm.
9682         (cmd_save_internal) Initializes options before passing to
9683         trim_dictionary().  Local var `nval' removed.
9684         (dict_delete_run) Comment fixes.
9685         (trim_dictionary) Comment fixes.  Disallows scratch variables if
9686         GTSV_OPT_SAVE set in options.
9687         (read_from_get) Renamed get_source_read.
9688         (cancel_get) Renamed get_source_destroy_source.
9689         (glob var get_source) New var.
9690
9691         * inpt-pgm.c: (cmd_input_program) Sets vfm_source instead of
9692         read_active_file and cancel_input_pgm.
9693         (read_from_input_program) Renamed input_program_source_read.
9694         Simplified debug output.
9695         (cancel_input_program) Renamed
9696         input_program_source_destroy_source.
9697         (glob var input_program_source) New var.
9698
9699         * loop.c: (loop_1_trns_proc) Simplified debug output.
9700
9701         * main.c: (dump_token) Made eof output more explicit.
9702
9703         * sfm-read.c: (read_variables, dump_dictionary) Removed `lv'
9704         references.
9705
9706         * sort.c: (cmd_sort_cases) Disallows scratch variables.  Removed
9707         code for always-memory or always-disk cases.  malloc's case-list
9708         based on vfm_source_info.ncases.  Explicit support for
9709         memory_stream via memory_source_cases.
9710         (do_external_sort) Sets vfm_source instead of read_active_file and
9711         cancel_input_pgm.
9712         (allocate_file_handles) The temporary directory permissions are
9713         set to 0700 instead of 0777.
9714         (allocate_cases) Formatting fixes.  Simplified debug output.
9715         (output_record) Compacts the case if necessary before writing it
9716         out.
9717         (close_handle, open_handle_w) Simplified debug output.
9718         (write_initial_runs) Destroys vfm_sink, then sets it to
9719         sort_stream.  Writes records to memory based on
9720         vfm_sink_info.case_size.
9721         (write_to_sort_cases) Renamed sort_stream_write().
9722         (merge) Simplified error handling.  Simplified debug output.
9723         Formatting fixes.
9724         (read_from_external_sort) Renamed sort_stream_read().
9725         Reads records based on vfm_source_info.case_size.
9726         (sort_stream_write) Writes records to memory based on
9727         vfm_sink_info.case_size.
9728         (sort_stream_mode) New function.
9729         (glob var sort_stream) New variable.
9730
9731         * temporary.c: (cmd_temporary) Simplified debug output.
9732         (copy_variable) Removed references to `lv'.
9733
9734         * title.c: (get_title) Simplified debug output.
9735
9736         * var.h: Comment fixes.
9737         (struct get_proc) Removed member `lv'.
9738         (struct variable) Removed member `lv'.  Comment fixes.
9739         (glob vars read_active_file, write_active_file, cancel_input_pgm)
9740         Removed.
9741         (struct case_stream) New.
9742
9743         * vars-atr.c: (discard_variables) Changed cancel_input_pgm,
9744         read_active_file references to use vfm_source.
9745         (init_variable, replace_variable) Removed references to `lv'.
9746
9747         * vfm.c: Comment fixes.
9748         (glob var vfm_source, vfm_sink, vfm_source_info, vfm_sink_info)
9749         New variables.
9750         (static var queue, qh, qt, n_lag) Removed.  All references
9751         removed.
9752         (glob var compaction_necessary, compaction_nval, compaction_case,
9753         paging) New variables.
9754         (record_case) Removed.
9755         (procedure) Comment fixes.  Calls vfm_source->read() instead of
9756         read_active_file().
9757         (lag) Removed.
9758         (prepare_for_writing, arrange_compaction, make_temp_case,
9759         vector_initialization, setup_filter) New function.
9760         (open_active_file) Most of the code moved into the abovementioned
9761         new functions.  Now sets temp_dict to &default_dict if there is no
9762         temporary dictionary, for convenience.  New debug output.
9763         (close_active_file) Deals with changing the sink to the source.
9764         Calls finish_compaction().  Frees compaction_case.  Mostly
9765         rewritten.
9766         (glob vars disk_source_file, disk_sink_file) New vars.
9767         (destroy_active_file, read_from_memory) Removed.
9768         (disk_stream_init, disk_stream_read, disk_stream_write,
9769         disk_stream_mode, disk_stream_destroy_source,
9770         disk_stream_destroy_sink) New functions.
9771         (glob var vfm_disk_stream) New var.
9772         (glob vars memory_source_cases, memory_sink_cases,
9773         memory_sink_iter, memory_sink_max_cases) New vars.
9774         (memory_stream_init, memory_stream_read, memory_stream_write,
9775         memory_stream_mode, memory_stream_destroy_source,
9776         memory_stream_destroy_sink) New functions.
9777         (glob var vfm_memory_stream) New var.
9778         (write_case) Local var `i' renamed `cur_trns'; local var `retval'
9779         named `more_cases'.  Simplified debug output.  Otherwise mostly
9780         rewritten.
9781         (record_case) Moved into the stream drivers.  Removed.
9782         (transform) Removed (was dead code).
9783         (SPLIT_FILE_procfunc) s/vfm_replacement/vfm_sink_info/.  In the
9784         common case that the splits don't change, we don't need to copy
9785         the case into prev_case again--pointless.
9786         (compact_case) New function.
9787         (finish_compaction) New function.
9788
9789         * vfmP.h: Comment fixes.
9790         (DEV_* enum series) Removed. 
9791         (struct storage) Renamed `stream_info'.  Removed variant record.
9792         Removed `device' member.
9793
9794         * debug-print.h: New file.
9795         
9796 Sun Jun  8 01:12:38 1997  Ben Pfaff  <blp@gnu.org>
9797
9798         * autorecode.c: Turned off debugging.
9799
9800         * data-list.c: (destroy_dls) Closes the associated file handle.
9801
9802         * descript.q: (custom_variables) Added PV_NO_SCRATCH to
9803         parse_variables() options.
9804
9805         * dfm.c: (open_file_r) Removed gratuituous argument to msg() call.
9806
9807         * display.c: (display_variables) Really fixed null cell bug.
9808
9809         * file-handle.q: (fh_close_handle) Changed debugging message.
9810
9811         * frequencies.q: (custom_variables) Added PV_NO_SCRATCH to
9812         parse_variables() options.
9813
9814         * list.q: Added PV_NO_SCRATCH in q2c varlist options.
9815         (cmd_list) Fails if no variables specified.
9816         (determine_layout) Writes blank lines manually.
9817
9818         * loop.c: (loop_1_trns_proc) Made debugging code only print
9819         messages if debugging.
9820
9821         * q2c.c: (dump_subcommand) Appends sbc->message to SBC_VARLIST
9822         parse_variables() arguments.
9823         (main) Parses optional parenthesized options to varlist
9824         subcommands into sbc->message.
9825
9826         * sfm-read.c: Format fix.
9827
9828         * var.h: (FV_*) New enum series.
9829         (PV_*) New enum PV_NO_SCRATCH.
9830
9831         * vars-prs.c: (find_var) Removed.
9832         (fill_all_vars) Takes FV_* enum instead of boolean third
9833         argument.  Rewritten to deal with scratch as well as system
9834         variables.
9835         (parse_variables) Error message on scratch variable if
9836         PV_NO_SCRATCH set.
9837
9838         * vfm.c: (static var virt_begin_func) New var.
9839         (procedure) Sets up virt_begin_func.
9840         (SPLIT_FILE_procfunc) For the first case, calls virt_begin_func()
9841         after dump_splits().  For succeeding groups changes, calls
9842         virt_begin_func() instead of begin_func().      
9843
9844 Fri Jun  6 22:42:23 1997  Ben Pfaff  <blp@gnu.org>
9845
9846         * count.c, data-out.c, file-handle.q, list.q, loop.c: Turned off
9847         debugging.
9848
9849         * dfm.c: Added some debugging messages, disabled by default.
9850         (open_file_r) Fixed error message.
9851         (read_record) On eof on inline_file, instead of calling
9852         fh_close_handle(), simply jump to eof label like a normal file.
9853         Message fixes.
9854
9855         * display.c: Thin lines between rows for certain kinds of
9856         listing.  Fixed `null cell' bug.
9857
9858         * error.c: (failure) Flush stdout, stderr before failing.
9859
9860         * file-handle.q: (fh_close_handle) Added debugging message.
9861
9862         * frequencies.q: (dump_full) Bottom line extends across entire
9863         table width.  Changed title formatting.
9864         (dump_condensed) Changed title formatting.
9865         (dump_statistics) Fixed title formatting.
9866
9867         * glob.c: (init_glob) Moved initialization of cur_proc out of #if.
9868         Sets default value of set_format.
9869
9870         * list.q: (cmd_list) Calls blank_line() before determine_layout().
9871         Passes write_all_headers() to procedure() as pre-group func.
9872         (write_all_headers) New function.
9873         (determine_layout) Removed calls to write_header().
9874         Calls blank_line() before and after write_fallback_headers().
9875
9876         * recode.c: (recode_trns_free) Only attempts to free head->map if
9877         non-NULL.
9878
9879         * sfm-read.c: (read_variables) Allows `#' at beginning of system
9880         file variable names but gives a warning.  Sets `left' based on
9881         first character being/not being `#'.  On lossage frees dict->var.
9882
9883         * som-high.c: (som_draw_title) Simplified title formatting.
9884
9885         * vfm.c: (dump_splits) Fixed and changed splits formatting.
9886
9887 Thu Jun  5 22:51:15 1997  Ben Pfaff  <blp@gnu.org>
9888
9889         * autorecode.c: (cmd_autorecode) Sets h_trans to NULL at
9890         beginning.  Frees v_src, v_dest on successful exit.  Frees
9891         h_trans[*], h_trans on lossage.
9892         (recode) Frees h_trans[*], h_trans.
9893
9894         * dfm.c: (dfm_close) Formatting change.
9895         (open_inline_file) Now passed a dfm_fhuser_ext to initialize; no
9896         longer allocates its own in inline_file.
9897         (open_file_r) Passes the local dfm_fhuser_ext to
9898         open_inline_file().
9899         (open_file_w) Message fix. 
9900         (read_record) Buffer reallocation strategy changed.  Frees
9901         ext->line even in inline_file to prevent leaks.
9902         (dfm_put_record) Fixed bug where `ext' was cached before the file
9903         was opened and thus it would be NULL when the file really was
9904         open.
9905         (cmd_begin_data) Sets up inline_file basics itself, then calls
9906         open_inline_file() for the dfm_fhuser_ext.  Formatting fix.
9907
9908         * list.q: (write_line) Formatting fix.
9909         (clean_up) Minor strategy change.  Sets proportional font after
9910         finishing cleanup.
9911         (determine_layout) Sets fixed font before writing regular headers,
9912         or after writing fallback headers.
9913
9914         * modify-vars.c: (cmd_modify_vars) Frees variable lists for DROP
9915         and KEEP vars after using them.
9916
9917         * postscript.c: (ps_init_driver) Frees x->family.
9918         (postopen) When loading fonts, free the temporary font name buffer
9919         after using it.
9920         (ps_text_set_font_by_position) Free temporary font name buffer
9921         after using it.
9922         (text) Fixed code that calculated `lig' so that `lig' always gets
9923         initialized.  Formatting fix.
9924
9925         * som-low.c: (get_cell_size, som_get_table_size) `prop_height' ->
9926         `font_height'.
9927         [GLOBAL_DEBUGGIGN] (check_table) Use arena_alloc() to allocate
9928         cells, not xmalloc(), so that the cells will get destroyed
9929         automatically.
9930
9931         * sysfile-info.c: (cmd_sysfile_info) Frees the dictionary after
9932         using it.
9933
9934 Tue Jun  3 23:33:22 1997  Ben Pfaff  <blp@gnu.org>
9935
9936         * ascii.c: (ascii_text_draw) Always sets metrics for strings that
9937         are drawn.
9938
9939         * dfm.c: Comment fix.
9940
9941         * list.q: Comment fixes.  Include somP.h.  Removed static vars
9942         table, n_columns, n_rows, part.  New struct list_ext.  New static
9943         var line_buf.
9944         (n_lines_remaining, n_chars_width, write_line) New functions.
9945         (cmd_list, list_cases) Rewritten.
9946         (begin_row, end_row, flush_table) Removed.
9947         (write_header, clean_up, write_varname, write_fallback_headers,
9948         determine_layout) New functions.
9949
9950         * output.c: (outp_iterate_enabled_drivers) Minor reformat.
9951
9952         * output.h: Comment fix.
9953
9954         * postscript.c: Comment fix.
9955         (struct ps_driver_ext) Removed prop_size, fixed_size members;
9956         added font_size.  All references changed.
9957         (ps_init_driver) Initializes font_size.  Simplified space checking
9958         code.
9959         (static var option_tab[]) Removed prop-size, fixed-size; added
9960         font-size.
9961         (ps_option) Handles font_size.
9962
9963         * som-high.c: Moved prototypes into somP.h.
9964         (som_init_driver) New function.
9965         (som_submit_table) Moved some code into new function
9966         som_init_driver().
9967         (build_target) Moved some code into new function
9968         som_internal_eject_page().
9969         (som_eject_page) Uses som_internal_eject_page().
9970         (som_internal_eject_page) New function.
9971
9972         * som-low.c: Moved prototypes into somP.h.
9973
9974         * som.h: Formatting fixes.
9975
9976         * somP.h: (struct som_driver_ext) Removed em_width;
9977         added prop_em_width, fixed_width.
9978
9979 Mon Jun  2 14:25:25 1997  Ben Pfaff  <blp@gnu.org>
9980
9981         * Makefile.am: Added `localedir' definition.  Added
9982         -DLOCALEDIR="..." to DEFS.  Added -I. to INCLUDES.
9983
9984         * ascii.c: (macro draw_line) Fixed capitalization.
9985
9986         * ascii.c, autorecode.c, cases.c, cmdline.c, command.c, common.c,
9987         compute.c, count.c, data-in.c, data-list.c, data-out.c,
9988         descript.q, dfm.c, display.c, do-if.c, error.c, expr-evl.c,
9989         expr-opt.c, expr-prs.c, file-handle.q, file-type.c, filename.c,
9990         formats.c, frequencies.q, get.c, getline.c, glob.c, groff-font.c,
9991         hash.c, heap.c, include.c, inpt-pgm.c, lexer.c, list.q, loop.c,
9992         main.c, mis-val.c, misc.c, modify-vars.c, numeric.c, output.c,
9993         postscript.c, print.c, q2c.c, recode.c, rename-vars.c, repeat.c,
9994         sample.c, sel-if.c, sfm-read.c, sfm-write.c, sfmP.h, som-frnt.c,
9995         som-high.c, som-low.c, sort.c, split-file.c, sysfile-info.c,
9996         temporary.c, title.c, tokens.h, val-labs.c, var-labs.c,
9997         vars-atr.c, vars-prs.c, vector.c, vfm.c, weight.c: Marked strings
9998         for internationlization.
9999
10000         * glob.c: [HAVE_LOCALE_H] Includes locale.h.
10001
10002 Sun Jun  1 23:31:18 1997  Ben Pfaff  <blp@gnu.org>
10003
10004         * do-if.c, sort.c, val-labs.c: Comment fixes.
10005
10006         * glob.c: (init_glob) Uncommented, updated i18n support.
10007         
10008         * arena.c, ascii.c, data-in.c, descript.q, error.c, expr-evl.c,
10009         expr-opt.c, expr-prs.c, filename.c, frequencies.q, groff-font.c,
10010         output.c, postscript.c, sfm-read.c, som-high.c, vars-prs.c: Made
10011         the declarations of macros taking arguments a lot nicer.
10012
10013 Sun Jun  1 17:22:04 1997  Ben Pfaff  <blp@gnu.org>
10014
10015         * error.h: Removed CE, CW aliases for SE, SW.
10016
10017         * q2c.c: Removed explicit streq() definition since it's duplicated
10018         in str.h.
10019         
10020         * approx.h, error.h, font.h, hash.h, misc.h, output.h, somP.h,
10021         stats.h, str.h, tokens.h: Made the declarations of macros taking
10022         arguments a lot nicer-looking of <pinard@iro.umontreal.ca>.
10023         Comment fixes.
10024
10025 Sun Jun  1 12:02:06 1997  Ben Pfaff  <blp@gnu.org>
10026
10027         * cmdline.c: Comment fixes.
10028         (pick_compat) Changed return type to int.  Now, instead of setting
10029         glob var `compat' to the emulation, returns the emulation.  All
10030         references changed.
10031         (parse_command_line) Added terminating null to end of
10032         `long_options' array definition.
10033         (pre_syntax_message) Fixes.
10034         (usage) Shows the default emulation in the syntax message by
10035         calling pick_compat().
10036
10037         * getline.c: (getl_add_include_dir) Separates paths with
10038         PATH_DELIMITER, not DIR_SEPARATOR.
10039
10040         * glob.c: (init_glob) Fixed references to DEFAULT_VER_PCP40,
10041         DEFAULT_VER_WIN61, DEFAULT_VER_X40.
10042
10043         * output.c: (outp_configure_macro) Make earlier definitions for a
10044         particular key override later ones for the same key.
10045         
10046 Fri May 30 19:40:49 1997  Ben Pfaff  <blp@gnu.org>
10047
10048         * ascii.c: Comment fixes.
10049
10050         * output.c: (outp_get_paper_size)
10051         s/STAT_OUTPUT_INIT_FILE/STAT_OUTPUT_PAPERSIZE_FILE/.
10052         
10053 Sun May 25 22:34:07 1997  Ben Pfaff  <blp@gnu.org>
10054
10055         * ascii.c, postscript.c, sfm-read.c, sfm-write.c, sort.c: Include
10056         <errno.h>.  GNU libc 2 enforces this!
10057
10058         * command.c: (parse_cmd) Fixed problem with `else' clause being
10059         paired with wrong `if'.  Comment fix.
10060
10061 Fri May  9 16:53:52 1997  Ben Pfaff  <blp@gnu.org>
10062
10063         * getline.c: [!HAVE_LIBREADLINE] (read_console) Changed
10064         blp_getline() to getline().
10065
10066         * output.c: (outp_eval_dimension) Changed the fix from last time;
10067         there was no variable `a'.
10068
10069         * q2c.c: (get_line) Fixed boundary condition overrun bug.
10070
10071 Mon May  5 21:58:22 1997  Ben Pfaff  <blp@gnu.org>
10072
10073         * output.c: (outp_evaluate_dimension) Fixed handling of negative
10074         numbers having fractional parts.  Added case of a fraction without
10075         a whole-number part.
10076
10077 Fri May  2 22:08:05 1997  Ben Pfaff  <blp@gnu.org>
10078
10079         * ascii.c: (ascii_text_get_font_position) Removed.
10080
10081         * expr.h, exprP.h: Disabled debugging.
10082
10083         * groff-font.c, postscript.c: Changed `groff' to `Groff' in
10084         several places.
10085
10086         * output.h: (struct outp_class_struct) Removed
10087         text_get_font_position method.  All references deleted.
10088
10089         * postscript.c: Big change here.  Fontmaps were completely
10090         eliminated because of a change in philosophy.  Comment fixes.
10091         (struct ps_fontmap, ps2dit_map, font_family, dit2family_map)
10092         Removed.
10093         (struct ps_driver_ext) `position', `fontmap', `prop_name',
10094         `fixed_name' members removed.  New members `prop_family',
10095         `fixed_family'.  `family' member changed to type char *.
10096         (static var ps_fontmaps) Removed.
10097         () Removed.
10098         (ps_init_driver) Removed obsolete references, updated.
10099         Initializes `translate_x', `translate_y', `scale'.  Doesn't read
10100         fontmap, of course.  Refers to font names through internal_name
10101         rather than subversive means.  Frees proper items.
10102         (static var option_tab[]) Removed `fontmap-file' option; renamed
10103         `fixed-font', `prop-font'.
10104         (ps_option) Corresponds to option_tab[].
10105         (read_fontmap, release_fontmap, ps_to_dit, compare_ps2dit,
10106         hash_ps2dit, compare_dit2family, hash_dit2family, compare_family,
10107         hash_family) Removed.
10108         (postopen) Generates font names from family names.  Gets
10109         PostScript font name properly.  New prologue file comment `!!!'
10110         style.
10111         (ps_open_page) Adds translate_x, translate_y to BP prologue
10112         function; gives SF argument floating-point format.
10113         (ps_text_set_font_by_name) Doesn't try to map PostScript->Groff
10114         font name.  Doesn't change font family.
10115         (ps_text_set_font_by_position) Generates Groff font name from font
10116         family name instead of through table lookup.
10117         (ps_text_set_font_by_family) Renamed `ps_text_set_font_family',
10118         all references changed.  Reduced to simple string assignment.
10119         (ps_get_font_name) Removed.
10120         (ps_get_font_family) Reduced to string return.
10121         (text) Doesn't save `position' since it no longer exists.  Ugly
10122         kluge to save font family--fix soon?
10123         (load_font) Removed PostScript name argument.
10124         
10125 Thu May  1 14:58:59 1997  Ben Pfaff  <blp@gnu.org>
10126
10127         * postscript.c: Comment fix.
10128         (ps_open_page) Puts scale factor in PostScript output.
10129         
10130 Sat Apr 26 11:49:32 1997  Ben Pfaff  <blp@gnu.org>
10131
10132         * Makefile.am: Distcleans q2c.
10133
10134 Wed Apr 23 21:33:48 1997  Ben Pfaff  <blp@gnu.org>
10135
10136         * ascii.c: (delineate) Sets text size even if width is zero.
10137
10138         * command.c: Comment fix.
10139         (static var cmd_table[]) Re-enabled EVALUATE command.
10140         (parse_cmd) Lotsa comment fixes.  Fixed infinite loop in parsing
10141         of comments in script files.  Now more liberal on criteria for
10142         performing a state transition--if *anything* happened correctly,
10143         not just if *everything* happened correctly.
10144
10145         * data-out.c: (convert_F) Comment fix.  Why in the fsck does
10146         Checker segfault on formatting large numbers and why in the fsck
10147         hadn't I noticed this before?
10148
10149         * expr.h, exprP.h: No longer turn off GLOBAL_DEBUGGING.
10150
10151         * list.q: (cmd_list) Commented out the actual output routine
10152         because of various problems.  Probably will abandon the idea of
10153         using the general `crushed tables' for the LIST procedure.
10154
10155         * temporary.c: (restore_dictionary) Sets var_by_name to NULL after
10156         clearing it.  Allocates a new var_by_name dictionary before trying
10157         to add members to it.
10158
10159         * vars-atr.c: [DEBUGGING] (dump_one_var_node) Removed argument
10160         `sib'.  Changed type of `node' argument.
10161         [DEBUGGING] (dump_var_tree) Replaced avlwalk() with
10162         avl_walk_inorder().
10163         (clear_variable) Only dumps the var tree if var_by_name non-NULL.
10164         [DEBUGGING] Only deletes the variable from var_by_name if that var
10165         non-NULL.
10166
10167 Fri Apr 18 16:48:41 1997  Ben Pfaff  <blp@gnu.org>
10168
10169         * Makefile.am: Added include files to SOURCES.  Added
10170         frequencies.q to EXTRA_DIST.  Removed include/ from INCLUDES.  Now
10171         includes rules for q2c.  Added `boast' target.
10172
10173 Fri Apr 18 15:42:22 1997  Ben Pfaff  <blp@gnu.org>
10174
10175         * Makefile.am: Maintainer-clean Makefile.in.
10176         
10177         * Makefile.am: Fixed redundant EXTRA_DIST line.
10178
10179         * ascii.c: Comment fixes.
10180         (ascii_line_vert) Fixed overly aggressive range check.
10181
10182         * display.c: Removed dead code.
10183
10184         * list.q: Turn debugging on.
10185         (flush_table) New debug code.
10186
10187         * sfm-read.c: (read_value_labels) malloc's the structure before
10188         trying to assign to its members.
10189
10190         * sfm-write.c: Comment fix.
10191
10192         * som-high.c: (som_submit_table) Sets som.t and som.d on each call
10193         to output_table().
10194         (output_table) No arguments anymore--gets them through `som'
10195         global.  New debug code.  In crushed tables, now sets `htv' as
10196         well as `hv' to avoid bad confusion later.
10197         (dump_crush_page) New debug code.
10198
10199         * som-low.c: (som_dump_crush_page) New debug code.
10200
10201 Thu Mar 27 01:11:29 1997  Ben Pfaff  <blp@gnu.org>
10202
10203         All source files: Broke long lines into multiple lines.
10204         
10205         * ascii.c: (ascii_close_page) Uses host_system var in place of
10206         HOST_SYSTEM constant.
10207
10208         * cmdline.c: (var syntax_message[]) Broke into
10209         pre_syntax_message[] and post_syntax_message[].
10210         (usage) Outputs both parts, separated by driver list.
10211
10212         * error.h: Fixed broken formatting.
10213
10214         * expr-opt.c: (str_search, str_rsearch) New functions.
10215
10216         * misc.c: (blp_getdelim) Removed.  All references changed to
10217         `getdelim'.
10218         (str_search, str_rsearch) Removed.
10219         (memrmem) New function.
10220
10221         * misc.h: (blp_getline) Removed.  All reference changed to
10222         `getline'.
10223
10224         * stat.h: New file.
10225
10226         * filename.c: Includes "stat.h", not <sys/stat.h>.
10227         (blp_getenv) Uses host_system var instead of HOST_SYSTEM constant.
10228
10229         * output.c: (outp_list_classes) Changed output formatting.
10230
10231         * sfm-write.c: (write_header) Uses host_system var instead of
10232         HOST_SYSTEM constant.
10233         (write_rec_7_34) Extracts version numbers from the version string.
10234         Untested.
10235
10236         * sort.c: Includes "stat.h", not <sys/stat.h>.
10237
10238         * str.c: (strcasecmp) Removed.
10239
10240         * title.c: (cmd_document) Uses host_system var instead of
10241         HOST_SYSTEM constant.
10242
10243         * version.c: Generated on-the-fly by the Makefile instead of being
10244         static.
10245
10246         * str.h: Comment fixes.  Doesn't substitute for missing memmove or
10247         memcpy.
10248         [!HAVE_STRNCASECMP] Declares strncasecmp().
10249
10250         * version.h: Removed stray character.  Comment fixes.
10251         (vars host_system, build_system) New vars.
10252
10253 Mon Mar 24 21:47:31 1997  Ben Pfaff  <blp@gnu.org>
10254
10255         * Most source files: Changed formatting of copyright notice; fixed
10256         FSF address; reformatted to better conform to GNU standards;
10257         comment fixes.  Added markups to prevent GNU indent from messing
10258         up my beautiful formatting :-).
10259         
10260         * q2c.c: (get_line) Ignores lines that begin with `/* *INDENT' so
10261         that GNU indent markups can be passed through without problems.
10262
10263 Wed Feb 19 21:30:31 1997  Ben Pfaff  <blp@gnu.org>
10264
10265         * get.c: Turned off debugging.
10266
10267         * glob.c: (init_glob) Turned on save-file compression by default.
10268
10269         * sfm-write.c: (sfm_write_case) Fixed bug which resulted in less
10270         compression than was possible in save files.
10271
10272 Sun Feb 16 20:57:20 1997  Ben Pfaff  <blp@gnu.org>
10273
10274         * data-out.c: (convert_F) Comment fixes.  Debug message fixes.
10275
10276         * frequencies.q: Removed Fiasco extensions.  Updated calculation
10277         algorithms.  Polished output format. 
10278         (struct frq_info_struct) Removed members `max_degree', `min_n',
10279         all references removed.
10280         (macro frq_extensions) Removed.
10281         (static vars min_n, max_degree) Removed, all references removed.
10282         (internal_cmd_frequencies) Doesn't handle extensions.  Doesn't
10283         calculate `min_n', `max_degree'.
10284         (postcalc) Passes new arg to dump_statistics().
10285         (dump_full) Honor NOLABEL option.  Buggy?  Adds variable name
10286         title.
10287         (dump_condensed) Adds variable name title.
10288         (sum_freqs) Removed.
10289         (calc_stats) Updated calculation algorithm.
10290         (dump_statistics) Removed warning for too-few observations.
10291         Changed table formatting.  Adds variable name title if passed new
10292         arg is nonzero.
10293
10294         * output.h: Comment fix.
10295
10296         * recode.c, sample.c, sort.c: Disabled debug code.
10297
10298         * som-frnt.c: (som_set_value, som_set_float, som_set_text)
10299         Improved debug code.
10300
10301         * var.h: (enum series frq_*) Removed Fiasco extensions.
10302
10303 Sat Feb 15 21:26:53 1997  Ben Pfaff  <blp@gnu.org>
10304
10305         * command.c: Added PROCESS IF to command table.
10306
10307         * Lots & lots of places, removed checks for NULLs preceding calls
10308         to free_expression(), which itself checks.
10309
10310         * descript.q: Removed Fiasco extensions.  Removed optimizations
10311         for non-weighted active files.  Implemented some options.
10312         Finished polishing output format.  Comment fixes.  Merged
10313         `descript.g'.
10314         (static vars n_glob_miss_list, n_glob_valid, n_glob_missing,
10315         max_degree, min_n) Removed.
10316         (macro dsc_extensions) Removed.
10317         (struct dsc_info_struct) Removed `min_n' member, all references
10318         fixed.
10319         (internal_cmd_descriptives) Removed calculation of min_n,
10320         max_degree.  Only deals with one `calc' routine instead of two
10321         flavors.
10322         (precalc) Eliminated redundancy.  Updated for changes to
10323         descriptives_proc structure.
10324         (calc) Moved here from `descript.g'.  Rewritten to calculate
10325         statistics via `moments about the mean' rather than by summing,
10326         summing squares, summing cubes, and so on.
10327         (postcalc) Rewritten for new-style statistical calculation.
10328         (display) Removed support for displaying variables across rows.
10329         No longer crushes the descriptives table.  Removed ancient code.
10330         Added display of N, by variable and listwise.
10331
10332         * descript.g: Removed; merged into `descript.q'.
10333
10334         * expr-evl.c: (evaluate_expression) Now returns a double.  For
10335         numeric results, it returns the result as well as storing it in
10336         the passed `value' structure if non-NULL.  For string results it
10337         just returns 0.0 and it must be passed non-NULL.  Many references
10338         to this function were optimized by use of this change, especially
10339         but not exclusively in `compute.c'.
10340
10341         * frequencies.g: Comment fix.
10342
10343         * glob.c: (glob var process_if_expr) New global var.
10344
10345         * postscript.c: (static var option_tab[]) Corrected entry for
10346         `fixed_size'.
10347         (postopen) Sets x->size to x->prop_size.
10348         (ps_text_set_font_by_name) Sets font size as well as typeface for
10349         PROP and FIXED fonts.
10350         
10351         * sel-if.c: (cmd_process_if) New function.
10352
10353         * sfm-write.c: (struct sfm_fhuser_ext) New member `n_cases'.
10354         (sfm_write_dictionary) Sets `n_cases' to 0.
10355         (sfm_write_case) Increments `n_cases'.
10356         (sfm_close) Attempts to seek the system file back to the header
10357         and write the number of cases in its proper slot.
10358
10359         * som-frnt.c: (som_insert_table) Masks off expansion options since
10360         only SOPT_X_NORM seems to work sensibly.
10361
10362         * som-low.c: (get_cell_size) Fixed bug when a table cell was sized
10363         with a `fixed' value of 2.
10364
10365         * sort.c: (cmd_sort_cases) Cancels PROCESS IF.
10366
10367         * sysfile-info.c: (cmd_sysfile_info) Doesn't display more than 10
10368         value labels; uses SOPT_NONE instead of SOPT_X_BOTH.
10369
10370         * var.h: (enum series dsc_*) Removed Fiasco extensions.
10371         (struct descriptives_proc) Removed `miss_noweight'; new members
10372         `X_bar', `M2', `M3', `M4', `min', `max'.
10373
10374         * vars-atr.c: (discard_variables) Cancels PROCESS IF.
10375
10376         * vfm.c: (close_active_file) Cancels PROCESS IF.
10377         (write_case) Doesn't process cases unselected by PROCESS IF.
10378
10379 Fri Feb 14 23:32:58 1997  Ben Pfaff  <blp@gnu.org>
10380
10381         * glob.c: (glob var err) Removed.
10382
10383         * sysfile-info.c: (cmd_sysfile_info) When adjusting table size,
10384         doesn't have to take into account number of value labels since
10385         they're in a subtable anyway.  Also, doesn't display more than 10
10386         value labels since we can't yet break pages in subtables.
10387
10388 Tue Feb  4 15:15:50 1997  Ben Pfaff  <blp@gnu.org>
10389
10390         * som-frnt.c: (som_change_table_size) Simple change for elegance
10391         that shouldn't change behavior.
10392         (som_set_value) Comment fix.
10393
10394         * som-high.c: (som_submit_table) Message fix.
10395
10396 Wed Jan 22 21:54:00 1997  Ben Pfaff  <blp@gnu.org>
10397
10398         * command.c: Added SYSFILE INFO to command table.
10399
10400         * file-handle.q: (fh_handle_filename) New function.
10401
10402         * get.c: (save_trns_proc) Fixed a bug in padding of output data
10403         with spaces.
10404
10405         * main.c: (parse) New return value for command functions, -3.
10406
10407         * misc.h: Comment fix.
10408
10409         * output.h: Comment fixes.
10410         (macro COMPONENTS) Removed.
10411
10412         * postscript.c: (write_text) Modified literal_chars[] so that `('
10413         and ')' are not written to the output in strings as literals.
10414
10415         * sfm-read.c: (sfm_read_dictionary) New argument.
10416         (read_header) New argument.  Sets the information structure's
10417         values from the header information.  
10418         (read_variables) [__CHECKER__] Redefines isalnum()--some sort of
10419         bizarre Checker problem, I guess.
10420         (read_variables) Proper cleanup on lossage.
10421
10422         * sfm.h: (struct sfm_read_info) New struct for use by
10423         sfm_read_dictionary().
10424
10425         * som-frnt.c: (som_create_table) New argument CREATE_FLAGS,
10426         currently used just for tables that can be dynamically resized and
10427         thus have to be allocated with arena_malloc() instead of
10428         arena_alloc().  All references changed.
10429         (som_change_table_size) New function.
10430         (som_insert_table) Bugfix: now inserts `cell', not `c'!
10431
10432         * som-high.c: [GLOBAL_DEBUGGING] (check_table) Moved to som-low.c.
10433         (som_submit_table) [GLOBAL_DEBUGGING] Doesn't call check_table()
10434         any more.
10435
10436         * som-low.c: (draw_cell) Calls draw_table_cell() for SCON_TABLE
10437         cells.
10438         (draw_intersection) Now takes an argument specifying the table in
10439         question.  All references changed.
10440         (draw_table_cell) New function.
10441         (som_get_table_size) [GLOBAL_DEBUGGING] Calls check_table().
10442         (som_get_table_size) Many nice new explanatory comments.
10443         [GLOBAL_DEBUGGING] (check_table) Moved here from som-high.c.
10444
10445         * som.h: New enum series SOM_CREATE_* for use as create flags with
10446         som_create_table().
10447
10448         * str.h: Moved a comment here from TODO.
10449
10450         * sysfile-info.c: New file.  Reference implementation.
10451
10452 Sun Jan 19 14:22:11 1997  Ben Pfaff  <blp@gnu.org>
10453
10454         * command.c: Added RENAME VARIABLES to table of commands.
10455
10456         * data-in.c: (dls_error) Sets `cust_field'.
10457         (parse_N) Message fix.
10458         (parse_day_count) New function.
10459         (to_roman) Never outputs VX as a `short form' of V.
10460         (parse_month) Fixed parsing of Roman numerals.
10461         (parse_trailer) Message fix.
10462         (parse_DATE, parse_ADATE, parse_EDATE, parse_SDATE, parse_JDATE,
10463         parse_QYR, parse_MOYR, parse_WKYR, parse_DTIME) Issue a message if
10464         the date is invalid.
10465         (parse_SDATE) Fixed swapped day, year.
10466         (parse_JDATE) Fixed bug for dates in 1582.
10467         (parse_DTIME) Allows days not between 1 and 31.
10468         (parse_numeric) Makes local copy of f.type for easier usage.
10469         FMT_DOLLAR fixed.
10470
10471         * data-out.c: (convert_F) When outputting as scientific, properly
10472         sets f.type as fp->type.
10473         (insert_commas) Fixed operator precedence problem with setting of
10474         nitems.  Changed strcpy to memcpy (no null terminator). 
10475         (convert_date) Fixed FMT_JDATE: added 1900 to year.
10476         (convert_CCx) Essentially rewritten, but now it works.
10477
10478         * display.c: (cmd_display) Added DISPLAY FILE LABEL (undocumented
10479         feature of Fiasco).
10480         (display_documents) Implemented.
10481
10482         * error.c: (glob var cust_field) New var.
10483         (vmsg) Displays cust_field as part of message classes DE and DW.
10484
10485         * formats.c: (debug_print) Fixed to compile under updated
10486         dictionary format.
10487
10488         * get.c: (cmd_get, cmd_save_internal) Close file handle on
10489         failure.
10490
10491         * misc.c: (parse_format_specifier) Formatting fix.
10492
10493         * modify-vars.c: (struct var_modification) Renamed `n_reorder' as
10494         `n_rename' for clarity.
10495         (cmd_modify_vars) Initializes `forward' and `positional' at
10496         appropriate times.  Frees lists of vars to rename on failure.
10497         Comment fix.  Frees memory on success.  
10498         (rearrange_dict) Simplified `for' loop condition.
10499
10500         * rename-vars.c: New file (reference implementation).
10501         
10502         * set.q: (internal_cmd_set) Fixed `emu' test condition.
10503
10504         * sfm-read.c: (read_header) File label is created only if file
10505         label in file is not blank.
10506         (read_variables) Initializes `dict' local variable.
10507         (read_documents) Proper behavior on lossage.
10508
10509         * sfm-write.c: (write_header) Doesn't blank out the file label
10510         (why was this here to begin with?!)
10511
10512         * temporary.c: (save_dictionary) File label is copied only if
10513         non-NULL.  Doesn't try to xstrdup() dictionary documents.
10514         Adapted so as to not irritate Checker.
10515         (free_dictionary) Only destroys var_by_name if non-NULL.
10516
10517         * title.c: (cmd_file_label) Doesn't skip FILE, LABEL tokens.
10518         (cmd_document) Doesn't skip DOCUMENT token.  Adds some header
10519         lines to the document, indents the document.  Also, it works now.
10520         (add_document_line) New function.
10521
10522         * var.h: (struct dictionary) Reordering.
10523
10524         * vars-prs.c: (parse_variables) On lossage, only local_free()'s
10525         bits if it was allocated to begin with.
10526
10527 Thu Jan 16 13:08:57 1997  Ben Pfaff  <blp@gnu.org>
10528
10529         * command.c: Added MODIFY VARS to list of commands.
10530
10531         * configure.in: Updated custom macros for autoconf 2.12.  Removed
10532         mmap reference; fixed termcap library reference.
10533
10534         * display.c: (display_variables) Fixed a few bugs although it's
10535         still not well written.
10536
10537         * error.c: [!__CHECKER__] (chkr_disp_call_chain) New function.
10538         (induce_segfault) Calls chkr_disp_call_chain() instead of
10539         inducing an actual SIGSEGV.
10540
10541         * expr-opt.c: (evaluate_tree) Swapped order of arguments to
10542         str_search() and str_rsearch().  Fixed tests for matches on
10543         OP_INDEX and OP_RINDEX.
10544
10545         * filename.c: (good_getcwd) Removed as the new libc for Checker
10546         doesn't contain this bug, apparently.
10547
10548         * misc.c: (str_search, str_rsearch) Changed order of arguments for
10549         consistency with GNU memmem.
10550         (blp_getdelim) Changed `len' from `int' to `size_t'.
10551
10552         * modify-vars.c: Reference implementation.
10553
10554         * som-frnt.c: (zero_length) New global var.
10555         (som_create_table) Message fix.
10556
10557         * som.h: Added gcc attributions to som_set_text(),
10558         som_output_text() prototypes.  blank_line() refers to
10559         zero_length[] instead of a literal null string to suppress gcc
10560         warnings.
10561
10562         * sort.c: (do_external_sort) Fixed fencepost error on lossage.
10563         (allocate_cases) Decrements x_max so the last element of x[] can
10564         be used by the algorithm.
10565
10566         * var.h: Changed minor details of `variable' declaration.  
10567         (struct modify_vars_proc) New struct.
10568         (struct variable) Added field p.mfv.
10569
10570         * vars-atr.c: Comment fix.
10571
10572         * vars-prs.c: (fill_all_vars) More optimal implementation.
10573
10574         * vfm.c: (dump_splits) Sets the last byte of temp_buf to a null
10575         character, which it shouldn't have to do but printf() seems to
10576         read the null byte even though I supply a maximum length...
10577
10578 Fri Jan 10 20:22:08 1997  Ben Pfaff  <blp@gnu.org>
10579
10580         * command.c: Removed command alias X for QUIT.
10581         (parse_cmd) Fixed comment parsing.
10582
10583         * dfm.c: (struct dfm_fhuser_ext) Fields `len', `size' are now of
10584         type size_t.
10585         (read_record) Fixed references to len, size.
10586         (dfm_get_record) Restructured.
10587
10588         * file-handle.h: (struct file_handle) Field `lrecl' now of type
10589         size_t.
10590
10591         * file-handle.q: (internal_cmd_file_handle) Checks for nonpositive
10592         record length.
10593
10594         * modify-vars.c: New file.  Not complete.
10595         
10596         * set.q: (set_ccx) Fixed operator precedence problem regarding ^
10597         and ==.
10598
10599         * sfm-read.c: (bswap_flt64, read_header, write_variable) Fixed
10600         problems caused by int/size_t differences.
10601
10602         * sort.c: (output_record, merge_once) Cast `size_t's to `int's in
10603         appropriate spots.
10604
10605         * str.c: (strcasecmp) Fixed bug that cropped up when the strings
10606         being compared were of equal length.
10607
10608 Thu Jan  2 19:08:23 1997  Ben Pfaff  <blp@gnu.org>
10609
10610         * command.c: Added DOCUMENT, DROP DOCUMENTS, FILE LABEL.
10611
10612         * lexer.c: (get_dotted_rest_of_line) New function.
10613
10614         * sel-if.c: (cmd_filter) Cannot choose string or scratch variables
10615         as filters.
10616
10617         * sfm-read.c: (sfm_read_dictionary) Calls read_documents() to read
10618         type 6 records.  Frees the dictionary properly.
10619         (read_header) Initializes the dictionary instead of letting
10620         read_variables() do it.  Sets the dictionary file label from the
10621         system file.
10622         (read_documents) New function.
10623
10624         * sfm-write.c: (sfm_write_dictionary) Calls write_documents() to
10625         write type 6 record if appropriate.
10626         (write_header) Writes file label from dictionary.
10627         (write_documents) New function.
10628
10629         * temporary.c: (save_dictionary, restore_dictionary,
10630         free_dictionary) Properly handle new fields in dictionary struct.
10631
10632         * title.c: (get_title) Returns after failure().
10633         (cmd_file_label, cmd_document, cmd_drop_documents) New functions
10634         for new commands FILE LABEL, DOCUMENT, DROP DOCUMENTS.  Untested.
10635
10636         * var.h: (struct dictionary) New fields `label', `n_documents',
10637         `documents'.
10638
10639 Wed Jan  1 22:08:10 1997  Ben Pfaff  <blp@gnu.org>
10640
10641         * command.c: Added FILTER to list of commands.
10642
10643         * frequencies.g: [WEIGHTING] Removed test for weighting!=-1 since
10644         it's always true.
10645
10646         * get.c: (cmd_save_internal) Removed weighting code since it's now
10647         handled by sfm-write.c.  Properly commented out debug code.
10648
10649         * glob.c: (glob var weighting) Removed.
10650
10651         * sel-if.c: Comment fixes.
10652         (cmd_filter) New function.
10653
10654         * sfm-read.c: (struct sfm_fhuser_ext) New field `weight_index'.
10655         (sfm_read_dictionary) Sets weighting variable direct in the
10656         created dictionary now.  (Apparently we previously didn't support
10657         weighting on GET?)
10658         (read_header) Sets weight_index field in sfm_fhuser_ext from
10659         header read from disk.
10660
10661         * sfm-write.c: (sfm_write_dictionary) Comment fix.
10662         (write_header) Now sets the weighting in the header from the
10663         passed primary dictionary instead of from the sfm_write_info.
10664
10665         * sfm.h: (struct sfm_write_info) Removed field `weight'.
10666
10667         * som-high.c: (dump_crush_table) Fixed a couple of assertions that
10668         broke on boundary conditions.
10669
10670         * var.h: (struct dictionary) New fields `weight_var',
10671         `weight_index', and `filter_var'.
10672         (glob var weighting) Removed.  This is now part of struct
10673         dictionary.  All references changed; the less mechanical changes
10674         are described above.
10675
10676         * vars-atr.c: (find_dict_variable) New function.
10677
10678         * vfm.c: (static var filter_index) New variable.
10679         (open_active_file) Initializes filter_index from default_dict.
10680         (write_case) Calls proc_func() only if the filter variable is
10681         nonzero; this implements FILTER behavior.
10682
10683         * weight.c: (static var weight_varname) Removed.
10684         (cmd_weight) Modified default_dict instead of glob vars.
10685         (update_weighting) Changed the signature to modify a dictionary
10686         instead of glob vars.  Now returns the weighting variable.
10687         (get_weighting_variable) Removed; its function is absorbed by
10688         update_weighting().
10689         (stop_weighting) Operates on a dictionary now.
10690
10691 Wed Jan  1 17:00:59 1997  Ben Pfaff  <blp@gnu.org>
10692
10693         * sort.c: Removed debugging info from messages.
10694         (do_external_sort) Cleans up after itself by deleting the
10695         temporary directory on failure.  (On success it is deleted by the
10696         input program.)
10697         (allocate_cases) Removed debug code.  Added clean up code.
10698         (output_record) Removed debug code.
10699         (merge) Added code to close all the input files that are currently
10700         open.  This is a likely location for bugs, because I'm not sure
10701         about boundary conditions.  Removed an unnecesary heap_delete().
10702         (merge_once) Removed input file "optimization" that in fact
10703         screwed up the rest of the code.  Message and comment fixes.
10704
10705 Sun Dec 29 21:36:48 1996  Ben Pfaff  <blp@gnu.org>
10706
10707         * error.c: [__CHECKER__] (induce_segfault) Flushes output streams.
10708
10709         * heap.c: (heap_delete) New argument.
10710
10711         * sort.c: Finished implementation of external sort.
10712
10713         * vfm.c: (read_from_disk) Returns after a disk error.
10714
10715 Sun Dec 22 23:10:39 1996  Ben Pfaff  <blp@gnu.org>
10716
10717         * sort.c: (static var state) Removed.
10718         (static vars max_handles, tmp_basename, tmp_extname,
10719         huffman_queue) New variables.
10720         (do_external_sort) Moved most code to new functions.
10721         Creates huffman_queue.
10722         (allocate_file_handles, allocate_cases) New functions.
10723         (static vars run_no, run_length, file_index, case_count) New
10724         variables. 
10725         (output_record) Returns success.  Now really writes to the output
10726         file.
10727         (begin_run, end_run) New functions.
10728         (write_initial_runs) Returns success.  Initializes run_no to -1.
10729         Calls begin_run(), end_run() at appropriate times.  Outputs debug
10730         messages.
10731         (write_to_sort_cases) Calls begin_run(), end_run() at appropriate
10732         times.
10733         (merge) New function.
10734
10735         * heap.c, heap.h: New files.  Hopefully in near-final form.
10736
10737 Sat Dec 21 21:51:04 1996  Ben Pfaff  <blp@gnu.org>
10738
10739         * glob.c: Added write_active_file to global vars.
10740
10741         * sort.c: Several new miscellaneous static variables.
10742         (cmd_sort_cases) Big comment fix.
10743         (perform_case_2) Renamed `do_external_sort' and completely
10744         rewritten.
10745         (case_2_proc_func) Removed.
10746         (output_record, write_initial_runs, write_to_sort_cases,
10747         compare_record) New functions.
10748
10749         * vfm.c: [DEBUGGING] (index_to_varname) Excised bit rot.
10750
10751 Tue Dec 17 18:57:59 1996  Ben Pfaff  <blp@gnu.org>
10752
10753         * sort.c: (perform_case_2) Changed the method for allocation of
10754         lots of memory--now allocates one case at a time in hopes that
10755         more cases can be allocated with heavily fragmented memory.
10756
10757         * var.h: (write_active_file) New global var.
10758
10759         * vfm.c: (procedure, close_active_file, write_case,
10760         SPLIT_FILE_procfunc) Now allow beginfunc, procfunc, and endfunc
10761         arguments to procedure() to be NULL.  All references to
10762         procedure() that made use of dummy functions were changed to NULL
10763         functions.
10764         (open_active_file) If write_active_file is non-NULL, the output
10765         device becomes DEV_PGM (a new enum).
10766         (close_active_file) Sets write_active_file to NULL.
10767         (read_from_memory) Comment fix.
10768         (record_case) Calls write_active_file() when the output device is
10769         DEV_PGM.
10770
10771 Sun Dec 15 15:32:16 1996  Ben Pfaff  <blp@gnu.org>
10772
10773         * sort.c: New file.
10774
10775         * autorecode.c: (cmd_autorecode) Fixed parsing of options.
10776         Fixed checking for duplicate varnames.
10777         (recode) xmalloc()'s the transformation instead of arena_alloc()'ing
10778         it.
10779         (autorecode_trns_free) Destroys hash tables for each recoding
10780         specification.
10781         (autorecode_proc_func) Compares NULL to *vpp instead of vpp.
10782
10783         * command.c: Added SORT CASES to cmd_table.
10784         (null_func, null_int_func) Prototyped.
10785
10786         * descript.g: (calc_weight, calc_noweight) Computes own case
10787         number now.
10788         
10789         * frequencies.q: (dump_statistics) Fixed problem with
10790         too-few-cases warning message.
10791
10792         * get.c: (cmd_save_internal) Handles weighting properly.
10793
10794         * hash.c: (hsh_dump) Output format changed.
10795         (force_hsh_insert) Actually works now, prototype changed.
10796
10797         * list.q: (static var case_num) New variable.
10798         (cmd_list) Initializes case_num.
10799         (list_cases) Increments case_num.
10800
10801         * var.h: Added definitions for SORT CASES.  Comment fixes.
10802
10803         * vfm.c: Some definitions moved to new file vfmP.h.  Comment
10804         fixes.  `active' renamed vfm_active, `rep' renamed
10805         vfm_replacement, all references changed.
10806         (procedure) The procfunc no longer receives a case number.  All
10807         references changed.
10808         (write_case) Subtle reordering.
10809         (SPLIT_FILE_procfunc) Counts cases differently.  Slightly less
10810         redundant.
10811
10812         * weight.c: (get_weighting_variable) New function.
10813
10814         * vfmP.h: New file with definitions from vfm.c.
10815
10816 Sat Dec 14 10:35:30 1996  Ben Pfaff  <blp@gnu.org>
10817
10818         * command.c: (FILE_TYPE_okay) Commented out some tests because
10819         they're clumsy and not yet needed.
10820
10821         * var.h: Most *_trns structures moved to their respective source
10822         files.  Some were moved into a new file, do-ifP.h.  Comment fixes.
10823         (union any_trns) Changed to a typedef for trns_header.
10824         (struct input_program_pgm) Removed.
10825
10826         * vars-prs.c: (parse_variables) Only local_free()'s bits if it
10827         was allocated in the first place.
10828
10829 Fri Dec 13 21:30:53 1996  Ben Pfaff  <blp@gnu.org>
10830
10831         * autorecode.c: New file.
10832         
10833         * command.c: Added AUTORECODE to command table; re-enabled SET.
10834
10835         * data-out.c: (convert_F) Handles infinities and NaNs properly.
10836
10837         * error.c: (vmsg) Comment fixes.
10838
10839         * hash.c: Comment fix.
10840         (hashpjw_d) New function.
10841         (hashpjw) Reimplemented as call to more general function
10842         hashpjw_d().
10843         (internal_comparison_fn) Initializes pointers properly.
10844         (hsh_sort) [GLOBAL_DEBUGGING] New debugging code.
10845         (force_hsh_insert, force_hsh_find) New debugging wrapper
10846         functions.
10847
10848         * main.c: (main) Message fix.
10849
10850         * output.c: (outp_read_devices) Message fix.
10851
10852         * set.q: Comment fixes.
10853         (custom_results) Implemented Wnd/X form of subcommand.
10854         (set_routing) New function.
10855         (internal_cmd_set) Implemented ERRORS, MESSAGES.
10856
10857         * settings.h: (SET_ROUTE_*) New enum series.
10858         (set_results) Renamed set_results_file, all references changed.
10859         (set_messages) Removed.
10860         (glob vars set_errors, set_messages, set_results) New vars.
10861
10862         * title.c: (get_title) Remembers to xstrdup() the result of
10863         get_rest_of_line().
10864
10865         * var.h: (arc_item, arc_spec, autorecode_trns) New structures for
10866         use by AUTORECODE.
10867         (union any_trns) New element `arc'.
10868
10869 Fri Dec  6 23:53:47 1996  Ben Pfaff  <blp@gnu.org>
10870
10871         * command.c: (output_line) Removed references to set_screen.
10872
10873         * error.c: (static var terminating) New var.
10874         (hcf) Sets terminating to 1.
10875         (vmsg) If terminating is nonzero, does not attempt to call hcf().
10876         This prevents an infinite loop if an error occurs within hcf().
10877
10878         * expr-evl.c: (evaluate_expression) [__CHECKER__] Replaced case
10879         statement circumlocution with `case 42000' trick.
10880         (evaluate_expression) New support for OP_STR_MIS.
10881
10882         * expr-opt.c: (evaluate_expression) [__CHECKER__] Replaced case
10883         statement circumlocution with `case 42000' trick.
10884         (dump_node) Handles OP_STR_MIS.
10885
10886         * expr-prs.c: (MISSING_func, SYSMIS_func) Rewrote to handle string
10887         variables exceptions.
10888         (parse_function) Message fix.
10889         (ops[]) Added OP_STR_MIS.
10890
10891         * expr.h: Added OP_STR_MIS to OP_* enum.  Comment fixes.
10892
10893         * exprP.h: [__CHECKER__] Removed case statement circumlocution.
10894
10895         * glob.c: Removed set_scrnfile glob var.
10896         (init_glob) set_errorbreak set to 0 by default.
10897
10898         * groff-font.c: Changed included files.
10899         (groff_read_font) Initializes font_arena local var correctly.
10900         (default_font) New function.
10901
10902         * output.c: Comment fixes.
10903         (glob var disabled_devices) New variable.
10904         [GLOBAL_DEBUGGING] (static var iterating_driver_list) New
10905         variable.
10906         [GLOBAL_DEBUGGING] (reentrancy) New function.
10907         [GLOBAL_DEBUGGING] (outp_read_devices, outp_done, find_driver,
10908         outp_iterate_enabled_drivers) Calls to reentrancy().
10909         (destroy_list) New function.
10910         (outp_done) Moved code to destroy_list().
10911         (parse_options) Parses `listing', `screen', `printer' options
10912         internally.
10913         (configure_driver) Sets new `device' member of driver.
10914         (outp_iterate_enabled_drivers, outp_enable_device) New functions.
10915
10916         * output.h: Comment fixes.  New enum series OUTP_DEV_*.
10917         (struct outp_driver_struct) New member `device'.
10918
10919         * postscript.c: (find_encoding_file) Doesn't display its own error
10920         messages.
10921         (default_encoding) New function.
10922         (switch_font) Calls default_encoding() if no encoding can be
10923         found.
10924         (text) Makes up a character metric if none exists for the desired
10925         character.
10926         (load_font) Properly copies a fallback filename.  Calls
10927         default_font() for a font if none at all are known.
10928
10929         * set.q: Comment fixes.  Removed OUTPUT subcommand.
10930         (custom_listing) Calls outp_enable_device() to enable/disable
10931         listing device.
10932         (turn_screen_on) Removed.
10933         (internal_cmd_set) Calls outp_enable_device() to enable/disable
10934         screen, printer devices.
10935
10936         * settings.h: Comment fixes.
10937         (glob vars set_output, set_printer, set_screen, set_scrnfile)
10938         Removed.
10939
10940         * som-high.c: (som_submit_table, som_eject_page) Use
10941         outp_iterate_enabled_drivers() instead of iterating
10942         outp_driver_list directly.
10943
10944 Wed Dec  4 21:34:17 1996  Ben Pfaff  <blp@gnu.org>
10945
10946         * data-in.c: (parse_EDATE, parse_SDATE) New functions.
10947         (parse_string_as_format) Handles new formats.
10948         (parse_numeric) Now handles DOT and PCT formats.
10949
10950         * data-out.c: (convert_E, convert_F, insert_commas) Handle DOT
10951         format now.
10952         (convert_date) Handle EDATE and SDATE formats.
10953         (convert_CCx) Now if there's not room for the currency characters,
10954         converts it as F format if it's positive instead of giving up
10955         quickly.  Also fixed save-and-restore bug with decimal point
10956         characters.  
10957         (convert_format_to_string) Handles new formats.
10958
10959         * misc.c: (formats[]) Added new formats.
10960         (convert_fmt_ItoO) Supports new formats.
10961
10962         * sfm-read.c: (parse_format_spec) Supports new formats.  Better
10963         data checking.  New argument, all references changed.
10964
10965         * sfm-write.c: (write_format_spec) Supports new formats.
10966
10967         * var.h: New formats FMT_DOT, FMT_PCT, FMT_EDATE, FMT_SDATE.
10968         Comment fixes.
10969
10970 Sun Dec  1 17:19:00 1996  Ben Pfaff  <blp@gnu.org>
10971
10972         * cmdline.c: Comment fixes.
10973         (parse_command_line) Changed return type to void.
10974
10975         * data-in.c: (parse_string_as_format) Added FMT_CCA...FMT_CCE to
10976         switch.
10977         (parse_numeric) Handles international numbers (comma as decimal
10978         point).  Some reformatting.
10979
10980         * data-list.c: (parse_free) Default output format is now
10981         set_format instead of hard-coded F8.2.
10982         (read_from_data_list_list) Emits error message on undefined data
10983         only if set_undefined is nonzero.
10984
10985         * data-out.c: (convert_E) Changes decimal point from period to
10986         comma if appropriate.  Restructured.  Better comments.
10987         (convert_F) Changes decimal point from period to comma if
10988         appropriate.
10989         (insert_commas) Major bug with handling of negative values fixed.
10990         Also, inserts periods instead of commas if appropriate.
10991         (convert_CCx) New function.
10992         (convert_format_to_string) Added FMT_CCA...FMT_CCE to switch.
10993         (num_to_string) Changed `.' to set_decimal.
10994
10995         * dfm.c: Comment fixes.
10996         (dfm_close) Frees ext->line even in inline_file.
10997         (open_inline_file) New function.
10998         (open_file_r) When opening the inline file: now properly
10999         recognizes `BEGIN DATA.' line, and calls open_inline_file() to
11000         finish up.
11001         (read_record) Calls fh_close_handle() instead of dfm_close() to
11002         close the inline file.  Makes a copy of the line getl_buf to avoid
11003         interlock problems.
11004         (dfm_get_record) Restructured.  Now checks the return value of
11005         open_file_r().
11006         (cmd_begin_data) Moved open code into open_inline_file().  Relaxed
11007         checking for use of inline file.  No longer tries to close inline
11008         file.
11009
11010         * error.c: (glob var error_already_flagged) New var.
11011         (vmsg) Message change.  Now checks max number of errors/warnings,
11012         acts on it.
11013
11014         * file-handle.q: (fh_handle_name) Now allows closing of
11015         inline_file.
11016         (fh_init_files) Reformatted.
11017
11018         * get.c: (trim_dictionary) Checks SCOMP option instead of COMP.
11019
11020         * getline.c: (getl_include) Fixed bug that popped up when called
11021         when file queue was empty.
11022         (read_console) Resets error_count, warning_count,
11023         error_already_flagged to zero.
11024
11025         * glob.c: Many changes to update list of variables.
11026         (init_compat_dependent) Now this function is called whenever
11027         `compat' changes.  It now sets set_seed only if it hasn't
11028         previously been referenced.  It now calls
11029         lex_init_compat_dependent().
11030
11031         * include.c: (cmd_include_at) Frees temporary buffer instead of
11032         line buffer.  
11033         (cmd_include) Doesn't make copy of include file name.
11034
11035         * lexer.c: Comment fixes.
11036         (init_lex) Moved some code into new function
11037         lex_init_compat_dependent().
11038         (lex_init_compat_dependent) New function.
11039         (hex_val) Simplified.
11040         (preprocess_line) Uses set_endcmd instead of hardcoding `.'.
11041
11042         * main.c: Comment fixes.
11043         (main) Reformatted.
11044
11045         * misc.c: (formats[]) Added FMT_CCA...FMT_CCE.
11046         (check_input_specifier) Disallows FMT_CCA...FMT_CCE.
11047         (convert_fmt_ItoO) Detects FMT_CCA...FMT_CCE.
11048         (setup_randomize) Sets set_seed_used.
11049
11050         * set.q: Comment fixes.
11051         (custom_results) Conditionalizes on `compat'.
11052         (custom_log) Calls custom_journal().
11053         (set_ccx) New function.
11054         (cmd_set) Calls init_compat_dependent() when `compat' changes.
11055         Calls set_ccx() to handle CCA...CCE.  Sets set_grouping
11056         when set_decimal changes.  Range-checks values for MITERATE,
11057         MNEST.  Message fixes.
11058
11059         * settings.h: Comment fixes.
11060         (struct set_cust_currency) New struct.
11061         (set_cc[], set_grouping, set_seed_used) New global vars.
11062
11063         * var.h: (FMT_CCA...FMT_CCE) New output formats.
11064         (FCAT_OUTPUT_ONLY) New FCAT_* constant.
11065
11066 Thu Nov 28 23:14:07 1996  Ben Pfaff  <blp@gnu.org>
11067
11068         * glob.c: Revised variables to correspond to settings.h.
11069         (init_glob) Initializes variables from settings.h properly.
11070
11071         * set.q: Began long-overdue major revision to correspond to new
11072         philosophy.  Most code changed. 
11073
11074         * settings.h: Mostly changed; reorganized, reordered, large new
11075         comment.
11076
11077 Thu Nov 28 19:46:10 1996  Ben Pfaff  <blp@gnu.org>
11078
11079         * get.c: (cmd_save_internal) No longer forces compression off.
11080
11081         * sfm-read.c: (read_compressed_data) If eof is reached when
11082         reading a new instruction octet, only signal error if we're in the
11083         middle of a case.
11084
11085         * sfm-write.c: (COMPRESSION_BIAS) New #define.
11086         (struct sfm_fhuser_ext) New member `end'.
11087         (write_header) Refers to COMPRESSION_BIAS instead of magic 100.0.
11088         (ensure_buf_space) New function.
11089         (sfm_write_case) Reimplemented in order to support compression.
11090         (sfm_close) Writes out the remaining contents of the compression
11091         buffer if any.
11092
11093 Wed Nov 27 23:18:35 1996  Ben Pfaff  <blp@gnu.org>
11094
11095         * command.c: Defined SAVE and XSAVE commands in command table.
11096
11097         * common.h: second_lowest_value is of type flt64, not double.
11098
11099         * file-handle.h: Comment fix.
11100
11101         * get.c: Comment fixes.
11102         (static var `trns') New.
11103         (save_write_case_func, save_trns_proc, save_trns_free, null_func,
11104         cmd_save_internal, cmd_save, cmd_xsave) New functions.
11105         (dict_delete_run) Clears the variables and frees them now.
11106         (trim_dictionary) Sets default for compression.
11107         On KEEP subcommand, frees deleted variables as well as clearing
11108         them.  Finally got the sense of the test for deleting all
11109         variables correct.
11110         [DEBUGGING] (dump_dict_variables) Message fix.
11111
11112         * glob.c: (init_glob) set_compression set to 1 by default.
11113
11114         * list.q: Properly #includes config.h.
11115
11116         * misc.h: New macro REM_RND_UP.
11117
11118         * settings.h: Comment fix.
11119
11120         * sfm-read.c: (structs sysfile_header, sysfile_format,
11121         sysfile_variable; inline function bswap_int32) Moved to new file
11122         sfmP.h.
11123         (corrupt_msg) [__CHECKER__] No longer induces segfault.
11124         (sfm_read_dictionary) Fixed bug caused by failing to initialize
11125         var_by_index.
11126         (read_machine_flt64_info) Fixed some problems caused by confusion
11127         between flt64 and double types.
11128         (read_header) Message fix.
11129         (read_variables) Fixed set of cases in which we byte-swap sv.print
11130         and sv.write.  Fixed confusion of flt64 and double.
11131
11132         * sfm.h: (struct sfm_write_info) New.
11133
11134         * som-high.c: (som_draw_title) Properly frees `s'.
11135
11136         * temporary.c: (save_dictionary) Comment fix.
11137
11138         * var.h: Comment fixes.  New FMT_* enum, FMT_NUMBER_OF_FORMATS.
11139         (struct trns_header) Formatting fix.
11140         (struct save_trns) New.
11141
11142         * vars-atr.c: (discard_variables) Comment fix.
11143
11144         * sfm-write.c: New file, baseline release.
11145
11146         * sfmP.h: New file, baseline release.
11147
11148 Sun Nov 24 14:53:53 1996  Ben Pfaff  <blp@gnu.org>
11149
11150         * cmdline.c: (parse_command_line) `--version' output updated.
11151         (glob var syntax_message[]) Added my e-mail address.
11152
11153         * file-handle.q, lexer.c, vfm.c: Changed many instances of
11154         `illegal' to `invalid'.
11155
11156         * sfm-read.c: (struct sfm_fhuser_ext) New fields used as
11157         uncompression buffer.
11158         (sfm_close) Frees decompression buffer.
11159         (sfm_read_dictionary) Initializes decompression buffer.
11160         (buffer_input, read_compressed_data) New functions.
11161         (sfm_read_case) Restructured; now calls read_compressed_data() to
11162         handle compressed system file data.
11163
11164         * var.h: Comment fix.
11165
11166 Mon Nov 11 15:34:09 1996  Ben Pfaff  <blp@gnu.org>
11167
11168         * dfm.c: (dfm_close) Does not set h->{ext,class} because the
11169         caller handles it.
11170          
11171         * get.c: New comments.  New static var `get_file'.
11172         (cmd_get) Now fully implemented.  Calls discard_variables();
11173         initializes fv and lv for all variables; new debug code; sets
11174         up the dictionary; sets up the input program.
11175         (read_from_get, cancel_get) New functions.
11176
11177         * sfm-read.c: Comment fixes.
11178         (sfm_close) New static function.
11179         (sfm_read_dictionary) Properly sets up the class of the
11180         file_handle.  No longer cares what size the data is in records of
11181         type 7.  Also, on failure, properly cleans up the file_handle and
11182         free()s some stuff.
11183         (read_variables) No longer thinks it knows `nval' of the
11184         dictionary.  Now sets p.get.fv, etc., instead of speculatively
11185         setting fv itself.
11186         (read_value_labels) Fixed off-by-one error in indexing of
11187         var_by_index[].
11188         (sfm_read_case) New function.
11189         (sfm_r_class) New static var.
11190
11191         * var.h: (get_proc) New struct.
11192         (struct variable) New member p.get.
11193
11194 Thu Nov  7 20:52:28 1996  Ben Pfaff  <blp@gnu.org>
11195
11196         * get.c: Removed GTSV_OPT_MAP because of a misinterpretation of
11197         the manual's meaning.
11198         (rename_variables) New function.
11199         (trim_variables) Doesn't try to parse MAP any more.  Removed debug
11200         code.  Now properly reorders the dictionary on the KEEP keyword.
11201
11202         * sfm-read.c: (read_value_labels) Fixed some bugs regarding
11203         garbage collection.
11204
11205         * vars-atr.c: (clear_variable) New argument `dictionary *'.
11206         (rename_variable) New function.
11207         (free_val_lab) Reformatted.
11208
11209 Thu Nov  7 17:29:16 1996  Ben Pfaff  <blp@gnu.org>
11210
11211         * var.h: Reindented entire file.  Comment fixes.
11212         (glob vars var, var_by_name, nvar, N, nval, n_splits, splits)
11213         Removed.
11214         (glob var default_dict) New.
11215         (struct indirect_dictionary) Removed.
11216
11217         * Many other source files were changed to add `default_dict.'
11218         before all references to the dictionary of the active file.
11219         
11220         * vars-atr.c: (make_indirect_dictionary) Removed.
11221
11222         * glob.c: Reindented all variable declarations.  Updated for
11223         changed var.h.  Comment fixes.
11224
11225         * temporary.c: (restore_dictionary, save_dictionary) Simplified
11226         because now we can mainly copy dictionary structs.
11227
11228         * vars-prs.c: (is_dict_varname, parse_dict_variable,
11229         parse_variables) Takes dictionary instead of indirect_dictionary
11230         first argument.
11231         (parse_variables) Instead of calling make_indirect_dictionary,
11232         just sets DICT to &default_dict if DICT is NULL.  Of course, lots
11233         of `*dict.' references had to be changed to `dict->'.  Removed
11234         debug code.
11235
11236 Thu Nov  7 15:48:52 1996  Ben Pfaff  <blp@gnu.org>
11237
11238         * get.c: Added GTSV_OPT_* series of enums.
11239         (trim_dictionary, dict_delete_run) New functions.
11240         [DEBUGGING] (dump_dict_variables) New function.
11241         (cmd_get) Calls trim_dictionary() to get dictionary fully set-up.
11242         [DEBUGGING] Calls dump_dict_variables() to display results.
11243
11244         * glob.c: (cmp_variable) Now a public function declared in var.h.
11245
11246         * sfm-read.c: Turned off debug code.  Comment fixes.
11247         (read_machine_int32_info, read_machine_flt64_info) New functions
11248         to parse type 7 records.
11249         (sfm_read_dictionary) Properly byteswaps several fields now.
11250         Calls read_machine_*_info() to parse type 7 subtypes 3 and 4
11251         records.  [DEBUGGING] Dumps dictionary.
11252         (read_variables) Sets `index' field of variables created properly.
11253         Constructs avl tree of variables in dictionary.  [DEBUGGING] No
11254         longer dumps dictionary.
11255         (read_value_labels) Properly byteswaps fields.  [DEBUGGING] New
11256         debug code.
11257         [DEBUGGING] (dump_dictionary) No longer stubbed out.
11258
11259         * temporary.c: (restore_dictionary) Destroys `var_by_name' glob
11260         var before destroying any variables just to save a little time.
11261
11262         * var.h: (struct variable) Reordered in order to make name[] the
11263         first member; this makes pointers to `variable' pointers to the
11264         variable name, simplifying avl trees, etc.
11265         (struct indirect_dictionary) New struct.
11266
11267         * vars-atr.c: (find_variable) Rewritten for efficiency.
11268         (make_indirect_dictionary, is_dict_varname, parse_dict_variable)
11269         New functions.
11270         (is_varname) Rewritten for efficiency.
11271         (parse_variables) New argument, which is a `dictionary *'.  All
11272         references changed.  This function now reads variable names from
11273         the dictionary passed, or from the default dictionary if NULL.
11274
11275 Tue Nov  5 18:34:59 1996  Ben Pfaff  <blp@gnu.org>
11276
11277         * misc.h: Added new macro DIV_RND_UP to perform integer division,
11278         rounding up.  Changed many references to ROUND_UP to use this
11279         instead.
11280
11281         * sfm-read.c: Includes avl.h.
11282         (corrupt_msg) Induces a segfault under Checker.
11283         (macro assertive_bufread) New.  Many references to bufread() now
11284         use this instead.
11285         (sfm_read_dictionary) Split up into several functions.  Added code
11286         to read dictionary records following the the type 2 records.  Not
11287         quite complete.  New variable `var_by_index'.
11288         (read_header, read_variables) New functions extracted from
11289         sfm_read_dictionary().
11290         (read_value_labels) New function.
11291         (bufread) Checks ferror() if fread() doesn't return the expected
11292         value; if ferror() is zero it's just EOF.
11293         (dump_dictionary) Stubbed out.
11294
11295         * BTW: The source code now exceeds 50000 lines!
11296         
11297 Mon Nov  4 22:03:28 1996  Ben Pfaff  <blp@gnu.org>
11298
11299         * command.c: Added GET to cmd_table[].
11300
11301         * list.q: Removed reference to alloca headers.
11302         (cmd_list) Gave prototype.
11303
11304         * sfm-read.c: Added DEBUGGING comments.
11305         (sfm_read_dictionary) Checks bias correctly.  Sets
11306         dict->var_by_name to NULL.  Calculates long_string_count
11307         correctly.  realloc's dict->var[] array to minimum size.
11308         [DEBUGGING] Calls dump_dictionary.
11309         [DEBUGGING] (dump_dictionary) New function.
11310
11311         * temporary.c: (save_dictionary) Sets var_by_name to NULL.
11312         (restore_dictionary) If the dictionary contains a non-NULL
11313         var_by_name, uses that instead of generating one.
11314         (free_dictionary) Destroys var_by_name.
11315
11316         * var.h: (struct dictionary) Added field `var_by_name'.
11317
11318         * get.c: New file, not complete.
11319
11320 Sun Nov  3 12:24:36 1996  Ben Pfaff  <blp@gnu.org>
11321
11322         * mis-val.c: New enums MV_NOR_*.  New struct num_or_range.
11323         (parse_num_or_range) New function.
11324         (parse_numeric) Reimplemented in order to support LOW THRU <n> and
11325         <n> THRU HIGH missing values.
11326
11327         * output.h: [__GNUC__>1 && __OPTIMIZE__] (width, height) Made
11328         __attribute__((const)).
11329
11330         * q2c.c: (get_token) Merged isdigit || isalpha into isalnum.
11331
11332         * sfm-read.c: Finished reference implementation.
11333
11334         * sfm.h: Includes var.h.
11335
11336         * var.h: Comment fixes.
11337         (struct `variable') Reordered some fields.
11338
11339         * vars-atr.c: (is_num_user_missing) Added support for MISSING_*
11340         constants added previously.
11341
11342 Wed Oct 30 17:13:08 1996  Ben Pfaff  <blp@gnu.org>
11343
11344         * common.h: Comment fixes.  Added declaration of
11345         `second_lowest_value' as variable or macro.  Made `compat_type',
11346         `pgm_state_type' into anonymous enums.
11347
11348         * display.c: Comment fix.
11349
11350         * glob.c: [ENDIAN==UNKNOWN] Added definition for `endian' global
11351         var.
11352         [!defined SECOND_LOWEST_VALUE] Added definition for
11353         `second_lowest_value' global var.
11354         (compat, pgm_state global vars) Changed types to `int'.
11355         (init_glob) Initializes `second_lowest_value'.
11356
11357         * sfm-read.c: Continued work, not complete.
11358
11359         * var.h: Added new MISSING_* constants to handle LOWEST and
11360         HIGHEST.
11361
11362 Sat Oct 26 23:06:06 1996  Ben Pfaff  <blp@gnu.org>
11363
11364         * sfm-read.c: New file, not complete.
11365
11366         * cases.c: (vec_insert) Changed vector expansion algorithm.
11367         (vec_delete) Fixed bug that screwed up deletion sometimes, it was
11368         mucking up the RECODE transformation in particular.
11369         (envector) Harmless change in notation.
11370
11371         dfm is now fairly well tested again.  
11372         * dfm.c: (dfm_get_record) Only returns ext->ptr if ext is
11373         non-NULL--duh.
11374         (cmd_begin_data) if(ext->line) replaced by if(ext && ext->line).
11375
11376         * recode.c: Comment fix.
11377
11378         * sfm.h: Interface should be fairly final now, or at least for a
11379         day or so...
11380
11381         * vfm.c: [DEBUGGING] (index_to_varname) New function.
11382         (open_active_file) [DEBUGGING] Translates ccase indices into
11383         variable names now to make it easier to understand what's really
11384         going on.
11385
11386 Sat Oct 26 20:46:31 1996  Ben Pfaff  <blp@gnu.org>
11387
11388         * data-in.c: Comment fix.
11389
11390         * data-list.c: Includes dfm.h.
11391         (do_reading) Uses new function dfm_push_cust().
11392
11393         * data-out.c: (convert_time, convert_WKDAY, convert_MONTH) Added
11394         `return 1;' at end.
11395
11396         * file-handle.h: Completely changed.  Some parts split off into
11397         new file dfm.h.  Implemented in file-handle.q.
11398         (enum FH_*) Removed.
11399         (struct fh_ext_class) New struct.
11400         (struct file_handle) Retained only these fields: name, norm_fn,
11401         fn, recform, lrecl, mode.  New fields class, ext.
11402         (get_handle_by_name, get_handle_by_filename, parse_file_handle,
11403         close_handle, handle_name) Added `fh_' prefix to name, all
11404         references changed.
11405
11406         * dfm.h: New file, implemented in dfm.c.
11407         (get_record, put_record, fwd_record, bkwd_record, set_record,
11408         get_cur_col) Functions moved from file-handle.h, now prefixed with
11409         `dfm_'.
11410         (dfm_push_cust) New function.
11411
11412         * sfm.h: New file.  Incomplete.
11413
11414         * dfm.c: All functions adjusted/rewritten for new dfm/fhp
11415         interface.  Functions reordered, comments changed.  Not well
11416         tested, probably full of bugs.
11417         (struct dfm_fhuser_ext) New struct.
11418         (dfm_close) New function.
11419         (open_file_r) Pickier about finding `BEGIN DATA.' line.
11420         (open_file_w) User messages changed.
11421         (get_record) Comment fixed.
11422         (read_record) Increments ext->ln even for inline_file.  Calls
11423         dfm_close() for inline_file when `END DATA.' encountered.
11424         (dfm_get_record) Experimental restructuring.
11425         (dfm_push_cust) New function.
11426         (cmd_begin_data) Detects whether the inline file was fully read by
11427         checking whether it is still open; detects whether it was read at
11428         all by checking whether the line number is greater than zero.
11429
11430         * file-handle.q: All functions adjust/rewritten for new dfm/fhp
11431         interface.  Functions reordered, comments changed.  Not well
11432         tested, probably full of bugs.
11433         (init_file_handle) Removed initializers for obsolete fields, added
11434         new fields.
11435         (fh_close_handle) Much simpler, now mainly calls the class
11436         function.
11437         (fh_init_files) Renamed inline file internal filename.
11438
11439         * file-type.c: Includes dfm.h.
11440         (read_from_file_type) Doesn't use dfm internal state anymore.
11441
11442         * inpt-pgm.c, print.c: Include dfm.h.
11443
11444         * recode.c: (internal_cmd_recode) Casts strlen() return value to
11445         int in comparison with other int.
11446
11447         * som-high.c: (build_target) Fixed operator precedence problem in
11448         if statement (& versus ==).
11449
11450 Sat Oct 26 10:39:25 1996  Ben Pfaff  <blp@gnu.org>
11451
11452         * dfm.c: (read_record) Can now read fixed-length records; not
11453         tested.
11454         (put_record) Can now write fixed-length records; not tested.
11455
11456         * file-handle.h: FH_* defines changed to enums.  New enum series
11457         FH_RF_*, FH_MD_*.
11458         (struct file_handle) New members recform, lrecl, mode.
11459
11460         * file-handle.q: Parser changed.
11461         (internal_cmd_file_handle) Added support for new /RECFORM, /MODE,
11462         /LRECL subcommands.  These are compatible with Windows.
11463         (init_file_handle) Initializes recform, mode fields.
11464
11465         * q2c.c: (get_line) When outputting `!' comment lines, now
11466         increments the output file line number so that `#line' directives
11467         are correct.
11468         (make_identifier) New function that converts an arbitrary string
11469         into a valid C identifier.
11470         (dump_vars) Calls make_identifier() in two places in order to
11471         suppress some errors for bad identifiers.
11472         (make_match) Allows TRUE as synonym for YES and FALSE as synonym
11473         for NO.  Allows numbers to be prefixed by underscores to make them
11474         acceptable C identifiers but still to be parsed as numbers by the
11475         Fiasco lexer.
11476
11477 Thu Oct 24 20:13:42 1996  Ben Pfaff  <blp@gnu.org>
11478
11479         * command.c: Re-enabled RECODE, SAMPLE, SELECT IF.
11480         
11481         * dfm.c: Comment fixes. (get_record) Gives error if file handle
11482         was opened for writing.
11483         (open_file_w) New function.
11484         (read_record) Uses strncasecmp if available.  Improved error
11485         messages, comments.
11486         (put_record) New function.
11487
11488         * file-handle.h: Moved function comments into dfm.c and
11489         file-handle.q.  Comment fixes.  Removed declarations of
11490         tilde_expand() and normalize_filename().
11491         (struct file_handle) Changed `open' from boolean to enumerated
11492         field to allow for three states--closed, open for reading, open
11493         for writing--all references changed.
11494
11495         * file-handle.q: Includes filename.h.
11496
11497         * print.c: (CMD_* enums) Renamed PRT_* and moved into var.h; all
11498         references changed.
11499         (alloc_line) Makes allowance for line terminator characters in
11500         calculations.
11501         (print_trns_proc) Now handles OUTFILE, WRITE differences.
11502         (print_space_trns_proc) Handles OUTFILE differences.
11503
11504         * recode.c, sample.c: Comment fixes.
11505
11506         * var.h: (struct print_trns) Changed boolean field `eject' to
11507         bitmapped field `options'; all references changed.  New enums
11508         PRT_* for use with this field.
11509
11510         * exception.h, test-exception.c: Removed.
11511
11512 Thu Oct 24 17:47:14 1996  Ben Pfaff  <blp@gnu.org>
11513
11514         * ascii.c: (delineate) Turned off debug output.
11515
11516         * common.c: [Checker and Linux] (__assert_fail, __eprintf) Moved
11517         to error.c.
11518
11519         * data-in.c: (parse_string_as_format) Sets the entire string value
11520         to spaces, not just the short string part of it.  Is this correct
11521         now? 
11522
11523         * data-out.c: (convert_date) Fixed DATETIME format problems with
11524         decimal places, removed debug code.
11525
11526         * dfm.c: (open_file_r) Fixed bug where an error would occur in the
11527         middle of parsing BEGIN DATA that would cause the lexer to read
11528         from a wild pointer `prog'; now calls new function
11529         preprocess_line() in lexer.c.
11530
11531         * error.c: [__CHECKER__] (hcf) Calls induce_segfault() on improper
11532         termination.
11533         [Checker and Linux] (__assert_fail, _eprintf) Moved from common.c.
11534         Now call induce_segfault() to induce the segfault.
11535         (induce_segfault) New function.
11536
11537         * expr-opt.c: Comment fix.
11538         (parse_sysvar) New function.
11539         (parse_primary) Added system variable support--calls
11540         parse_sysvar().
11541         (global var ops) Added OP_CASENUM operator.
11542
11543         * expr.h: Comment fixes.
11544         (OP_* enum) added OP_CASENUM operator.
11545         (struct casenum_node) New struct.
11546         (union any_union_union) New member `cas' of type `casenum_node'.
11547
11548         * glob.c: (global var last_vfm_invocation) New var.
11549         (init_glob) Initializes last_vfm_invocation.
11550
11551         * lexer.c: (lookahead) Fixed reversed condition on if statement.
11552
11553         * getline.c: (get_line) Split into get_line() and preprocess_line().
11554         (preprocess_line) New function.
11555
11556         * var.h: Declares last_vfm_invocation.
11557
11558         * vfm.c: (procedure) Sets last_vfm_invocation.
11559
11560 Wed Oct 23 21:53:43 1996  Ben Pfaff  <blp@gnu.org>
11561
11562         * command.c: (parse_cmd) Fixed bad assertion related to
11563         lookahead().
11564
11565         * data-in.c: (parse_month) Implemented to parse months according
11566         to full interpretation of standard.
11567         (to_roman) New function.
11568         (parse_wk_delimiter) Bug fix (forgot to skip `WK' in string).
11569         (parse_weekday) Bug fix (forgot to skip all the day name).
11570
11571         * data-list.c: (read_from_data_list_fixed) Fixed bug that screwed
11572         up parsing of multirecord data items.  Also fixed user message.
11573
11574         * data-out.c: Comment fix.
11575         (year2, year4, convert_date, convert_time, convert_WKDAY,
11576         convert_MONTH) New functions to support time & date output.
11577         (convert_format_to_string) Calls new time & date output routines.
11578
11579         * expr-prs.c: (nary_num_func) Found a bug, but didn't fix it yet.
11580
11581         * lexer.c: (lookahead) Noted a previously unnoticed caveat in
11582         comment.
11583
11584         * main.c: [DEBUGGING] (dump_token) Updated to handle getline.h.
11585
11586         * misc.c: (global var formats) Fixed declarations of DATETIME,
11587         TIME, DTIME.
11588
11589         * postscript.c: (text) Fixed a pair of bugs in the reallocation of
11590         the output_char buffer.
11591
11592         * vars-prs.c: (parse_DATA_LIST_vars) Fixed a failure to free
11593         memory bug.  Fixed user messages.
11594
11595 Tue Oct 22 17:27:04 1996  Ben Pfaff  <blp@gnu.org>
11596
11597         * Removed #pragma argsused from lots of places.
11598         
11599         * data-in.c: Implemented zoned decimal and time-date formats.
11600         Untested.  This is a huge chunk of code--maybe 1000 lines and 50
11601         new functions.
11602
11603         * data-out.c: Implemented zoned decimal format.
11604
11605         * expr.h: Moved yrmoda() declaration here from exprP.h.
11606
11607         * misc.c: (global var formats) Minor fixes--added
11608         FCAT_SHIFT_DECIMAL to formats N and Z.
11609         (convert_fmt_ItoO) Added support for format Z.
11610
11611         * som-frnt.c: (som_set_value) Fixed bug regarding string values.
11612
11613 Mon Oct 21 20:39:59 1996  Ben Pfaff  <blp@gnu.org>
11614
11615         * command.c: (parse_cmd) [GLOBAL_DEBUGGING] Inserted call to
11616         som_check_workspace() that is activated between commands.
11617
11618         * data-list.c: (dump_fixed_table, dump_free_table) Finished these
11619         for good, I hope.
11620
11621         * list.q: (begin_row) Changed title expansion style from
11622         SOPT_X_VERT to SOPT_X_SHSP.
11623
11624         * som-frnt.c: Now includes `somP.h'.
11625         (som_push_workspace, som_pop_workspace) New functions that, taken
11626         together, form a solution to the recursive table building problem
11627         mentioned yesterday.  Surrounded every table output routine
11628         throughout the program with calls to these functions.
11629         [GLOBAL_DEBUGGING] (som_check_workspace) New function.
11630         (som_create_table) Checks that there's an active workspace.
11631         (som_destroy_all_tables, som_crush) Removed.
11632
11633         * som-high.c: (global var som_preserve_tables) Removed, all
11634         references deleted.
11635         (som_submit_table) Checks that there's an active workspace.
11636         (dump_columnated_table) Doesn't columnate tables that would have
11637         just one row per column.
11638         (dump_crush_page, som_dump_crush_page) Removed debugging code.
11639         (som_dump_crush_page) Moved row number labels from left side of
11640         tables to right side.
11641         (som_get_table_size) Added support for SOPT_X_SHSP.
11642
11643         * som.h: New cell expansion type SOPT_X_SHSP.
11644
11645         * somP.h: (global vars arena_stack, n_arena_stack, m_arena_stack)
11646         New vars.
11647         (global var curtab_arena) Moved from som-frnt.c.
11648
11649 Sun Oct 20 13:45:28 1996  Ben Pfaff  <blp@gnu.org>
11650
11651         * ascii.c: [GLOBAL_DEBUGGING] (SUPPRESS_WARNINGS) New debug option
11652         that causes bad location warnings to be suppressed.
11653         (delineate) Saves current font when calling draw_text(); fixed
11654         handling of NULLs when backing up.  Also fixed line-wrapping bug.
11655
11656         * command.c: Re-enabled `LEAVE', `NUMERIC', `PRINT', `PRINT EJECT',
11657         `PRINT FORMATS', `PRINT SPACE', `STRING', `TITLE', `WRITE'.
11658
11659         * common.c: Added code to cause assertion failure to dump core
11660         when run under Checker.
11661
11662         * data-list.c: (dump_fixed_table) Fixed some inconsistencies, but
11663         there are still bugs.
11664
11665         * glob.c: (__eprintf) Removed.
11666
11667         * list.q: Inserted som_preserve_tables kluge that prevents tables
11668         from being thrown away due to recursive table building through
11669         som_output_line being called from a transformation during the LIST
11670         procedure invocation.  This is a general problem that must be
11671         solved in a better way since it applies to all procedures in
11672         general.
11673         (begin_row) Changed title options to SOM_X_VERT from SOM_X_BOTH.
11674         (flush_table) Removed SOM_TOPT_PRESERVE from submission options.
11675
11676         * numeric.c: Fixed several errors in the form of msg() calls.
11677
11678         * print.c: Updated for use of som.
11679         (dump_table) Reimplemented.
11680         (print_trns_proc) Calls som_eject_page() instead of eject_page().
11681         Calls som_output_text() instead of outs_line().
11682
11683         * som-frnt.c: (som_destroy_all_tables) Sets som_preserve_tables to
11684         0.
11685         (som_output_text) Function moved from som-low.c.  Interface
11686         changed.
11687
11688         * som-high.c: (som_preserve_tables) New global public variable
11689         declared in som.h.
11690         (som_submit_table) Destroys the tables only if som_preserve_tables
11691         is 0.
11692         (paginate_horizontally) Bugfix: sets som.mpw even if there's only
11693         one subrow per row.  Now labels subrows if there's more than one
11694         subrow per row.
11695         (dump_crush_table) Added wishlist comment.
11696         (som_eject_page) New public function declared in som.h.
11697
11698         * som-low.c: (som_dump_crush_page) Draws row labels if there's
11699         more than one subrow per row.
11700         (som_output_text) Moved to som-frnt.c.
11701
11702         * som.h: (SOM_TOPT_PRESERVE) Removed.
11703
11704         * title.c: (get_title) Changed interface.
11705         (cmd_title) Changed `title' to `outp_title'.
11706         (cmd_subtitle) Changed `subtitle' to `outp_subtitle'.
11707
11708 Sun Oct 20 09:04:15 1996  Ben Pfaff  <blp@gnu.org>
11709
11710         * list.q: (flush_table) Conforms to new partial options in
11711         som_submission_form.
11712
11713         * som-high.c: (paginate_horizontally) Changed form of subrow
11714         number labels.
11715         (build_target) Omits spacing before table if
11716         SOM_TOPT_PARTIAL_OMIT_TOP is selected.
11717         (dump_crush_page) Changed interface.  Only trims bottom rule if
11718         SOM_TOPT_PARTIAL_OMIT_BTM is not selected.
11719         (dump_crush_table) Handles partial tables.
11720         (output_row_label) New function.
11721         (som_dump_crush_page) Emits subrow number labels.  Draws vertical
11722         rule on the right edge of narrow subrows.
11723
11724         * som.h: Changed SOM_SUB_PARTIAL_* series of submission type
11725         constants to a series of SOM_TOPT_PARTIAL_* submission options.
11726         All references updated.
11727
11728 Fri Oct 18 19:46:49 1996  Ben Pfaff  <blp@gnu.org>
11729
11730         * misc.c: Comment fix.
11731
11732         * som-high.c: (examine_table) Treats crushed tables separates for
11733         purpose of determining header size.
11734         (paginate_horizontally) Allots space for line numbers in crushed
11735         tables with lots of subrows per row.  Calculates the `maximum page
11736         width', the width of the widest horizontal page.
11737         (build_target) Removed trim argument; all references changed.
11738         Stricter assertions.  (dump_crush_page) New function.
11739         (dump_crush_table) Reimplemented.
11740
11741         * som-low.c: (som_dump_page) Uses new RULE_ROW &c. constants.
11742         (som_dump_crush_page) Reimplemented, interface changed.
11743
11744         * somP.h: Many many new helper macros for use with crushed tables.
11745         (global var som) Removed `tv', `cum_y' members; all references
11746         removed.  New members `mpw', `digit_space'.
11747
11748 Sun Sep 29 19:37:03 1996  Ben Pfaff  <blp@gnu.org>
11749
11750         * arena.c: (arena_alloc) [!DISCRETE_BLOCKS] Removed `size'
11751         variable, changed to constant 1024.
11752         (arena_ca_strdup) Changed `sizeof(a_string)' to
11753         `sizeof(c_string)'.
11754         (arena_ca_strdup) [!DISCRETE_BLOCKS] Changed bad cast from
11755         `(c_string *)' to `(char *)'; this fixed some offset problems.
11756
11757         * filename.c: (readlink_malloc) Changed initial allocation from
11758         100 bytes to 128.
11759         (good_getcwd) Changed from xmalloc() to local_alloc(); removed
11760         comment.
11761
11762         * postscript.c: (read_fontmap) Fixed leak by changing &owner to
11763         &fm->owner in several places.
11764
11765         * som-high.c: (output_table) Changed interface to rest of world.
11766         (examine_crush_table) Removed.  Crushed tables are re-broken now,
11767         in preparation for rewrite.
11768
11769         * som.h: Comment fix.
11770
11771 Sat Sep 28 21:28:07 1996  Ben Pfaff  <blp@gnu.org>
11772
11773         * ascii.c: (ascii_init_driver) Disposes of x->file.filename and x
11774         itself in the cleanup stage.
11775
11776         * descript.q: (display) At least temporarily, changed the table
11777         format to a crushed table.
11778
11779         * list.q: (begin_row) At least temporarily, added horizontal lines
11780         between cases.
11781
11782         * som-high.c: (examine_crush_table) Sets som.hh to the width of
11783         the horizontal "headers," that is, to the width of the far left
11784         and far right rules.
11785         (justify_pagination) Sets som.th to the width of the widest row
11786         in the crushed table.  Fixed inner loop off-by-one error.
11787
11788         * som-low.c: (som_dump_crush_page) Added code to draw horizontal
11789         rules.
11790
11791         * somP.h: Comment fix.
11792
11793 Fri Sep 27 20:08:39 1996  Ben Pfaff  <blp@gnu.org>
11794
11795         * filename.c: (open_file_ext) Now, doesn't set f->file to NULL
11796         before closing it; also, opens the constructed filename `s'
11797         instead of f->filename.
11798
11799         * postscript.c: Moved initialization of x->loaded, x->prop,
11800         x->fixed, x->current, also the add_encoding() calls, into
11801         postopen().
11802         (preclose) Destroys x->combos; sets x->loaded, x->combos to NULL;
11803         sets x->last_font to NULL; sets x->next_combo to zero.
11804
11805         * som-high.c: (crushed_row_height) Moved definition farther up.
11806         (som_submit_table) Doesn't calculate line width, font size until
11807         after calling open_page(), to accomodate changes to PostScript
11808         driver.
11809         (vert_headers) Removed; equivalent functionality moved to
11810         examine_table(), examine_crush_table().
11811         (justify_pagination) Replaced with different algorithm.
11812         (dump_crush_table) Bugfix that caused tables to fail to be clipped
11813         at the bottom of the page.
11814
11815 Thu Sep 26 22:20:26 1996  Ben Pfaff  <blp@gnu.org>
11816
11817         * command.c: Added cmd_list back into cmd_table.
11818
11819         * freq.c, frequencies.q, repeat.c, list.q, vars-atr.c, vfm.c:
11820         Comment fix: `#define DEBUGGING' --> `#define DEBUGGING 1'.
11821
11822         * list.q: (flush_table) Updated to new som_submission_form format.
11823
11824         * som-frnt.c: Comment fix.
11825
11826         * som-high.c: Changed `#endif' to `#undef EXTERN'.
11827         (output_table) Calls som_get_table_size() directly; handles
11828         crushed tables.
11829         (examine_crush_table) New function; calls vert_headers().
11830         (examine_table) Moved some code into new function, vert_headers().
11831         (justify_pagination) New function.
11832         (dump_plain_table) Removed `static' from `cy'.
11833         (dump_crush_table) New function.
11834
11835         * som-low.c: (som_dump_crush_page) New function.
11836
11837         * som.h: Comment fixes.
11838         (enum SOM_TOPT_CRUSH) New.
11839         (SOM_SUB_PARTIAL_BEG, SOM_SUB_PARTIAL_MID, SOM_SUB_PARTIAL_END)
11840         Temporarily set to zero to make do with LIST procedure.
11841
11842         * somP.h: Re-ordering.
11843
11844 Wed Sep 25 19:36:11 1996  Ben Pfaff  <blp@gnu.org>
11845
11846         * som.c: Split into som-frnt.c, som-high.c, som-low.c.
11847
11848         * somP.h: New file for use by som-high.c, som-low.c.
11849
11850         * q2c.c: Added definition for VME.
11851         (get_line) Now dumps `!' comment lines to the output file
11852         verbatim.
11853
11854         * crosstabs.q, descript.q, file-handle.q, frequencies.q, list.q,
11855         set.q: Changed format of `!' comment lines.
11856
11857 Tue Sep 24 18:39:09 1996  Ben Pfaff  <blp@gnu.org>
11858
11859         * All source files: Added copyright notice.
11860
11861         * common.c: (xmalloc, xrealloc, xstrdup) Cast size_t's to unsigned
11862         longs in msg() calls.
11863
11864         * con32s.c: (xmalloc, xrealloc) Updated from common.c.
11865
11866         * q2c.c: (xmalloc, xrealloc, xstrdup) Updated from common.c.
11867
11868 Sat Sep 21 23:16:31 1996  Ben Pfaff  <blp@gnu.org>
11869
11870         * output.c: (outp_read_devices) Changed criteria for
11871         distinguishing different types of lines.
11872
11873 Fri Sep 20 22:52:28 1996  Ben Pfaff  <blp@gnu.org>
11874
11875         * cmdline.c: Changed syntax message.
11876
11877         * filename.c: (good_getcwd) Bug fix (?).
11878         (normalize_filename) [__BORLANDC__] Uses _fullpath() library
11879         function.
11880         (search_path) Appends DIR_SEPARATOR to directory name only if it
11881         does not already end with one.
11882
11883         * glob.c: Checks STAT_PAGER envvar before PAGER.
11884
11885         * output.c: Checks environment variables instead of just local
11886         macros.
11887
11888 Tue Sep 10 21:39:00 1996  Ben Pfaff  <blp@gnu.org>
11889
11890         * arena.c: (arena_destroy) Swatted a subtle bug that cropped up
11891         when the pointer passed to the function was within the arena
11892         itself, so that it couldn't properly be set to NULL _after the
11893         arena was freed_.
11894
11895         * command.c: Re-enabled DISPLAY.
11896
11897         * display.c: Rewritten to handle tables.  Untested.
11898
11899         * filename.c: (search_path) Fixed memory leak.
11900
11901         * frequencies.q: (cmd_frequencies) Frees v_variables.
11902         (postcalc) Calls cleanup_freq_tab() after displaying statistics.
11903         (cleanup_freq_tab) New function to garbage collect.
11904         (dump_full) Elegantized.
11905
11906         * main.c: New comment.
11907
11908         * output.h: New tag for tagged quotes: TAG_NEWLINE.
11909
11910         * postscript.c: Comment fix.
11911         (release_fontmap, free_font_entry) New functions.
11912         (ps_init_driver) Sets free_font_entry() as the freefunc for
11913         hashtable `loaded'.  Calls release_fontmap() when destroying a
11914         driver; also frees the output filename; also frees the
11915         ps_driver_ext block.
11916         (free_ps_encoding) Frees the filename as well as the encoding
11917         block.
11918         (output_encodings) Frees the line buffer and pops the msg-filename
11919         stack.
11920         (read_fontmap) Frees the fontmap filename and the line buffer.
11921         (postopen, preclose) Misc. garbage collection fixes.
11922         (ps_open_page) Destroys the `combos' hash table; sets `last_font'
11923         to NULL; this fixes some output problems.
11924         (text) Handles TAG_NEWLINE.  Untested.
11925
11926         * som.c: (cell_byte_size) Merged SCON_VALUE and SCON_TEXT cases.
11927         (som_set_string) Removed.  All references changed to
11928         `som_set_text'.
11929         (som_set_text) Rewritten.  New interface.  More general.
11930
11931         * som.h: Minor format changes.
11932         (struct som_value_cell) Removed; all references changed to
11933         `som_text_cell'.
11934         (enums SOT_*) Changed.
11935
11936 Mon Sep  9 21:43:13 1996  Ben Pfaff  <blp@gnu.org>
11937
11938         * command.c: Re-enabled SPLIT FILE.
11939
11940         * postscript.c: Comment fix.
11941
11942         * som.h: Added `SOT_NONE'.
11943
11944         * split-file.h: (cmd_split_file) Removed superfluous parenthesis.
11945
11946         * vfm.c: (dump_splits) Reimplemented.
11947
11948 Sat Sep  7 22:35:12 1996  Ben Pfaff  <blp@gnu.org>
11949
11950         * Compiled the project under gcc 2.7.2, which gave some new
11951         warnings.  This led to many additions of casts from unsigned to
11952         int sprinkled throughout the code.
11953         
11954         * arena.c: Many uses of `unsigned' changed to `size_t'.
11955
11956         * command.c: Added END FILE, END REPEAT to command table.
11957         (var cmd_end_repeat) Renamed cmd_end_repeat_p.
11958         (find_command, FILE_TYPE_okay) Not commented out anymore.
11959         (parse_cmd) Calls FILE_TYPE_okay again.
11960         (output_line) Added calls to som_output_text() to put the line
11961         in the output files.
11962
11963         * common.c: (macro VME) Format changes.
11964         (xstrdup) Asserts that its argument is not NULL.
11965         
11966         * data-list.c: Implemented dump_fixed_table().
11967         
11968         * inpt-pgm.c: Formatting changes.  Comment changes.
11969         (end_case_proc) Renamed end_case_trns_proc.
11970         (cmd_end_file, end_file_trns_proc) New functions.
11971
11972         * misc.c: Many uses of `int' and `unsigned' changed to `size_t'.
11973
11974         * misc.h: (local_strdup) New macro corresponding to strdup() but
11975         allocating its data through local_alloc() if possible--that is, if
11976         GNU C is in use.
11977
11978         * postscript.c: Comment changes.
11979         (quote_ps_name, quote_ps_string, output_encodings) New functions.
11980         (output_line, add_string) New macros supporting
11981         output_encodings().
11982         (postopen) Fixed contents of ${fixed-font} and ${prop-font}
11983         substitution vars.  Calls output_encodings() when a line
11984         consisting of `!encodings' is encountered.
11985         (preclose) Some code moved into quote_ps_string().
11986         (dump_line) Changed into macro supporting dump_fancy_line().
11987         (switch_font) Now outputs DSC "%%IncludeResource: font (...)"
11988         command when appropriate.
11989         (write_text) Fixed `literal_char' array (I think it's fixed, at
11990         least.)
11991         (text) Fixed bug when width was zero.  Now exits immediately on
11992         zero height_left.  Now, when executing `goto restart;', checks
11993         that cp<end, so that we don't read beyond end-of-string.  Also,
11994         outputs the correct code to the output file by outputting the code
11995         from the metric instead of the internal metric index.
11996
11997         * repeat.c: (cmd_end_repeat) New function.
11998
11999         * som.c: (var som) `headers' renamed `options' and semantics
12000         changed.  All references changed.
12001         (draw_title) `if(px!=-1 || px!=-1)' --> `if(px!=-1 || py!=-1)'.
12002         (build_target) Only inserts spacing if SOM_TOPT_SPACING not
12003         selected.
12004         (som_text_table) Removed.
12005         (som_output_text) New function.
12006
12007         * som.h: (struct som_submission_form) Removed `header', `reuse',
12008         replaced with bitmapped field `options'.
12009         (SOM_TOPT_*) New enum set for som_submission_form.options.
12010         (SOT_*) New enum set for som_output_text().
12011
12012         * temporary.c: (copy_variable) When copying the var label, only
12013         calls xstrdup() if it's non-NULL.
12014
12015         * var.h: (enum type `vartype') Removed; all references changed to
12016         `int'.
12017
12018         * vars-atr.c: (init_variable) Changed local var `nbytes' from
12019         `int' to `size_t'.
12020
12021 Thu Sep  5 22:05:56 1996  Ben Pfaff  <blp@gnu.org>
12022
12023         * font.h: Comment changes.
12024
12025         * groff-font.c: (groff_read_font) Initializes `name' field to
12026         NULL.  Handles `encoding' field.
12027
12028         * hash.c: (hsh_dump) [GLOBAL_DEBUGGING] Output formatting changes.
12029
12030         * postscript.c: (struct font_entry) Removed `position' field.
12031         (struct ps_font_combo) New struct.
12032         (struct ps_driver_ext) Removed field `next_position'.  New fields
12033         `combos', `next_combo'.  `last_font' field changed from
12034         `font_entry *' to `ps_font_combo *'.
12035         (ps_init_driver) Reformatted; handles new fields.  When
12036         OPO_AUTO_ENCODE is set, adds the two default fonts' encodings to
12037         the encoding list.
12038         (get_encoding, find_encoding_file) New functions.
12039         (add_encoding) Some code moved out into find_encoding_file().
12040         (postopen) Changed value for ${title}.
12041         (preclose) Sets `loaded' field to NULL after destroying the hash
12042         table.
12043         (ps_open_page) Added comment.  Inits the `combos' and `next_combo'
12044         fields.
12045         (ps_text_set_font_by_position) Figures out the current family if
12046         not known.
12047         (compare_ps_combo, hash_ps_combo, free_ps_combo) New functions.
12048         (switch_font) Implemented.
12049         (write_text) Calls switch_font() more often.  Format changes.
12050         #undefs its macros after they're no longer useful.
12051         (text) Changed `continue' at one point to a jump to the top of the
12052         loop because we don't want `separate' reset to 0 at that point.
12053         (load_font) No longer sets `position' in the font_entry created.
12054
12055 Wed Sep  4 21:45:35 1996  Ben Pfaff  <blp@gnu.org>
12056
12057         * font.h: (struct font_desc) New member `encoding', which is not
12058         properly handled yet.
12059
12060         * glob.c: (init_glob) Some new i18n code, which is probably
12061         screwed up.
12062
12063         * output.c: (outp_read_devices, outp_get_paper_size) Changed
12064         `size' local from `int' to `size_t'.
12065
12066         * postscript.c: New driver configuration parameter `auto-encode'.
12067         New enums OPO_AUTO_ENCODE, ODA_COUNT.
12068         (struct font_entry) New member `position'.
12069         (struct ps_driver_ext) Reordered.  New hash table member
12070         `encodings'; new members `next_position', `next_encoding',
12071         `last_font'.  Members `current', `prop', `fixed' changed from type
12072         `font_desc *' to `font_entry *'; all references changed.
12073         (struct ps_encoding) New struct.
12074         (read_ps_encodings, compare_ps_encoding, hash_ps_encoding,
12075         free_ps_encoding, add_encoding) New functions.
12076         (ps_init_driver) Added OPO_AUTO_ENCODE to default
12077         x->output_options.  Initializes new members of ps_driver_ext.
12078         Changed default value for prologue_fn, encoding_fn.  Calls
12079         read_ps_encodings after loading default fonts.
12080         (option_tab[], ps_option) Handle new configuration parameter.
12081         (switch_font) New function.
12082         (struct output_char) `font' member changed from `font_desc *' to
12083         `font_entry *'.  New member `separate'.
12084         (read_fontmap) Changed `size' from `int' to `size_t'.
12085         (output_line, put_number) New macros for write_text().
12086         (write_text) Optimizes text output by consolidating multiple
12087         calls to PostScript `show' operator.
12088         (text) Keeps track of when text arguments can't be consolidated by
12089         write_text(), and marks those spots in the output stream.
12090         (load_font) Sets `position' of the allocated font_entry to -1, cuz
12091         the font hasn't been switched to by switch_font(), which is where
12092         the position is important--the PostScript is what cares about the
12093         position.
12094
12095 Sat Aug 31 23:52:38 1996  Ben Pfaff  <blp@gnu.org>
12096
12097         * hash.c: (hsh_destroy) Ignores NULL argument.  Doesn't try to
12098         call a NULL free_func.
12099         (hsh_rehash) Elegantized.
12100         (hsh_probe) Fix bug that manifested when the table was expanded
12101         and thus had to change location in memory.  Good thing
12102         too--otherwise could have been much more subtle.
12103         (hsh_find) [GLOBAL_DEBUGGING] Not stubbed out anymore.
12104         (hsh_foreach) New function for hash table iteration.
12105
12106         * hash.h: (struct hsh_iterator) New.
12107
12108         * lexer.c: (parse_tagged_quote) Font and family name strings in
12109         tags are now null-terminated.
12110
12111         * output.c: (outp_evaluate_dimension) Fixed over-aggressive unit
12112         parsing.
12113         (internal_get_paper_size, outp_get_paper_size) Fixed; now work as
12114         documented.  (Never before tested?)
12115
12116         * output.h: Comment changes.
12117
12118         * postscript.c: New driver options `optimize-text-size',
12119         `optimize-line-size', `max-fonts-simult'.  New enum set for
12120         specing cached line types.  Comment fixes.
12121         (struct line_form) New struct.
12122         (struct ps_driver_struct) New members `text_opt', `line_opt',
12123         `max_fonts', `lines'.
12124         (ps_init_driver) Initializes new members of ps_driver_struct.
12125         (user option type enum set) New member `nonneg_int_arg'.
12126         (static var option_tab[]) Supports new options.
12127         (ps_option) Handles new options.
12128         (find_ps_file) Made static.  No longer calls hsh_dump().
12129         (ps_get_var) Made static.
12130         (preclose) Dumps out proper DSC trailer.
12131         (ps_open_page) Elegantized.
12132         (ps_close_page) Calls dump_lines() if appropriate.
12133         (ps_line_horz, ps_line_vert, ps_line_intersection) Reduced to
12134         wrappers around line().
12135         (int_2_compare, compare_line, dump_line, dump_fancy_line,
12136         dump_lines, hash_line, free_line, line) New functions for support
12137         of line caching.
12138         (write_text, text) Made static.
12139         (text) Added to font support, not finished.
12140
12141 Thu Aug 29 21:36:41 1996  Ben Pfaff  <blp@gnu.org>
12142
12143         * font.h: (struct font_desc) New members ascent, descent.
12144
12145         * groff-font.c: (groff_read_font) Calculates font ascent and
12146         descent from the ascent and descent of the `d' and `p' characters,
12147         respectively, as per a suggestion on comp.fonts.
12148
12149         * postscript.c: (ps_open_page, ps_close_page, ps_line_horz,
12150         ps_line_vert, ps_line_intersection) Rewritten to deal with changed
12151         prologue.
12152         (write_text) Handles text right-justification and centering (not
12153         full justification).  Still very inefficient.  (One output line
12154         per character?!)
12155         (struct output_char) Added fields for font and font size.
12156         (text) Many bugfixes.
12157
12158 Sat Aug 24 23:26:00 1996  Ben Pfaff  <blp@gnu.org>
12159
12160         * cmdline.c: (usage) Calls outp_list_classes().
12161
12162         * font.h: Comment fix.
12163
12164         * groff-font.c: New exported global var `space_index'.
12165         (groff_init) New function to initialize `space_index'.
12166         (hash_kern) Casts result to unsigned.
12167         (font_name_to_index) Renamed font_char_name_to_index.  All
12168         references changed.  Also, now returns the value of `space_index'
12169         when passed an ASCII space character as an argument.  Fixed
12170         handling of nulls.
12171         (font_get_kern_adjust) Changed i from `int' to `unsigned'.
12172         Handles passed NULL pointers properly.
12173
12174         * lexer.c: (parse_tagged_quote) Comment fix.  Better range
12175         checking.
12176
12177         * output.c: (outp_list_drivers) Removed.  Removed all references.
12178         
12179         * output.h: Comment fixes.
12180
12181         * postscript.c: (ps_open_global) Calls groff_init().
12182         (output_char) New structure.
12183         (write_text) New function.
12184         (text) No longer stubbed out!  Now the output is correct--with a
12185         few exceptions, one of them being that the page has to be held
12186         upside down into a mirror.
12187
12188 Sun Aug 11 21:31:22 1996  Ben Pfaff  <blp@gnu.org>
12189
12190         * font.h: Comment fix.
12191         
12192         * font.c: (name_to_index) Renamed font_name_to_index, made extern.
12193         All callers changed.
12194         (number_to_index) Renamed font_number_to_index, made extern.  All
12195         callers changed.
12196         (font_get_kern_adjust, font_get_char_metrics) New functions.
12197
12198         * output.h: New constant OUTP_T_INTERNAL_DRAW.
12199
12200         * postscript.c: Changed default line width back to 1/2 point.
12201         (ps_line_horz, ps_line_vert, ps_line_intersection) Now lines are
12202         in the center of the space allotted for them, not just a fixed
12203         offset from the edge of the space; this fixes some bugs.
12204         (ps_line_intersection) Now supports all command line styles.
12205         (ps_text_get_size) Bug fix in computation of em width.
12206         (text) New function, the meat behind ps_text_metrics and
12207         ps_text_draw.  Not complete.
12208         (ps_text_metrics, ps_text_draw) Removed the stub taken from
12209         ascii.c; call text().
12210
12211 Sat Aug 10 23:28:17 1996  Ben Pfaff  <blp@gnu.org>
12212
12213         * arena.c: (arena_free) Assert that the argument is non-NULL.
12214         
12215         * groff-font.c: (add_kern) Calls arena_free() for old_kern if and
12216         only if old_kern is non-NULL.
12217
12218         * postscript.c: (ps_init_driver) Changed default line width to 1
12219         point.
12220         (postopen) New prologue variables.
12221         (ps_line_horz, ps_line_vert, ps_line_intersection) Implements some
12222         more of the common line styles properly, but not all.
12223         (ps_text_metrics) Fixed problem with this stubbed out version that
12224         kept it from taking font sizes into account.
12225
12226 Thu Aug  8 22:31:11 1996  Ben Pfaff  <blp@gnu.org>
12227
12228         * arena.c: (arena_malloc) Bug fix.
12229         (arena_dump) [GLOBAL_DEBUGGING] New function.
12230
12231         * ascii.c: Comment fix.
12232         (count_fancy_chars, delineate) Now static functions.
12233         
12234         * filename.c: (interp_vars) Bug fixes.
12235
12236         * font.h: Comment fixes.
12237
12238         * glob.c: (init_glob) Sets set_viewwidth, set_viewlength at
12239         beginning in case we have an error message to display before
12240         initializing the display.
12241
12242         * groff-font.c: Comment fix.  Changed rehash threshold from 2/3
12243         full to 1/2 full.
12244         (groff_read_font) Bug fixes.
12245         (name_to_index) Increments hash.used.  Sets `name' field of hash
12246         entry properly.
12247         (add_kern) Sets kern_max_used after rehashing.  Other bug fixes.
12248
12249         * hash.c: Return type changed.
12250
12251         * postscript.c: Continued development.  Now marks lines on the
12252         paper, but very buggy.
12253
12254 Sat Aug  3 20:50:35 1996  Ben Pfaff  <blp@gnu.org>
12255
12256         * Changed comments in many source files from `/* xxx /* yyy */' to
12257         `/* xxx */ /* yyy */' for cleanliness.
12258
12259         * arena.c: (arena_sd_strdup) New function.
12260         
12261         * ascii.c: (struct ascii_driver_ext) New member `file'.
12262         (ascii_init_driver) Fills out member `file' for initing; uses
12263         close_file_ext for closing drivers.
12264         (ascii_option) Changed %.*s back to %s because the a_string's are
12265         always null-terminated.
12266         (postopen, preclose) New functions.
12267         (ascii_open_page) Uses new style of open_file_ext.
12268         (ascii_option, commit_line_buf, output_lines) Use ext->file.file
12269         instead of this->output.
12270         (__assert_fail) Removed.
12271
12272         * cmdline.c: Changed syntax_message[].
12273
12274         * error.c: #include's <readline/history.h> only if the history
12275         library is available, not if just the readline library is
12276         available.
12277
12278         * filename.c: (expand_line) Removed alloca() support.
12279         (interp_vars) No longer tilde-expands argument.  Limit on output
12280         length removed.
12281         (tilde_expand) Now treats argument as path rather than filename.
12282         [!unix] Now is a no-op function.
12283         (search_path) Better verbose message formatting.
12284         (open_file, close_file) Comment fixes.
12285         (close_file) [!unix] Doesn't bother with pipes.
12286         (open_file_ext) Completely rewritten, interface revamped.
12287         (close_file_ext) New function.
12288
12289         * font.h: Comment changes.
12290
12291         * frequencies.q: Removed AIX alloca support since it doesn't use
12292         alloca.
12293
12294         * hash.c: Comment changes & additions.
12295         (hsh_create) Initializes entire table instead of first M entries.
12296         (hsh_probe) Stupid bug fixed.  Now it works.
12297         (hsh_dump) [GLOBAL_DEBUGGING] New function.
12298
12299         * main.c: (parse) Detects EOF properly in token-eating loop.
12300         Should the STOP token have its value changed to 0?
12301
12302         * misc.c: (blp_getdelim) [HAVE_GETDELIM] Now it's a macro.
12303         (blp_getline) Now it's a macro.
12304
12305         * output.h: (struct outp_driver) Removed members output, filename.
12306         
12307         * output.c: (outp_init) [!NO_POSTSCRIPT] Installs PostScript
12308         drivers in driver table.
12309         (outp_read_devices) Frees buf.  Warns if there are no active
12310         output drivers.
12311         (outp_configure_clear) Sets outp_configure_vec to NULL after
12312         deleting its elements.
12313         (configure_driver, destroy_driver) Removed references to output,
12314         filename members of outp_driver.
12315         (outp_evaluate_dimension, internal_get_paper_size,
12316         outp_get_paper_size) New functions.
12317
12318         * postscript.c: Continued development.  Now links but doesn't make
12319         any marks on the page.  Lotsa bugs I suppose.
12320
12321         * str.c: (strcasecmp) [!HAVE_STRCASECMP] New function.
12322
12323         * str.h: Comment changes.
12324
12325 Sat Jul 27 22:32:38 1996  Ben Pfaff  <blp@gnu.org>
12326
12327         * Removed dependencies on non-nested comments in several files.
12328         Also removed references to (unix || __unix__) in #if's since
12329         prefh.orig makes those two equivalent.
12330         
12331         * ascii.c: (ascii_open_global) Creates ascii_arena.
12332         (ascii_close_global) Destroys ascii_arena.
12333         (ascii_init_driver) Doesn't create ascii_arena.
12334         (ascii_copy_driver) Removed.
12335         (ascii_option) Possible bugfix regarding %s vs. %.*s with a_string's.
12336         (outp_class ascii_class) Removed ascii_copy_driver reference.
12337
12338         * frequencies.q: Now can display all statistics except median.
12339         Still not finished.
12340
12341         * output.c: Handles outp_class.ref_count so output class
12342         destructors are called properly.
12343         (add_class) Sets ref_count to 0.
12344         (configure_driver) Initializes class if ref_count++ is 0.
12345         (destroy_driver) Destructs class if --ref_count is 0.  Frees the
12346         class output file name.
12347         
12348         * output.h: (struct outp_class) Removed copy_driver, inited.
12349         Added ref_count.
12350
12351         * postscript.c: Completely replaced but not finished.
12352         
12353 Tue Jul 23 21:48:36 1996  Ben Pfaff  <blp@gnu.org>
12354
12355         * approx.h: #includes <float.h>.
12356
12357         * arena.h, arena.c: Many functions changed to take an arena **
12358         instead of an arena *, for consistency.  All callers changed.
12359         (arena_alloc) Now creates a new arena if passed *A that is NULL.
12360         (arena_destroy) Sets *A to NULL.
12361         
12362         * ascii.c: (delineate) Implements OUTP_T_VERT correctly.  Removed
12363         assertion that `width' be positive.
12364
12365         * command.c: Removed #if's from cmd_table.
12366         (walk_cmdtable_func) [0] New function (debug code).
12367         (init_cmd_parser) [0] Dumps out cmd_table (debug code).
12368         (parse_cmd) Doesn't return failure for unimplemented commands.
12369
12370         * common.h: (SYSMIS) Changed from DBL_MAX to -DBL_MAX.
12371         (SYSCODE) New constant macro.
12372
12373         * descript.q: Checks for positive n_variables before performing
12374         analysis.
12375
12376         * file-handle.q: (get_handle_by_filename) Bug fix: passes &f to
12377         avl_find instead of &fp as arg 2.
12378
12379         * frequencies.g, frequencies.q: Continued updating; now compiles &
12380         works again, but not complete.
12381
12382         * main.c: Changes to user messages.
12383
12384         * misc.c: (reverse) [0] New function.
12385
12386         * settings.h: Comment removed.  #includes "common.h".
12387
12388         * som.c: (som_set_null) New function.
12389         (som_set_value, som_set_string, som_set_text) More detailing
12390         assertions.
12391         (som_set_float) Implemented function.
12392         (dump_columnated_table) Bug fix regarding page breaks.
12393         (draw_cell) Bug fix regarding text that spilled out of a cell.
12394         (draw_intersection, draw_horz_rule, draw_vert_rule) No longer draw
12395         null lines.
12396         (get_cell_size) Support SCON_EMPTY cells.
12397         (get_table_size) When calculating rules' widths and heights, mask
12398         out SLIN_SPACING bit.  Added SOPT_X_HLTL support.
12399         
12400         * som.h: (som_any_cell) New option SOPT_X_HTLT.  Removed
12401         SOPT_X_SHADE.
12402         (struct som_submission_form) New member `header'; all users
12403         changed.
12404
12405         * val-labs.c: (get_label) User messages changed.
12406
12407         * var.h: Changed FREQUENCIES structures.
12408
12409         * vars-atr.c: (is_num_user_missing, is_str_user_missing) Made
12410         inline.
12411         
12412 Fri Jul 19 19:11:13 1996  Ben Pfaff  <blp@gnu.org>
12413
12414         * approx.h: Definition of EPSILON now depends on system's
12415         DBL_EPSILON.  Removed GNU C specific code.
12416         (cmpapx) Renamed approx_compare.
12417
12418         * frequencies.g, frequencies.q: Continued updating; still doesn't
12419         compile.
12420
12421         * groff-font.c: (name_to_index) Fix bug that kept it from
12422         compiling.
12423
12424         * hash.c, hash.h: Completed work.
12425
12426         * var.h: Changes to freq_tab, frequencies_proc.
12427         
12428 Wed Jul 17 21:23:36 1996  Ben Pfaff  <blp@gnu.org>
12429
12430         New hashing code.
12431         * hash.c, hash.h: New files.  Not completed.
12432         * Makefile.am: Added hash.c to source file list.
12433         * font.h: (struct font_desc) New member kern_size_p.
12434         * groff-font.c: Uses hash.h.
12435         (hashpjw) Moved to hash.c.
12436         (next_prime_power) Rewrote, renamed hsh_next_prime, moved to
12437         hash.c.
12438         (static var hash) New member size_p.
12439         * var.h: Includes hash.h.
12440         (struct freq_tab) Changed AVL_TREE to hash_tab.
12441
12442         * vars-prs.c: Comment, formatting fixes.
12443
12444         * frequencies.g, frequencies.q: Continued updating.  Not yet
12445         working.
12446
12447         * formats.c: Bug fix.
12448
12449 Tue Jul 16 22:10:04 1996  Ben Pfaff  <blp@gnu.org>
12450
12451         Increasing parallelism between DESCRIPTIVES and FREQUENCIES.
12452         * descript.g: Comment fixes.
12453         * descript.q: Comment fixes.  Moved some declarations into var.h.
12454         Made dsc_info a static table.  Updated FIXMEs.
12455         (internal_cmd_descriptives) Beautified.
12456         
12457         * frequencies.q: Started updating into working order.
12458         * frequencies.g: New file analogous to descript.g.
12459         * var.h: Comment fixes.  Added structures for FREQUENCIES.
12460         
12461         * som.c: Removed vestiges of crushing and partial table support.
12462
12463 Sun Jul 14 15:45:31 1996  Ben Pfaff  <blp@gnu.org>
12464
12465         * Many more changes to som.c especially, but these will not be
12466         documented as I have resolved to remove them.  This patchlevel is
12467         being released solely so that I can fall back to it if I decide
12468         that removing the changes is not a good idea.
12469
12470 Sat Jul 13 09:58:44 1996  Ben Pfaff  <blp@gnu.org>
12471
12472         * som.c: (global var som) New member `cum_y'.
12473         (build_target) Properly handles titles for partial tables.
12474         (dump_partial_beg, dump_partial_mid, dump_partial_end)
12475         Merged into single new function dump_partial().  Fixed problem
12476         with titles on partial tables.
12477         (dump_table) Calls dump_partial() for all parts of partial tables.
12478         (dump_page) Criteria for drawing title changed.
12479         
12480 Fri Jul 12 22:03:36 1996  Ben Pfaff  <blp@gnu.org>
12481
12482         * command.c: (cmd_table) Added LIST, WEIGHT.
12483
12484         * command.c: (cmd_remark) No longer frees `s' since it's not
12485         dynamically allocated.
12486         
12487         * data-out.c: (convert_f) Now correctly handles the case where
12488         abs(v->f)<1 but v->f rounds to a value of 1.00 given the specified
12489         number of decimals.
12490         (som_destroy_all_tables) Removed argument.  All callers changed.
12491         (som_vline, som_hline) Argument validity checking corrected.
12492         (som_set_value) Implemented half-heartedly.
12493         (replicate_table) Copies tables piece-by-piece when using Checker.
12494
12495         * som.h: New line style SLIN_1THIN, currently equivalent to
12496         SLIN_0.  New enum set SOM_SUB_*.
12497         (struct som_submission_form) Removed `seq_no'.  Added `type'.
12498         
12499         * list.q: Newly working file; uses partial tables.
12500         
12501         * som.c: (som_reduce_table) Renamed som_set_table_height().
12502         (som_crush) Removed argument `group'.
12503         (global var som) Removed `nt', `seq_no'.  Added `type'.
12504         (som_submit_table) Arguments changed.
12505         (output_table) Removed partial table code.
12506         (build_target) New arg; partial table support added.  All callers
12507         changed.
12508         (dump_plain_table) Removed partial table code.
12509         (dump_partial_beg, dump_partial_mid, dump_partial_end) New functions.
12510         (dump_table) Supports partial tables.
12511         (dump_page) New argument to allow not drawing top and/or bottom
12512         headers.  All callers changed.  Supports partial tables.
12513
12514 Sat Jul  6 22:22:25 1996  Ben Pfaff  <blp@gnu.org>
12515
12516         * data-out.c: Changed `#include <approx.h>' to `#include
12517         "approx.h".
12518         (convert_F) Comment fix.  Now won't print `-.000', etc.
12519
12520         * descript.q: Now Z-scores work, although there appears to
12521         be a bug (which might actually be in data-out.c:convert_F()).
12522         (descriptives_trns_proc, descriptives_trns_free) New functions.
12523         (run_z_pass) Implemented.
12524         
12525         * var.h: Comment fixes.
12526         (dsc_z_score, descriptives_trns) New structs.
12527         (descriptives_trns) Added to any_trns as `dsc'.
12528
12529         * error.c, error.h: New error class, IS (Installation Script
12530         error), used in those instances where the error is in the
12531         installation, but there is a script file or installation file that
12532         can be usefully referred to.
12533         
12534         * output.c: Change many IE classes to IS classes.
12535
12536         * cases.c, command.c, common.c, crosstabs.q, expr-evl.c,
12537         frequencies.q, list.q, vars-prs.c, vfm.c: Removed reference to
12538         HAVE_MALLOC_H because Borland C++ alloca() is broken, so why
12539         include the corresponding header?
12540         
12541         * glob.c: (init_glob) Don't malloc term_buffer under Checker.
12542         Don't bail out if termcap can't be read.
12543
12544         * som.c: (som_destroy_table) Removed.
12545         (som_reduce_table, som_destroy_all_tables) New functions.
12546         (som_crush) New function, not implemented.
12547         
12548         * som.h: New table option STAB_CRUSH.  Comment fix.  New struct
12549         som_submission_form.  Function prototypes revised.
12550
12551         Outputting huge tables (1000s of rows) a few rows at a time
12552         is supported, though untested.  May even break everything.
12553         Actually, the code doesn't even compile right now.
12554         * som.c: (struct som) New fields htv, nt, seq_no.
12555         (som_submit_table) Multiple arguments changed to a single
12556         pointer to struct submission_form.  Only increments subtable_num
12557         if seq_no is zero.  Only destroys table if it's not going to
12558         be reused.
12559         (replicate_table) New function.
12560         (output_table) Comment fix.
12561         (examine_table) Changed inline code to code calling
12562         replicate_table().  Calculates htv.  Supports partial tables.
12563         (draw_title) Removed comment.
12564         (build_target) Only allows for title on first part of partial
12565         tables.
12566         (dump_plain_table) Only resets table chunk number on first part
12567         of partial tables; FIXME: doesn't work quite right.  Supports
12568         partial tables.
12569         (dump_page) Titles only on first part of partial tables.
12570
12571 Fri Jul  5 20:16:19 1996  Ben Pfaff  <blp@gnu.org>
12572
12573         * Thanks to an unreliable IDE hard drive, I have spent the last
12574         day reconstructing my Debian GNU/Linux installation and redoing
12575         the previous day's changes--somehow I managed to save every file
12576         except for output.c and output.h.  So the following changes could
12577         really be considered independent of the output.c, output.h changes
12578         from Jul 4.
12579
12580         * output.h, output.c: Moved the outp_configure_vec global var,
12581         outp_names struct, and enum set OUTP_S_* from output.h to output.c.
12582         outp_configure_vec is now static.
12583         
12584 Thu Jul  4 20:20:24 1996  Ben Pfaff  <blp@gnu.org>
12585
12586         * The entire philosophy behind configuration of the output drivers
12587         changed.  Now there is a termcap-type configuration where drivers
12588         to be read are determined beforehand, rather than parsing the
12589         entire output init file and storing it in memory & deciding what
12590         to actually use later.  Faster & more memory-efficient at the same
12591         time, cool.
12592         
12593         * output.c: Comment fix.  Removed outp_init_drivers global var.
12594         Removed all references to synonyms.  New structure outp_defn.  New
12595         global vars outp_macros, outp_configure_vec.
12596         (search_name, delete_name, add_name, check_configure_vec,
12597         expand_name, find_defn_value) New static functions.
12598         (outp_configure_clear, outp_configure_add, outp_configure_macro,
12599         outp_read_devices) New extern functions.
12600         (outp_init) Much functionality moved into outp_read_devices.
12601         (outp_read_devices) Format of output init file changed; name of
12602         file is `devices' rather than `output' to avoid Makefile
12603         conflicts.
12604         (outp_clear) Renamed outp_done.
12605         (outp_list_classes) Bug fix, cleaned up.
12606         (outp_list_drivers) Not implemented anymore.
12607         (outp_configure_driver) Now a static function; simplified; now
12608         interpolates macros; supports new structure.
12609         (outp_enable_driver, match_synonym) Removed; all references
12610         removed.
12611         (find_driver) First argument removed.
12612         
12613         * output.h: Global var outp_init_drivers removed; new structure
12614         outp_names; new enum set OUTP_S_*; new global var
12615         outp_configure_vec; function prototypes for output.c exports
12616         updated.
12617         
12618         * main.c: (main) Calls outp_read_devices() after parsing the
12619         command line.
12620         
12621         * cmdline.c: (parse_command_line) New option -v --verbose;
12622         --version changed to -V.  --device option changed syntax to just
12623         take a single device name.  Accepts key=value declaration of
12624         output init file macros.  Syntax message updated.
12625
12626         * filename.c: (expand_line) New function.
12627         (interp_environ_vars) Renamed interp_vars; no longer uses
12628         fixed-size buffer.
12629         (blp_getenv) Allows $ARCH and $VER pseudo-environment-vars to be
12630         overridden by real environment vars.
12631         (search_path) Uses verbose_msg() instead of #ifdef'd printf().
12632         * filename.h: interp_environ_vars() renamed interp_vars().
12633         
12634         * error.c, error.h: Added extern variable `verbosity', message
12635         class MM.
12636         
12637         * error.c: (vmsg) Support message class MM.
12638         (verbose_msg) New function.
12639
12640         * descript.q: (generate_z_varname) Bug fix in generation of
12641         Z-score varnames.
12642         (dump_z_table) Bug fix in column headers.
12643         
12644         * ascii.c: (ascii_init_driver) Changed minimum number of lines per
12645         page from 29 to 15.  Don't set a default for ops[OPS_INIT,
12646         OPS_DONE].  Writes the uninit string when the driver is closed.
12647         (ascii_open_page) Write the init string before the first page.
12648         (output_shorts) Form of main loop changed from `while' to `for'.
12649         Bug fix with overstrikes: the character is printed *after* the
12650         backspace.  Eliminated a lot of `& 0xff' modifiers.
12651         (advance_to_left_margin) New function.
12652         (return_carriage, output_lines) Handle left margin.
12653
12654 Thu Jul  4 00:35:59 1996  Ben Pfaff  <blp@gnu.org>
12655
12656         * ascii.c: New option `carriage-return-style'.
12657
12658         * ascii.c: (count_fancy_chars) New function.
12659         (delineate, text_metrics) Use new function; bug fixes regarding
12660         rich text strings.
12661         (text_draw) Bug fix with rich text.
12662         (output_string, output_shorts) Reordered.
12663         (output_shorts) Now handles boxchars and some overstrike font
12664         changes.
12665         (output_char, return_carriage) New functions.
12666         (output_lines) Now handles overstriking and font changes properly;
12667         some code moved to output_shorts.
12668
12669 Tue Jul  2 22:13:23 1996  Ben Pfaff  <blp@gnu.org>
12670
12671         [GLOBAL_DEBUGGING]
12672         * ascii.c: New member `debug' in ascii_driver_ext.
12673         (ascii_init_driver, delineate) Uses new member.
12674
12675         Now you can set a vertical height on writing text.
12676         * ascii.c: (delineate) Keeps track of vertical position.
12677         (text_draw) No longer considers fully justified text an internal
12678         error.
12679         
12680         * output.h: New flag OUTP_T_VERT; other OUTP_T_ values changed.
12681
12682         Tables' titles are drawn; they can have variable height.
12683         * som.c: `som' struct has new member, title_height.
12684         (draw_title) New argument.  Moved within file.  All caller
12685         changed.
12686         (build_target) New argument, amount of space needed for first row.
12687         Calculates height of title, takes that into account.  All callers
12688         changed.
12689         (dump_plain_table, dump_columnated_table) Took calculation of y1,
12690         y2 out of loop.
12691         (dump_columnated_table) [GLOBAL_DEBUGGING] Debugging code
12692         improved.
12693         (dump_columnated_table) Organized for readability.
12694         (dump_page) Makes use of som.title_height.
12695
12696         * som.c: Many comment bug fixes.
12697
12698         * descript.q: (try_name, generate_z_name) Bug fix regarding
12699         generation of Z-score variable names.
12700         * var.h: Removed num from descriptives_proc; all referents removed.
12701
12702 Mon Jul  1 22:13:39 1996  Ben Pfaff  <blp@gnu.org>
12703
12704         * ascii.c: (ascii_line_horz, ascii_line_vert,
12705         ascii_line_intersection) Added debugging code.
12706
12707         Added a descriptive line above each table to describe it.
12708         * command.c: (parse_cmd) Calls som_new_series.
12709         
12710         * som.c: New static vars table_num, subtable_num.  New `som'
12711         member `title'.
12712         (dump_page) New arguments.
12713         (som_submit_table) Handle new variables.
12714         
12715         * som.c, som.h: (som_submit_table) New arguments.  All callers
12716         changed.
12717         (som_new_series) New function.
12718         (build_target) Makes room for extra line.
12719         (draw_title) New function.
12720         (dump_page) Calls draw_title.  Bug fix: doesn't always set
12721         som.ext->cp to 0.
12722         
12723         Columnation of tables support.
12724         * som.h: Deleted fr, lr, ri from som_table.  Reorganized.
12725         
12726         * som.c: Deleted references to fr, lr, ri.
12727         (som_columnate) Bux fix: sets group member of table.
12728         (som_add_options) Function removed.
12729         (dump_table) Split into three functions; extensively reworked.
12730         
12731         * descript.q: (dump_z_table) Better output table formatting; added
12732         title support to correspond to som.h changes.
12733         (display) Title support.
12734
12735         * output.h: Added OUTP_T_NONE.
12736         
12737 Mon Jul  1 13:00:00 1996  Ben Pfaff  <blp@gnu.org>
12738
12739         * descript.q: Improved handling of Z scores; still not perfect.
12740         
12741         * output.h, ascii.c: Added hook for getting em width of current
12742         font.
12743         
12744         * som.c: Uses new em-width hook.  Added debugging code to
12745         several functions.
12746         (som_columnate) New argument.
12747         (som_add_options) Removed.
12748
12749 Jun 29 17:40:47 1996  Ben Pfaff  <blp@gnu.org>
12750
12751         * som.h, som.c, output.c, output.h, ascii.c: Updated to work with
12752         rules as a property of the table instead of as a property of the
12753         cells.
12754         
12755         * ascii.c: Added `header' to table of options.
12756         
12757         * descript.q: Added even shorter statistic names; modified to work
12758         with new som interface.
12759         
12760         * misc.c (blp_getdelim): Bug fix.
12761         
12762         * version.c: includes 'conf.h'.
12763         
12764 ----------------------------------------------------------------------
12765 Local Variables:
12766 mode: change-log
12767 version-control: never
12768 End: