Clean up pref.h.orig and deal with the consequences.
[pspp-builds.git] / src / ChangeLog
1 Wed Feb 11 23:56:51 2004  Ben Pfaff  <blp@gnu.org>
2
3         Miscellaneous cleanups.
4         
5         * Change unused to UNUSED in many source files to reflect modified
6         pref.h.  Change use of __WIN32__, __MSDOS, __DJGPP__,
7         __CYGWIN32__, __unix__, and unix not to assume that they're
8         defined to a nonzero value.  Change use of __attribute__ to use
9         NO_RETURN or PRINTF_FORMAT instead.
10         
11         * alloc.h: Move definitions for local_alloc(), local_free() here
12         from ../pref.h.orig and simplify.
13
14         * expr-evl.c: Instead of working differently based on PAGED_STACK,
15         use a pool allocator unconditionally.
16         (CHECK_STRING_SPACE) Removed.
17         (ALLOC_STRING_SPACE) Removed.
18         (expr_evaluate) Use e->pool instead of CHECK_STRING_SPACE and
19         ALLOC_STRING_SPACE.
20
21         * expr-opt.c: (dump_expression) Allocate string pool.
22
23         * expr-prs.c: (expr_free) Free string pool.
24
25         * pool.c: (pool_destroy) This pool must be removed from its
26         parent's list of gizmos, not from its own.  Use free_all_gizmos().
27         (pool_clear) New function.
28         (free_all_gizmos) New function.
29         (pool_alloc) Use space in empty block after this one if any.
30         (pool_release) Only empty out blocks, don't actually free() them.
31
32         * print.c: Get rid of PAGED_STACK special case by always
33         dynamically allocating line buffers.
34         (struct print_trns) Always include the `line' member.
35         (internal_cmd_print) Always initialize the `line' member.
36         (alloc_line) Always allocate memory for `line'.
37         (print_trns_proc) Always initialize buf from `line' member.
38         (print_trns_free) Always free `line' memory.
39
40         * sort.c: (allocate_file_handles) Special-case MS-DOS for mkdir()
41         call.
42         
43 Wed Feb 11 20:33:18 2004  Ben Pfaff  <blp@gnu.org>
44
45         * flip.c: Fixed crash from FLIP when a numeric variable is
46           specified on NEWNAMES and a large value is used, and a couple of
47           other minor bugs besides.
48           (struct varname) Make name a 9-character fixed-size array
49           instead of a 1-character variable size array.
50           (make_new_var) Allow digits in variable names.
51           (flip_stream_write) Limit numeric values to 8 characters and
52           format system missing and very large and small values more
53           appropriately.
54
55 Thu Feb  5 13:19:06 WAST 2004 John Darrington <john@darrington.wattle.id.au>
56
57         * command.c: Fixed test on command return status for the correct 
58           value,  which had been causing a crash under certain invalid input.
59
60 Wed Feb  4 15:34:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
61
62         * t-test.q: Added calculations for the one sample variant of the T-TEST
63
64 Tue Feb  3 20:09:54 2004  Ben Pfaff  <blp@gnu.org>
65
66         * tab.c: (render_strip) Fix bug that sometimes caused joined text
67           in joined cells to be rendered outside box boundaries.
68
69 Tue Feb  3 18:56:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
70
71         * random.c (rng_create): Fixed seeding so that it gets reseeded after
72         SET seed=xx has been called.
73
74 Mon Jan 19 14:08:09 2004  Ben Pfaff  <blp@gnu.org> 
75
76         * random.c (rng_get_double): Fix always-returning-zero bug in my
77         preferred way, and at the same time make sure rounding doesn't
78         bite us.
79
80 Thu Jan  1 23:16:41 2004  Ben Pfaff  <blp@gnu.org>
81
82         * html.c: (change_attributes) Dead code, removed.
83         (escape_string) Eliminate code to call change_attributes() that
84         never actually called it.
85         (output_tab_table) Get rid of dependence on tab_hit
86         and struct tab_joined_cell's hit member, which are abominations.
87
88         * tab.c: (tab_output_text) Don't call
89         d->class->text_set_font_by_name if it's a null pointer.
90         (macro UNROLL_LOOP) Eliminate.
91         (macro UNROLL_3_LOOPS) Eliminate.
92         (tabi_render) Rewrite not to use the above macros.
93
94 Thu Jan  1 23:09:07 2004  Ben Pfaff  <blp@gnu.org>
95
96         Start working on a new output driver system, one that doesn't suck
97         so much, by adding a "device-independent" output driver.  The idea
98         is to write out only a single output stream, then use separate
99         processes to translate them into whatever formats we want.  This
100         is similar to how "groff" works with its various output drivers
101         (grops, grotty, grodvi, ...).
102         
103         * Makefile.am: (pspp_SOURCES) Add devind.c, devind.h.
104
105         * list.q: (write_all_headers) Stub out devind class.
106         (clean_up) Ditto.
107         (determine_layout) Ditto.
108         (list_cases) Ditto.
109
110         * output.c: (outp_init) Add devind class.
111
112         * devind.c: New file.
113
114         * devind.h: New file.
115
116 Thu Jan  1 23:08:14 2004  Ben Pfaff  <blp@gnu.org>
117
118         * frequencies.q: (hash_value_alpha) Fixed up the previous change
119         to use the proper string length.
120
121 Wed Dec 31 16:27:33 WAST 2003 John Darrington <john@darrington.wattle.id.au>
122
123         * Fixed bug where FREQ would crash on alpha values
124
125 Tue Dec 30 22:42:57 2003  Ben Pfaff  <blp@gnu.org>
126
127         * Removed bletcherous alloca() workarounds for AIX from top of
128         many files.  AIX can use the alternative alloca() implementation
129         instead.
130
131 Tue Dec 30 22:35:16 2003  Ben Pfaff  <blp@gnu.org>
132
133         * ascii.c: (ascii_option) Fix implementation of headers option.
134
135 Tue Dec 30 22:32:53 2003  Ben Pfaff  <blp@gnu.org>
136
137         * ascii.c: Add a "squeeze" option to the ASCII driver to squeeze
138         multiple blank lines into one.
139         (struct ascii_driver_ext) Add squeeze_blank_lines option.
140         (ascii_preopen_driver) Initialize squeeze_blank_lines.
141         (static var option_tab) Add squeeze entry.
142         (ascii_option) Set squeeze_blank_lines.
143         (output_lines) Implement squeezing blank lines.
144
145 Wed Dec 31 07:19:46 WST 2003 John Darrington <john@darrington.wattle.id.au>
146
147         * Removed redundant code from output.h
148
149 Sat Dec 27 22:17:52 2003  Ben Pfaff  <blp@gnu.org>
150
151         Dictionary classes: each variable is "ordinary", "system", or
152         "scratch".
153
154         * var.h: (enum dict_class) New enum.
155
156         * vars-prs.c: (dict_class_from_id) New function.
157         (dict_class_to_name) New function.
158
159 Sat Dec 27 22:16:06 2003  Ben Pfaff  <blp@gnu.org>
160
161         * var.h: (struct freq_tab_set) Removed (not used).
162
163 Sat Dec 27 22:15:21 2003  Ben Pfaff  <blp@gnu.org>
164
165         * value-labels.c: (val_labs_destroy) vls needs to be freed too.
166
167 Sat Dec 27 22:10:49 2003  Ben Pfaff  <blp@gnu.org>
168
169         * stats.c: (hypercube) Rename pow4().  All references updated.
170
171 Sat Dec 27 22:05:49 2003  Ben Pfaff  <blp@gnu.org>
172
173         * rename-vars.c: (cmd_rename_variables) Rewritten.
174         (compare_name) Removed.
175
176 Sat Dec 27 22:03:51 2003  Ben Pfaff  <blp@gnu.org>
177
178         var_set feature, and code taking advantage of it.
179         
180         * crosstabs.q: (static var var_dict) Removed.
181         (static var variables) New variable.
182         (static var variables_cnt) New variable.
183         (cmd_crosstabs) Free variables instead of var_dict.
184         (internal_cmd_crosstabs) Initialize and use variables,
185         variables_cnt instead of var_dict.
186         (free_var_dict) Removed.
187         (crs_custom_tables) Use var_set instead of a copied dictionary.
188         (crs_custom_variables) Set up variables, variables_cnt instead of
189         var_dict.
190         [DEBUGGING] (debug_print) Ditto.
191
192         * means.q: (mns_custom_tables) Use var_set instead of a copied
193         dictionary.
194
195         * vars-prs.c: (parse_vs_variable) New function.
196         (parse_dict_variable) Rewritten.
197         (parse_variable) Rewritten.
198         (parse_variables) Renamed parse_var_set_vars(), rewritten.
199         (parse_variables) New function in terms of parse_var_set_vars().
200         Now requires its first argument to be non-null.  All references
201         that passed a null pointer updated to pass default_dict instead.
202         (macro id_dict) Removed.
203         (parse_DATA_LIST_vars) Add assertions.
204         (parse_mixed_vars) Ditto.
205         (struct var_set) New structure.
206         (var_set_get_cnt) New function.
207         (var_set_get_var) New function.
208         (var_set_lookup_var) New function.
209         (var_set_destroy) New function.
210         (dict_var_set_get_cnt) New function.
211         (dict_var_set_get_var) New function.
212         (dict_var_set_lookup_var) New function.
213         (dict_var_set_destroy) New function.
214         (var_set_create_from_dict) New function.
215         (struct array_var_set) New structure.
216         (array_var_set_get_cnt) New function.
217         (array_var_set_get_var) New function.
218         (array_var_set_lookup_var) New function.
219         (array_var_set_destroy) New function.
220         (var_set_create_from_array) New function.
221
222         * q2c.c: (dump_parser) Use parse_variables(default_dict, ...)
223         instead of parse_variables(NULL, ...) in output code.
224
225 Sat Dec 27 21:38:53 2003  Ben Pfaff  <blp@gnu.org>
226
227         Change inp_init from a 2-bit vector to an ordinary array.
228         Initialize it all in cmd_end_input_program() instead of in
229         create_variable().
230
231         * inpt-pgm.c: (enum value_init_type) New enum.
232         (global var inp_init) Change to `enum value_init_type *', make
233         static.
234         (inp_init_size) Removed.
235         (inp_nval) Change to `size_t', make static.
236         (cmd_input_program) Don't initialize inp_init or inp_init_size.
237         (cmd_end_input_program) Initialize inp_init, inp_nval.
238         (init_case) Rewrite.
239         (clear_case) Rewrite.
240
241         * inpt-pgm.h: Removed.
242
243 Sat Dec 27 21:36:38 2003  Ben Pfaff  <blp@gnu.org>
244
245         * hash.c: (hsh_hash_bytes) Use Fowler-Noll-Vo hash instead of
246         Colin Plumb hash.  It is simpler and should better resist
247         collisions.
248         (hsh_hash_string) Ditto.
249
250 Sat Dec 27 21:34:57 2003  Ben Pfaff  <blp@gnu.org>
251
252         * get.c: (export_write_case_func) Remove debug printing code.
253
254 Sat Dec 27 21:11:09 2003  Ben Pfaff  <blp@gnu.org>
255
256         * get.c: (cmd_save_internal) Rename parameter.  Use &t->h instead
257         of cast.
258         (save_write_case_func) Use &trns->h instead of cast.
259         (cmd_export) Use &t->h instead of cast.
260
261 Sat Dec 27 20:57:42 2003  Ben Pfaff  <blp@gnu.org>
262
263         Moved vectors into the dictionary.
264
265         * var.h: (struct vector) Moved here from vector.h.  `index' member
266         renamed `idx', `v' renamed `var', `nv' renamed `cnt'.  All
267         references updated.
268         
269         * vector.h: Removed.
270
271         * vector.c: (global var vec) Removed.
272         (global var nvec) Removed.
273         (cmd_vector) Rewritten.
274         (find_vector) Removed.
275
276         * dictionary.c: (dict_create_vector) New function.
277         (dict_get_vector) New function, replaces reading global vec[]
278         array.
279         (dict_get_vector_cnt) New function, replaces reading global nvec
280         variable.
281         (dict_lookup_vector) New function, replaces find_vector().
282         (dict_clear_vectors) New function.
283
284 Sat Dec 27 20:54:01 2003  Ben Pfaff  <blp@gnu.org>
285
286         Start to move away from `struct variable' p `union' member to void
287         * aux member.
288
289         * var.h: (struct variable) Add `aux' member.
290
291 Sat Dec 27 20:36:25 2003  Ben Pfaff  <blp@gnu.org>
292
293         Get rid of struct variable `foo' member.
294
295         * frequencies.q: (internal_cmd_frequencies) Use p.frq.used instead
296         of foo.
297         (frq_custom_variables) Ditto.
298         (frq_custom_grouped) Ditto.
299
300         * get.c: (struct save_trns) Change `var' member from `int *' to
301         `struct variable **'.
302         (cmd_save_internal) Use aux instead of foo.
303         (save_trns_proc) Use revised `var' member.
304         (static var mtf_seq_no) Renamed mtf_seq_num.
305         (static var mtf_seq_nums) New static var.
306         (cmd_match_files) Initialize mtf_seq_nums.
307         (mtf_free) Free mtf_seq_nums.
308         (mtf_processing) Use mtf_seq_nums instead of foo.
309         (mtf_merge_dictionary) No need to initialize mv->foo.
310         (cmd_export) Use aux instead of foo.  Use revised `var' member.
311         (mns_custom_tables) Don't use foo to check for duplicates, that's
312         what PV_NO_DUPLICATE is for.
313
314         * var.h: (struct variable) Remove `foo' member.
315         (struct frequencies_proc) New member.
316         
317 Sat Dec 27 19:46:13 2003  Ben Pfaff  <blp@gnu.org>
318
319         Clean up COMPUTE and IF.
320
321         * compute.c: More or less rewrite the darn thing.
322         (struct compute_trns) Rename and reorder and add and delete
323         members.
324         (cmd_compute) Rewrite.
325         (compute_num) Make conditional on test expression.  Now used for
326         both COMPUTE and IF.
327         (compute_num_vec) Ditto.
328         (compute_str) Ditto.
329         (compute_str_vec) Ditto.
330         (cmd_if) Rewrite.
331         (if_num) Removed.
332         (if_num_vec) Removed.
333         (if_str) Removed.
334         (if_str_vec) Removed.
335         (parse_target_expression) Renamed parse_rvalue_expression(),
336         rewritten.
337         (new_trns) Renamed compute_trns_create(), rewritten.
338         (delete_trns) Removed.
339         (free_trns) Renamed compute_trns_free(), rewritten.
340         (struct lvalue) New structure.
341         (parse_var_or_vec) Renamed lvalue_parse(), rewritten.
342         (lvalue_get_type) New function.
343         (lvalue_is_vector) New function.
344         (lvalue_finalize) New function.
345         (lvalue_destroy) New function.
346         
347 Sat Dec 27 19:44:14 2003  Ben Pfaff  <blp@gnu.org>
348
349         * command.def: Disallow MODIFY VARS in input mode, so that
350         variables can't get dropped and confuse cmd_end_input_program()'s
351         attempt to fill inp_init[].
352         
353         * modify-vars.c: (static var forward_positional_ordering) New
354         variable.
355         (struct var_modification) Entirely changed.
356         (rearrange_dict) Interface changed, rewritten.
357         (cmd_modify_vars) Deal with modified struct var_modification, much
358         rewritten.
359         (struct var_renaming) New structure.
360         (compare_var_renaming_by_new_name) New function.
361         (validate_var_modification) New function.
362
363         * var.h: (struct modify_vars_proc) Removed.
364         (struct variable) Removed member p.mfv.
365
366 Sat Dec 27 19:40:26 2003  Ben Pfaff  <blp@gnu.org>
367
368         Make EVALUATE a valid command whether we're debugging or not, so
369         that `make check' can succeed regardless of whether debugging is
370         turned on.
371         
372         * command.def: [GLOBAL_DEBUGGING] Drop the #if.
373
374         * compute.c: [GLOBAL_DEBUGGING] (cmd_evaluate) Drop the #if.
375
376 Sat Dec 27 19:34:40 2003  Ben Pfaff  <blp@gnu.org>
377
378         * apply-dict.c: (cmd_apply_dictionary) Replace a ghastly switch
379         statement by a simple if test.
380
381         * dfm.c: (dfm_get_record) Add assertion.
382
383 Sat Dec 27 17:51:26 2003  Ben Pfaff  <blp@gnu.org>
384
385         For each file x.c, move #include "x.h" to the very top of the
386         include list, to catch x.h failing to include the proper headers.
387
388 Sat Dec 27 17:50:19 2003  Ben Pfaff  <blp@gnu.org>
389
390         * algorithm.c: (find) New function.
391         (remove_equal) New function.
392         (set_difference) New function.
393         (adjacent_find_equal) New function.
394         [TEST_UNIQUE] Removed test case.
395         (copy_if) Find end test.
396
397 Sat Dec 27 17:42:45 2003  Ben Pfaff  <blp@gnu.org>
398
399         * dictionary.c: (dict_get_case_weight) New convenience function.
400
401         * aggregate.c: (accumulate_aggregate_info) Use
402         dict_get_case_weight().
403
404         * frequencies.q: (calc_general) Ditto.
405         (calc_integer) Ditto.
406         (calc) Ditto.
407
408         * t-test.q: (groups_calc) Ditto.
409         (z_calc) Ditto.
410
411 Sat Dec 27 17:29:45 2003  Ben Pfaff  <blp@gnu.org>
412
413         * glob.c: (global var default_dict) Change from `struct
414         dictionary' to `struct dictionary *'.  All references changed.
415         (init_glob) Initialize default_dict with dict_create().
416
417 Sat Dec 27 17:06:06 2003  Ben Pfaff  <blp@gnu.org>
418
419         struct dictionary now made opaque.  All related functions:
420
421         * get.c: (rename_variables) Removed.
422         (dict_delete_run) Removed.
423         
424         * temporary.c: (copy_variable) Removed.
425         (new_dictionary) Removed.
426         (save_dictionary) Removed.
427         (restore_dictionary) Removed.
428         (free_dictionary) Removed.
429
430         * vars-atr.c: (clear_default_dict) Removed.
431         (find_variable) Removed.
432         (find_dict_variable) Removed.
433         (create_variable) Removed.
434         (delete_variable) Removed.
435         (common_init_stuff) Removed.
436         (init_variable) Removed.  Updating of inp_init moved into
437         cmd_end_input_program().
438         (replace_variable) Removed.
439         (rename_variable) Removed.
440         (clear_variable) Removed.
441         (dup_variable) Removed.
442
443         * vars-prs.c: (is_varname) Removed.
444         (is_dict_varname) Removed.
445         (fill_all_vars) Removed.
446
447         * vector.c: (find_vector) Removed.
448
449         * weight.c: (stop_weighting) Removed.
450
451         * dictionary.c: New file.
452         (dict_create) New, replaces new_dictionary().
453         (dict_clone) New, replaces save_dictionary() and
454         restore_dictionary().
455         (dict_clear) New, replaces clear_default_dict().
456         (dict_destroy) New, replaces free_dictionary().
457         (dict_get_var_cnt) New function, replaces references to
458         dict->nvar.
459         (dict_get_var) New function, replaces references to dict->var[i].
460         (dict_get_vars) New function, replaces fill_all_vars().
461         (dict_create_var) New, replaces create_variable().  Interface
462         drops `type' parameter, using a zero `width' to designate numeric.
463         (dict_clone_var) New, replaces dup_variable().
464         (dict_rename_var) New, replaces rename_variable().
465         (dict_lookup_var) New, replaces find_variable(),
466         find_dict_variable(), is_varname().
467         (dict_contains_var) New function.
468         (compare_variable_dblptrs) New function.
469         (dict_delete_var) New function, replaces clear_variable().
470         (dict_delete_vars) New function, replaces dict_delete_run().
471         (dict_reorder_vars) New function.
472         (dict_rename_vars) New function, replaces rename_variables().
473         (dict_get_weight) New function, replaces reading dict->weight_var.
474         (dict_set_weight) New function, replaces writing dict->weight_var
475         or calling stop_weight(dict).
476         (dict_get_filter) New function, replaces reading dict->filter_var.
477         (dict_set_filter) New function, replaces writing dict->filter_var.
478         (dict_get_case_limit) New function, replaces reading dict->N.
479         (dict_set_case_limit) New function, replaces writing dict->N.
480         (dict_get_value_cnt) New function, replaces reading dict->nval.
481         (dict_compact_values) New function, replaces a loop that was
482         replicated in several places.
483         (dict_get_split_vars) New function, replaces reading dict->splits.
484         (dict_get_split_cnt) New function, replaces reading
485         dict->n_splits.
486         (dict_set_split_vars) New function, replaces writing dict->splits.
487         (dict_get_label) New function, replaces reading dict->label.
488         (dict_set_label) New function, replaces writing dict->label.
489         (dict_get_documents) New function, replaces reading
490         dict->documents.
491         (dict_set_documents) New function, replaces writing
492         dict->documents.
493         
494         All references to above functions updated.
495         
496         * aggregate.c: (cmd_aggregate) Copy file label and documents from
497         old dictionary to new by hand, because dict_create() can't do it
498         itself.  Use dict_set_documents(), dict_set_split_vars().
499
500         * temporary.c: (cancel_temporary) Also set temp_dict to NULL after
501         calling dict_destroy().
502
503         * data-list.c: (dls_var_spec) Remove `type' member, replace by
504         `width'.
505         (fixed_parse_compatible) Some slightly nontrivial changes for
506         dict_create_var().
507         (dump_fmt_list) Ditto.
508         (parse_free) Ditto.
509
510         * file-type.c: (create_col_var) Ditto.
511
512         * get.c: (cmd_get) Use dict_compact_values() instead of a loop.
513         (trim_dictionary) Use dict_delete_vars(), dict_reorder_vars().
514         (rename_variables) Use dict_rename_vars().
515         (mtf_merge_dictionary) Use dict_get_documents(),
516         dict_set_documents(), dict_compact_values().
517
518         * pfm-read.c: (read_variables) Deal with changes to weighting.
519
520         * q2c.c: (dump_parser) Use dict_lookup_var() instead of
521         is_varname() in output code.
522
523         * sfm-read.c: (read_header) Use dict_create(), dict_set_label(),
524         other dictionary functions.
525
526         * title.c: (add_document_line) Use dict_get_documents(),
527         dict_set_documents().
528
529         * vars-atr.c: (discard_variables) Use dict_clear(default_dict),
530         reset default_handle by hand.  dict_clear() will clear vectors so
531         there's no need for that by hand.
532
533         * vfm.c: (close_active_file) Move call to finish_compaction()
534         earlier, so that we can do the compaction as a single step using
535         dict_compact_values().  Use dict_clear_vectors().
536         (finish_compaction) Use dict_delete_var(), dict_compact_values().
537                 
538         Some functions don't have replacements:
539
540         * vars-atr.c: (force_create_variable) Removed.  All references
541         updated to dict_create_var() followed by an assertion.
542         (force_dup_variable) Removed.  All references updated to
543         dict_clone_var() followed by an assertion.
544         
545         * weight.c: (update_weighting) Removed.  No longer necessary, so
546         all references removed.
547
548 Sat Dec 27 16:43:01 2003  Ben Pfaff  <blp@gnu.org>
549
550         Clean up AGGREGATE.
551         
552         * aggregate.c: Eliminate separation of weighted and unweighted
553         case.  It made the code too obscure and I doubt it was actually
554         faster.  Instead, all code uses the "weighted" code, because
555         that's a generalization of the "unweighted" code.
556         (FWEIGHT) Removed.
557         (FOPTIONS) Ditto.
558         (parse_aggregate_functions) No need to set FWEIGHT.
559         (accumulate_aggregate_info) Get rid of FWEIGHT cases.
560         (dump_aggregate_info) Ditto.
561         (initialize_aggregate_info) No need for special plain_function
562         that gets rid of FWEIGHT option.
563
564         * aggregate.c: Get rid of approximations.
565         (accumulate_aggregate_info) Don't use approx_gt(), approx_lt(),
566         approx_in_range().
567         (aggregate_single_case) Don't use approx_ne().
568
569 Sat Dec 27 16:19:36 2003  Ben Pfaff  <blp@gnu.org>
570
571         * ascii.c (ascii_line_width): Dead code, removed.
572
573         * postscript.c (ps_line_width): Ditto.
574
575         * q2c.c (xrealloc): Ditto.
576
577         * count.c (internal_cmd_count): Ditto.
578
579         * means.q (validate_dependent_endpoint): Ditto.
580
581         * set.q: (cmd_gset) Ditto.
582
583         * weight.c: [0] (weight_trns_proc) Ditto.
584
585 Sat Dec 27 16:18:16 2003  Ben Pfaff  <blp@gnu.org>
586
587         Make the code -Wmissing-prototypes clean.
588
589         * Makefile.am (version.c): Add #include "version.h".
590         
591         * ascii.c: (ascii_open_global) Make static.
592         (ascii_close_page) Ditto.
593         (ascii_font_sizes) Ditto.
594         (ascii_postopen_driver) Ditto.
595         (ascii_close_driver) Ditto.
596         (ascii_option) Ditto.
597         (ascii_open_page) Ditto.
598         (ascii_line_horz) Ditto.
599         (ascii_line_vert) Ditto.
600         (ascii_line_intersection) Ditto.
601         (ascii_box) Ditto.
602         (ascii_polyline_begin) Ditto.
603         (ascii_polyline_point) Ditto.
604         (ascii_polyline_end) Ditto.
605         (ascii_text_set_font_by_name) Ditto.
606         (ascii_text_set_font_by_position) Ditto.
607         (ascii_text_set_font_by_family) Ditto.
608         (ascii_text_get_font_name) Ditto.
609         (ascii_text_get_font_family) Ditto.
610         (ascii_text_set_size) Ditto.
611         (ascii_text_get_size) Ditto.
612         (ascii_text_metrics) Ditto.
613         (ascii_text_draw) Ditto.
614         (ascii_close_page) Ditto.
615
616         * cmdline.h: New header for parse_command_line().  Used where
617         needed.
618
619         * command.c: Move prototypes for cmd_*() functions to command.h.
620
621         * command.h: Prototypes for cmd_*() functions moved here from
622         command.c.
623
624         * crosstabs.q: (gamma_int) Ditto.
625
626         * file-handle.h: Add fh_init_files() prototype.
627         
628         * getline.c: (welcome) Ditto.
629
630         * glob.h: New header for init_glob().  Used where appropriate.
631
632         * hash.c: (comparison_helper) Ditto.
633
634         * html.c: (html_open_global) Ditto.
635         (html_close_global) Ditto.
636         (html_preopen_driver) Ditto.
637         (html_postopen_driver) Ditto.
638         (html_close_driver) Ditto.
639         (html_option) Ditto.
640         (html_open_page) Ditto.
641         (html_close_page) Ditto.
642         (html_submit) Ditto.
643
644         * inpt-pgm.c: (input_program_source_read) Ditto.
645
646         * output.c: (find_defn_value) Ditto.
647         (destroy_list) Ditto.
648
649         * pfm-read.c: (read_int) Ditto.
650
651         * postscript.c: (ps_open_global) Ditto.
652         (ps_close_global) Ditto.
653         (ps_font_sizes) Ditto.
654         (ps_preopen_driver) Ditto.
655         (ps_postopen_driver) Ditto.
656         (ps_close_driver) Ditto.
657         (ps_option) Ditto.
658         (ps_open_page) Ditto.
659         (ps_close_page) Ditto.
660         (ps_line_horz) Ditto.
661         (ps_line_vert) Ditto.
662         (ps_line_intersection) Ditto.
663         (ps_box) Ditto.
664         (ps_polyline_begin) Ditto.
665         (ps_polyline_point) Ditto.
666         (ps_polyline_end) Ditto.
667         (ps_text_set_font_by_name) Ditto.
668         (ps_text_set_font_by_position) Ditto.
669         (ps_text_set_font_family) Ditto.
670         (ps_text_get_font_name) Ditto.
671         (ps_text_get_font_family) Ditto.
672         (ps_text_set_size) Ditto.
673         (ps_text_get_size) Ditto.
674         (ps_text_metrics) Ditto.
675         (ps_text_draw) Ditto.
676
677         * q2c.c: (finish_up) Ditto.
678         (xmalloc) Ditto.
679         (xstrdup) Ditto.
680         (get_buffer) Ditto.
681         (st_lower) Ditto.
682         (st_upper) Ditto.
683         (skip_ws) Ditto.
684         (get_line) Ditto.
685         (add_symbol) Ditto.
686         (find_symbol) Ditto.
687         (lex_get) Ditto.
688         (force_id) Ditto.
689         (force_string) Ditto.
690         (match_id) Ditto.
691         (match_token) Ditto.
692         (skip_token) Ditto.
693         (parse) Ditto.
694         (parse_setting) Ditto.
695         (parse_specifier) Ditto.
696         (parse_specifiers) Ditto.
697         (parse_subcommand) Ditto.
698         (dump_specifier_vars) Ditto.
699         (is_keyword) Ditto.
700         (make_identifier) Ditto.
701         (dump_declarations) Ditto.
702         (dump_specifier_init) Ditto.
703         (dump_vars_init) Ditto.
704         (make_match) Ditto.
705         (dump_specifier_parse) Ditto.
706         (dump_subcommand) Ditto.
707         (dump_parser) Ditto.
708         (dump_header) Ditto.
709         (dump_free) Ditto.
710         (recognize_directive) Ditto.
711
712         * recode.c: (string_to_long) Ditto.
713
714         * repeat.c: (find_DO_REPEAT_substitution) Ditto.
715
716         * repeat.h: New header for perform_DO_REPEAT_substitutions, used
717         where appropriate.
718
719         * sort.c: (sort_stream_read) Ditto.
720         (sort_stream_mode) Ditto.
721         
722 Fri Dec 19 23:35:04 2003  Ben Pfaff  <blp@gnu.org>
723
724         * algorithm.c (binary_search): Fix comparison.
725
726 Fri Dec 19 23:27:45 2003  Ben Pfaff  <blp@gnu.org>
727
728         * algorithm.c: (binary_search) Fix assertion.
729
730 Fri Dec 19 21:31:48 2003  Ben Pfaff  <blp@gnu.org>
731
732         * sysfile-info.c: (compare_vectors_by_name) Rewrite.
733
734 Fri Dec 19 21:30:24 2003  Ben Pfaff  <blp@gnu.org>
735
736         * sort.c: (compare_case_lists) Rewrite.
737
738 Fri Dec 19 16:44:22 2003  Ben Pfaff  <blp@gnu.org>
739
740         * quicksort.c: Removed (not used).
741
742         * quicksort.h: Removed (not used).
743
744         * sort.c: Removed blp_quicksort() prototype.
745
746 Fri Dec 19 16:42:13 2003  Ben Pfaff  <blp@gnu.org>
747
748         * postscript.c: (int_2_compare) Rewrite.
749         (compare_line) Rewrite.
750
751 Fri Dec 19 16:38:35 2003  Ben Pfaff  <blp@gnu.org>
752
753         * matrix-data.c (compare_factors) Use lexicographical_compare()
754         algorithm.
755         (compare_doubles) New function.
756         
757         * algorithm.c: (lexicographical_compare) New algorithm.
758
759 Fri Dec 19 16:23:45 2003  Ben Pfaff  <blp@gnu.org>
760
761         * matrix-data.c (compare_variables_by_mxd_vartype): Rewrite.
762
763 Fri Dec 19 15:54:45 2003  Ben Pfaff  <blp@gnu.org>
764
765         * expr-prs.c: (cmp_func) Removed.
766         (parse_function) Use binary_search() algorithm.
767         (compare_functions) New function.
768         (init_func_tab) Use sort() algorithm.
769
770         * algorithm.c: (binary_search) New algorithm.
771
772 Fri Dec 19 15:50:45 2003  Ben Pfaff  <blp@gnu.org>
773
774         * descript.q: (display) Use sort() algorithm instead of qsort().
775         (compare_func) Removed.
776         (descriptives_compare_variables) New function.
777
778 Fri Dec 19 15:08:38 2003  Ben Pfaff  <blp@gnu.org>
779
780         Get rid of AVL trees.  Hashes are more appropriate for everything
781         PSPP does.
782
783         * Makefile.am: (pspp_SOURCES) Remove avl.c, avl.h.
784         
785         * avl.c: Removed.
786
787         * avl.h: Removed.
788
789 Fri Dec 19 14:33:31 2003  Ben Pfaff  <blp@gnu.org>
790
791         Much code can be clarified by using C++ STL-like algorithms.  Not
792         all uses of these algorithms are listed below, only the ones where
793         the change to an algorithm was the only change of interest.
794         
795         * Makefile.am: (pspp_SOURCES) Add algorithm.c, algorithm.h.
796         
797         * algorithm.c: New file.
798
799         * algorithm.h: New file.
800
801         * modify-vars.c: (static var forward) Removed.
802         (static var positional) Removed.
803         (compare_variables) Removed.
804         (struct ordering) New.
805         (cmd_modify_vars) Use sort() algorithm.
806         (compare_variables_given_ordering) New function.
807         (rearrange_dict) Use sort() algorithm.
808
809         * sysfile-info.c: (cmd_display) Use sort() algorithm.
810         (cmp_var_by_name) Removed.
811
812 Fri Dec 19 14:26:17 2003  Ben Pfaff  <blp@gnu.org>
813
814         Make file handles use a hash table.
815         
816         * file-handle.q: (files) Change to hash table, make static.
817         (cmd_file_handle) Use hash table functions.
818         (fh_get_handle_by_filename) Ditto.
819         (fh_get_handle_by_name) Ditto.
820         (hash_file_handle) New function.
821         (cmp_file_handle) Rewrite.
822         (fh_init_files) Use hash table functions.
823
824 Fri Dec 19 14:24:38 2003  Ben Pfaff  <blp@gnu.org>
825
826         Clean up FREQUENCIES.
827         
828         * Makefile.am: (pspp_SOURCES) Remove frequencies.g.
829
830         * frequencies.q: Remove a lot of old #if'd out code at the end.
831         (internal_cmd_frequencies) Use calc() instead of calc_no_weight()
832         or calc_weight().  Initialize percentile_values.
833         (calc) New function based on calc_weight() from frequencies.g.
834         (precalc) Use hash functions.
835         (static var comparison_func) Removed.
836         (static var comparison_param) Removed.
837         (comparison_helper) Removed.
838         (get_freq_comparator) New function.
839         (not_missing) New function.
840         (add_freq) Removed.
841         (postprocess_freq_tab) Use hash table functions, algorithms,
842         get_freq_comparator().  Rewrite.
843         (cleanup_freq_tab) Rephrase.
844         (add_percentile) Clean up spacing.
845         (hash_value_numeric) New function.
846         (hash_value_alpha) New function.
847         (compare_value_numeric_a) Rewrite.
848         (compare_value_alpha_a) Rewrite.
849         (compare_value_numeric_d) Rewrite.
850         (compare_value_alpha_d) Rewrite.
851         (compare_freq_numeric_a) Rewrite.
852         (compare_freq_alpha_a) Rewrite.
853         (compare_freq_numeric_d) Rewrite.
854         (compare_freq_alpha_d) Rewrite.
855         (calc_stats) Clean up mode, percentiles, max.
856         (dump_statistics) Clean up spacing.
857         
858         * frequencies.g: Removed.
859
860         * var.h: (struct freq_tab) Change `data' to hash table.
861
862 Fri Dec 19 14:15:46 2003  Ben Pfaff  <blp@gnu.org>
863
864         * file-handle.h: Remove declaration of global variable `files',
865         which wasn't used anywhere.
866
867         * postscript.c: (add_encoding) Remove superfluous cast.
868         (line) Ditto.
869
870         * sfm-read.c: [linux] (bswap_int32) Drop ntohl() non-portable
871         version.
872
873         * temporary.c: [0] (display_tree) Removed.
874
875 Fri Dec 19 14:13:04 2003  Ben Pfaff  <blp@gnu.org>
876
877         Implement a new random number generator based on the alleged RC4
878         algorithm.
879
880         * expr-evl.c: (expr_evaluate) Use rng_get_double_normal() instead
881         of rand_normal().
882
883         * random.c: [!HAVE_GOOD_RANDOM] (real_rand) Removed.
884         [!HAVE_GOOD_RANDOM] (real_srand) Removed.
885         (macro k) Removed.
886         (static var V[]) Removed.
887         (static var Y) Removed.
888         (static var X2) Removed.
889         (setup_randomize) Removed.
890         (shuffle) Removed.
891         (rand_uniform) Removed.
892         (rand_normal) Removed.
893         (struct rng) New structure.
894         (rng_create) New function.
895         (rng_destroy) New function.
896         (swap_byte) New static function.
897         (rng_seed) New function.
898         (rng_get_bytes) New function.
899         (rng_get_int) New function.
900         (rng_get_unsigned) New function.
901         (rng_get_double) New function.
902         (rng_get_double_normal) New function.
903         (pspp_rng) New function.
904
905         * random.h: Sync up to random.c.
906
907         * sample.c: (struct sample_trns) Make `frac' unsigned and a
908         fraction of UINT_MAX, not 65536.
909         (cmd_sample) Use rng_get_unsigned(), rng_get_double(), UINT_MAX
910         fraction.
911
912         * vfm.c: (open_active_file) No need to call setup_randomize() any
913         longer.
914
915 Fri Dec 19 12:05:56 2003  Ben Pfaff  <blp@gnu.org>
916
917         Change dictionary name indexes to use hash tables instead of AVL
918         trees.
919
920         * crosstabs.q: (free_var_dict) Use hash tables.
921         (crs_custom_tables) Ditto.
922         (calc_general) Ditto.
923         (compare_table_entry) Rewrite.
924         (enum_var_values) Reorder parameters.  All references updated.
925         Rewrite.
926
927         * get.c: (rename_variable) Use hash tables.
928         (mtf_merge_dictionary) Ditto.
929
930         * glob.c: (init_glob) Use hash tables.
931         (cmp_variable) Removed.
932
933         * means.q: (mns_custom_tables) Use hash tables.
934
935         * modify-vars.c: (rearrange_dict) Use hash tables.
936
937         * rename-vars.c: (cmd_rename_variables) Use hash tables.
938
939         * sfm-read.c: (read_header) Use hash tables.
940         (read_variables) Ditto.
941
942         * temporary.c: (new_dictionary) Use hash tables.
943         (save_dictionary) Ditto.
944         (restore_dictionary) Ditto.
945
946         * var.h: (struct dictionary) Change AVL tree `var_by_name' into
947         hash table `name_tab'.
948
949         * vars-atr.c: [DEBUGGING] (dump_one_var_node) Removed.
950         [DEBUGGING] (dump_var_tree) Removed.
951         (find_variable) Use hash tables.
952         (find_dict_variable) Ditto.
953         (common_init_stuff) Ditto.
954         (rename_variable) Ditto.
955         (clear_variable) Ditto.  Also, remove debug code.
956         (dup_variable) Use hash tables.
957
958         * vars-prs.c: (fill_all_vars) Use hash tables.
959         (is_dict_varname) Ditto.
960         (parse_dict_variable) Ditto.
961         
962 Fri Dec 19 11:46:23 2003  Ben Pfaff  <blp@gnu.org>
963
964         Change value labels to use hash tables instead of AVL trees, and
965         change value labels into an ADT.
966
967         * Makefile.am: (pspp_SOURCES) Add value-labels.c, value-labels.h.
968         
969         * value-labels.c: New file.
970
971         * value-labels.h: New file.
972
973         * apply-dict.c: (cmd_apply_dictionary) Use value label ADT.
974         Get rid of a stupid use of goto.
975
976         * autorecode.c: (compare_alpha_value) Rewrite.
977         (hash_alpha_value) Ditto.
978         (compare_numeric_value) Rewrite.
979         (hash_numeric_value) Ditto.
980
981         * frequencies.q: (dump_full) Use value label ADT.
982
983         * pfm-read.c: (read_value_label) Use value label ADT.
984
985         * pfm-write.c: (write_value_labels) Use value label ADT.
986
987         * sfm-read.c: (read_variables) Use value label ADT.
988         (read_value_labels) Rewrite.
989
990         * sfm-write.c: (write_value_labels) Rewrite.
991
992         * sysfile-info.c: (cmd_sysfile_info) Use value label ADT.
993         (display_variables) Ditto.
994         (describe_variable) Ditto.
995
996         * t-test.q: (print_t_groups) Use value label ADT.
997
998         * temporary.c: (copy_variable) Use value label ADT.
999         (free_dictionary) Ditto.
1000
1001         * val-labs.c: (verify_val_labs) Use value label ADT.
1002         (get_label) Ditto.
1003         (debug_print) Ditto.
1004         (val_lab_cmp) Removed.
1005         (inc_ref_count) Removed.
1006         (copy_value_labels) Removed.
1007
1008         * var.h: (struct value_label) Removed.
1009         (struct variable) Change AVL tree `val_lab' into hash table
1010         `val_labs'.
1011
1012         * vars-atr.c: (init_variable) Use value label ADT.
1013         (clear_variable) Ditto.
1014         (free_value_label) Removed.
1015         (free_val_lab) Removed.
1016         (get_val_lab) Removed.
1017         (compare_variables) New function.
1018         (hash_variable) New function.
1019
1020         * vfm.c: (dump_splits) Use value label ADT.
1021
1022 Fri Dec 19 11:18:11 2003  Ben Pfaff  <blp@gnu.org>
1023
1024         Add to the hash table interface.
1025
1026         * hash.c: (hsh_hash_bytes) Add assertion.
1027         (hsh_hash_string) Ditto.
1028         (hsh_clear) Ditto.
1029         (hsh_rehash) Ditto.
1030         (hsh_probe) Ditto.
1031         (hsh_create) Ditto.  Also make minimum `size'.
1032         (hsh_destroy) Rephrase.
1033         (sort_nulls_last) Removed.
1034         (not_null) New function.
1035         (hsh_data) Ditto.
1036         (comparison_helper) Ditto.
1037         (hsh_sort) Rewritten.
1038         (hsh_data_copy) New function.
1039         (hsh_sort_copy) Ditto.
1040         (hsh_insert) Ditto.
1041         (hsh_replace) Ditto.
1042         (hsh_hash_double) Ditto.
1043         (hsh_delete) Fix stupid bug.
1044         
1045 Thu Dec 18 12:27:03 WAST 2003 John Darrington <john@darrington.wattle.id.au>
1046         * added a calculation of the mode to FREQUENCIES
1047
1048 Wed Dec 17 12:53:01 WAST 2003 John Darrington <john@darrington.wattle.id.au>
1049
1050         * moved (un)defs of DEBUGGING to config.h
1051
1052 Mon Dec 15 21:35:59 2003  Ben Pfaff  <blp@gnu.org>
1053
1054         * groff-font.c: (add_kern) Fix indentation.
1055         (add_kern) Use & instead of % to take power-of-2 modulus.
1056         (font_get_kern_adjust) Likewise.
1057
1058 Fri Dec 12 23:54:37 2003  Ben Pfaff  <blp@gnu.org>
1059
1060         * autorecode.c: (recode) Replace stupid use of memcpy() by
1061         memberwise copy.
1062         (hash_alpha_value) Use hsh_hash_bytes().  Get rid of nasty casts.
1063         (hash_numeric_value) Ditto.
1064         (autorecode_proc_func) pool_strdup() was wrong here because the
1065         source string was not null-terminated.  Use new pool_strndup()
1066         instead.
1067
1068         * crosstabs.q: (enum_var_values) Remove superfluous and bizarre
1069         use of hsh_iterator_init().
1070
1071         * data-in.c: (parse_N) Initialize i->v->f.
1072
1073         * flip.c: (cmd_flip) Use memmove(), not memcpy(), to copy
1074         overlapping arrays.
1075
1076         * groff-font.c: Use power-of-2 hash table sizes, not prime.
1077         (groff_read_font) Don't call hsh_next_prime().  Don't call
1078         fclose(NULL).
1079         (static var hash) Remove `size_p', `max_used' members.
1080         (font_char_name_to_index) Don't call hsh_next_prime().  Use
1081         hsh_hash_string() instead of hashpjw(), & instead of %.
1082         (default_font) Don't call hsh_next_prime().
1083
1084         * pool.c: (pool_strndup) New function.
1085         (pool_strdup) Reimplement in terms of pool_strndup.
1086
1087         * postscript.c: (hash_font_entry) Use hsh_hash_string().  Get rid
1088         of nasty casts.
1089         (hash_ps_encoding) Use hsh_hash_string().
1090         (hash_ps_combo) Use hsh_hash_string(), hsh_hash_int().
1091         (hash_filename2font) Use hsh_hash_string().
1092
1093         * som.c: Add #include <stdlib.h>.
1094
1095         * tab.c: (tab_destroy) Don't set t->container after freeing `t'
1096         (by destroying its pool).
1097         
1098 Fri Dec 12 23:18:59 2003  Ben Pfaff  <blp@gnu.org>
1099
1100         Miscellaneous hash table code cleanup:
1101         
1102         * hash.h: (struct hsh_table) Moved into hash.c.
1103         (hsh_count) Ditto, and transformed into function.
1104         (hsh_compare_func) New typedef, used for defining otherwise-long
1105         function types here and in hash.c
1106         (hsh_hash_func) Ditto.
1107         (hsh_free_func) Ditto.
1108         
1109         * hash.c: (struct hsh_table) Renamed `n' to `used', `m' to `size',
1110         `table' to `entries'.  Removed `mp'.  All references updated.
1111         (hsh_clear) Don't shrink entries array; if the hash was this big
1112         once, it probably will be again.
1113         (hsh_rehash) Made static.
1114         (force_hsh_insert) Renamed hsh_force_insert.
1115         (force_hsh_find) Renamed hsh_force_find.
1116
1117         Made hash table sizes powers of 2, because that's fine with any
1118         reasonable hash function and because taking a power-of-2 modulus
1119         is faster than any other:
1120         
1121         (hsh_prime_tab) Removed;
1122         (hsh_next_prime) Ditto.
1123         (next_power_of_2) New function.
1124         (hsh_create) Use next_power_of_2.
1125         (hsh_rehash) Use & instead of %.
1126
1127         Cleaned up hsh_sort:
1128         
1129         (internal_comparison_fn) Removed.
1130         (sort_nulls_last) New function.
1131         (hsh_sort) Removed second parameter, switched to using the new
1132         quicksort() function from quicksort.h to avoid using nasty need
1133         for static variables with qsort().  All references updated.
1134
1135         Changed the hash functions offered, because there are better hash
1136         functions than the ones we had, and cleaned up the names to boot:
1137         
1138         * hash.c: (hashpjw_d) Removed.
1139         (hashpjw) Ditto.
1140         (hsh_hash_bytes) New function.
1141         (hsh_hash_string) New function.
1142         (hsh_hash_int) New function.
1143
1144         Improved the hash table iteration interface:
1145         
1146         * hash.h: (hsh_iterator_init) Removed.
1147         (struct hsh_iterator) Removed `init' member, change `next' to
1148         size_t.
1149
1150         * hash.c: (hsh_foreach) Removed.  All references updated to use
1151         hsh_first/hsh_next instead.
1152         (hsh_first) New function.  Notably, unlike hsh_foreach() it does
1153         not treat a null pointer as an empty hash table.
1154         (hsh_next) New function.
1155
1156         Made deletion possible, though slow:
1157
1158         * hash.c: (locate_matching_entry) New function.
1159         (hsh_find) Use locate_matching_entry().
1160         (hsh_delete) New function also using locate_matching_entry().
1161         (hsh_force_delete) New function.
1162
1163 Fri Dec 12 23:16:10 2003  Ben Pfaff  <blp@gnu.org>
1164
1165         * quicksort.c: New file implementing a sort routine with a
1166         interface better than qsort() because it passes a user-provided
1167         parameter to the sort routine.
1168
1169         * Makefile.am: Add quicksort.c, quicksort.h.
1170
1171 Fri Dec 12 13:31:58 2003  Ben Pfaff  <blp@gnu.org>
1172
1173         * All source files: Get rid of nasty special cases for Checker,
1174         which is pretty obsolete now.
1175
1176 Thu Dec 11 21:38:24 WST 2003 John Darrington <john@darrington.wattle.id.au>
1177
1178         * Fixed a bug apparent when using the FREQUENCIES command with the
1179         html driver.  The html driver was incorrectly trying to display 
1180         empty cells.
1181
1182 Sun Jan  2 21:40:13 2000  Ben Pfaff  <blp@gnu.org>
1183
1184         * Makefile.am: Reorganized.  Put locale dir in version.c instead
1185         of passing it to each compile command.  Only put local gmp libs in
1186         LD_ADD if not installed on system.  Remove `boast' target.
1187
1188         * All source files: struct and union typedefs eliminated.
1189         `sizeof type' replaced by `sizeof object' where practical.  Moved
1190         `unused' qualifiers from start to end of declarations for gcc
1191         2.7.2 compatibility.  Change `while (1)' to `for (;;)'.  Made
1192         assertions on pointers strictly compliant.  Removed _ prefixes on
1193         some function parameter names.
1194
1195         * alloc.c: New source file, containing these external linkage
1196         functions removed from common.c: xmalloc, xcalloc, xrealloc,
1197         xstrdup.
1198
1199         * arena.c: Removed.
1200         
1201         * arena.h: Removed.
1202
1203         * ascii.c: Migrated from arenas to pools.
1204         (struct ascii_driver_ext) ops[], box[], fonts[] changed from
1205         c_string to len_string.  All references changed.
1206         (ascii_option) Signature changed to comply to new output.c
1207         interface.
1208         (count_fancy_chars) Removed.
1209         (delineate) Removed support for rich text.
1210         (ascii_text_metrics) Ditto.
1211         (text_draw) Ditto.
1212         (output_shorts) Change `box', `off', `on' from c_string to
1213         len_string.  Change `remaining' from int to size_t.
1214         (ascii_close_page) Make page numbering less haphazard.
1215
1216         * autorecode.c: Migrate from arenas to pools.
1217
1218         * avl.c: Migrate from arenas to pools.  Synch from libavl 1.4.0.
1219
1220         * bitvector.h: New file containing these macros from misc.h:
1221         SET_BIT, CLEAR_BIT, SET_BIT_TO, TEST_BIT, BIT_INDEX.
1222
1223         * command.c: (struct command) cmd1, cmd2, cmd3 members changed to
1224         word[3].  ncmd removed.
1225         (var empty_string) Removed.
1226         (var cmd_table) Declaration updated.
1227         (var cmdtab) Removed.
1228         (cmp_command) Removed.
1229         (split_words) Rewritten to use strtok_r().
1230         (init_cmd_parser) Renamed cmd_init().  Rewritten.
1231         (find_command) Removed.
1232         (FILE_TYPE_okay) Rewritten.
1233         (cmd_parse) Rewritten.  Semantics of the return value of command
1234         handlers has changed: they must now return one of the new CMD_*
1235         enumerals, rather than a magic value.  This meant that all
1236         commands had to be modified, and they were.
1237         (figure_out_command) New function.
1238
1239         * command.def: Add CORRELATIONS, PEARSON CORRELATIONS.  Add
1240         #defines for INIT, INPU, etc.
1241
1242         * command.h: New CMD_* enum series.
1243         (cur_proc) Make const char *, not char *.
1244         (cmd_init) Prototype.
1245         (cmd_parse) Ditto.
1246
1247         * common.c: Removed.
1248
1249         * common.h: Removed.
1250
1251         * correlations.q: New file.
1252
1253         * crosstabs.q: Migrate from arenas to pools.  Migrate to new-style
1254         q2c.
1255         (custom_tables) Renamed crs_custom_tables().
1256         (custom_variables) Renamed crs_custom_variables().
1257         (calc_integer) Add in some `const' qualifiers.
1258         (table_value_missing) Change from a_string to len_string.
1259         (float_M_suffix) Change from a_string to len_string.
1260
1261         * data-in.c: Rewritten.  All references to
1262         parse_string_as_format() changed to data_in().
1263
1264         * data-in.h: New file.
1265
1266         * data-list.c: Change DLS_* from #define's to enums.  Move from
1267         rpd_msg() to tmsg().
1268         (RPD_ERR) New #define.
1269         (do_reading) Change dfm_push_cust() to dfm_push(), pop_cust() to
1270         dfm_pop().
1271         (read_from_data_list_fixed) Change from old
1272         parse_string_as_format() to new data_in().
1273         (read_from_data_list_free) Ditto.
1274         (read_from_data_list_list) Ditto.
1275         (cmd_repeating_data) Modify approach to checking for end of
1276         command.
1277         (rpd_msg) Removed.
1278         (rpd_parse_record) Change from old parse_string_as_format() to new
1279         data_in().  Change from old convert_format_to_string() to new
1280         data_out().
1281         (read_one_set_of_repetitions) Change dfm_push_cust() to
1282         dfm_push(), pop_cust() to dfm_pop().
1283
1284         * data-out.c: Rewritten.  All references to
1285         convert_format_to_string() changed to data_out().
1286
1287         * descript.q: Migrate to new q2c.
1288         (cmd_descriptives) Removed.
1289         (internal_cmd_descriptives) Renamed cmd_descriptives ().
1290         (custom_variables) Renamed dsc_custom_variables().
1291
1292         * dfm.c: (struct dfm_fhuser_ext) `ln' removed.  All references
1293         removed.
1294         (open_file_r) Initialize h->where.line_number.  Migrate to new
1295         struct string.
1296         (open_file_w) Initialize h->where.line_number.
1297         (read_record) Change from ext->ln to h->where.line_number.
1298         Migrate to struct string.
1299         (dfm_put_record) Rephrased.
1300         (dfm_push_cust) Renamed dfm_push(), rewritten.
1301         (dfm_pop) New function.
1302
1303         * error.c: All references updated.
1304         (glob var error_count) Renamed err_err_count.
1305         (glob var warning_count) Renamed err_warning_count.
1306         (glob var error_already_flagged) Renamed err_already_flagged.
1307         (glob var verbosity) Renamed err_verbosity.
1308         (glob var cust_fn) Removed.
1309         (glob var cust_ln) Removed.
1310         (static var file_loc) New.
1311         (static var nfile_loc) New.
1312         (static var mfile_loc) New.
1313         (tmsg) New function.
1314         (push_cust) Removed.
1315         (pop_cust) Removed.
1316         (msg) Rewritten.
1317         (static var terminating) Removed.
1318         (failure) Renamed err_failure().
1319         (hcf) Renamed err_hcf().
1320         (err_push_file_locator) New function.
1321         (err_pop_file_locator) New function.
1322         (err_location) New function.
1323         (check_error_count) Renamed err_check_count().
1324         (vmsg) Renamed err_vmsg().  Interface changed.
1325         (verbose_msg) Removed.
1326         (err_cond_fail) New function.
1327         (error_break) Renamed err_break().
1328
1329         * error.h: All references updated.
1330         (enum MSG_CLASS_COUNT) Renamed ERR_CLASS_COUNT.
1331         (enum ERR_CLASS_MASK, ERR_VERBOSITY_SHIFT, ERR_VERBOSITY_MASK)
1332         New.
1333         (struct file_locator) New.
1334         (struct error) New.
1335         (macro verbose_msg) Removed.
1336         (macro cond_fail) Removed.
1337
1338         * expr-opt.c: (evaluate_tree) sizeof(char) == 1.
1339
1340         * expr-prs.c: Reorganized.  All references updated.
1341         (exprtypename) Renamed expr_type_name().
1342         (typename) Renamed type_name().
1343         (free_expression) Renamed expr_free().
1344         (parse_expression) Renamed expr_parse().  Uses new type_check()
1345         function.
1346         (init_functab) Renamed init_func_tab().
1347         (type_check) New function.
1348         (parse_or) Rewritten to use new allocate_nonterminal() and
1349         append_nonterminal_arg() functions.
1350         (parse_and) Ditto.
1351         (parse_not) Ditto.
1352         (parse_rel) Ditto.  Also simplified logic.
1353         (parse_add) Ditto.
1354         (parse_mul) Ditto.
1355         (parse_neg) Ditto.
1356         (parse_exp) Ditto.
1357         (SYSMIS_func) Ditto.
1358         (VALUE_func) Rephrased.
1359         (CONCAT_func) Fix memory leak by replacing free by free_node on
1360         lossage.
1361         (generic_str_func) Ditto.
1362         (parse_function) Ditto.  Also rephrasings.  Uses bsearch() to find
1363         function.
1364         (allocate_nonterminal) New function.
1365         (append_nonterminal_arg) New function.
1366         (static func_tab[]) Now at file level.
1367         (cmp_func) Moved.
1368         (init_func_tab) Moved.  Now just uses qsort() to sort func_tab[].
1369
1370         * expr.h: (enum series OP_*) Moved to exprP.h.
1371         (OP_* defines) Ditto.
1372         (struct op_desc) Ditto.
1373         (global ops[]) Ditto.
1374         (struct num_con_node) Ditto.
1375         (struct str_con_node) Ditto.
1376         (struct var_node) Ditto.
1377         (struct lag_node) Ditto.
1378         (struct casenum_node) Ditto.
1379         (struct nonterm_node) Ditto.
1380         (union any_node) Members renamed.
1381         (struct sys_node) Removed.
1382         (struct val_node) Removed.
1383         (operator typedef) Removed.
1384         (typedef exprtype) Removed.
1385         (enum series EX_*) Moved to exprP.h.
1386         (struct expression) Ditto.  Also renamed a lot of the members.
1387         (PXP_* defines) Changed to enums.
1388         (free_node prototype) Moved to exprP.h.
1389
1390         * file-handle.h: (struct file_handle) New member `where'.
1391
1392         * file-handle.q: Migrated to new q2c format.
1393         (prepend_current_directory) Removed (dead code).
1394         (cmd_file_handle) Incorporated all of internal_cmd_file_handle().
1395         (fh_get_handle_by_filename) Removed dead code.
1396         Set new `where' member.
1397
1398         * file-type.c: (file_type_source_read) References to
1399         parse_string_as_format() changed to data_in().
1400         dfm_push_cust()/pop_cust() changed to dfm_push()/dfm_pop().
1401
1402         * filename.c: All references updated.
1403         (init_filename) Renamed fn_init().
1404         (expand_line) Removed.
1405         (macro EXPAND_LINE) Removed.
1406         (interp_vars) Renamed fn_interp_vars().  Now uses st_*() instead
1407         of custom functions.
1408         (gnu_getcwd) Renamed fn_get_cwd(), rewritten.
1409         (tilde_expand) Renamed fn_tilde_expand(), uses ds_*().
1410         (normalize_filename) Renamed fn_normalize().
1411         (search_path) Renamed fn_search_path(), rewritten.
1412         (prepend_dir) Renamed fn_prepend_dir().
1413         (blp_getenv) Renamed fn_getenv().
1414         (blp_dirname) Renamed fn_dirname().
1415         (fn_basename) New function, not used.
1416         (absolute_filename_p) Renamed fn_absolute_p().
1417         (is_special_filename) Renamed fn_special_p().
1418         (file_exists) Renamed fn_exists_p().
1419         (readlink_malloc) Renamed fn_readlink().
1420         (getenv_default) Renamed fn_getenv_default().
1421         (open_file) Renamed fn_open().
1422         (close_file) Renamed fn_close().
1423         (open_file_ext) Renamed fn_open_ext().
1424         (close_file_ext) Renamed fn_close_ext().
1425
1426         * font.h: Migrate from arenas to pools.
1427
1428         * format.c: (parse_format_specifier_name) Deal with ds_* strings.
1429
1430         * frequencies.g: Migrate from arenas to pools.
1431
1432         * frequencies.q: Migrate to new q2c version.  Migrate from arenas
1433         to pools.
1434
1435         * getline.c: All references updated.
1436         (global getl_buf) Changed from char * to struct string.
1437         (static getl_include_path) Ditto.
1438         (global getl_buf_len) Removed.
1439         (global getl_buf_size) Removed.
1440         (getl_include_path) Deal with new getl_buf, getl_include_path.
1441         (getl_uninitialize) New function.
1442         (getl_get_current_directory) Rewritten.
1443         (getl_clear_include_path) Rewritten.
1444         (getl_add_include_dir) Rewritten.
1445         (getl_add_file) Assertion fixed.
1446         (getl_add_virtual_file) Change initial value of `remaining_loops'
1447         from 2 to 1.
1448         (welcome) Rewritten.
1449         (handle_line_buffer) Make static.  Change logic to make
1450         getl_add_virtual_file() change sensible.  Use ds_*() strings.
1451         (getl_read_line) Use ds_*() strings.  Implement SET ECHO.
1452         (getl_close_file) Moved.
1453         (getl_location) New function.
1454
1455         * getline.h: All references updated.
1456         (macro curln) Removed.
1457         (macro curfn) Removed.
1458         (macro am_interactive) Renamed getl_am_interactive.
1459         (macro am_reading_script) Renamed getl_reading_script.
1460
1461         * glob.c: (global fmt_parse_ignore_error) Removed.
1462         (init_glob) Use locale_dir not LOCALEDIR.  Use feholdexcept() on
1463         systems that support it (C99).  Turn off SET ECHO by default.  No
1464         necessary julcal initialization anymore.
1465
1466         * groff-font.c: Migrate from arenas to pools.
1467         (groff_read_font) Use err_push_file_locator().
1468         (groff_read_DESC) Ditto.
1469         (font_msg) Use tmsg().
1470
1471         * hash.c: (hsh_sort) Fix debug code.
1472         [GLOBAL_DEBUGGING] Include stdio.h.
1473
1474         * hash.h: (macro force_hsh_insert) Rephrase.
1475
1476         * heap.c: Rewritten.
1477         
1478         * heap.h: Rewritten.
1479
1480         * html.c: (html_option) Change from outp_value to struct string.
1481         (postopen) Change from curfn to getl_location().
1482         (escape_string) Remove rich-text code.  Signature changed.
1483         (output_tab_table) Switch from a_string to struct len_string.
1484         Remove rich text support.
1485
1486         * lexer.c: All references updated.  Largely rewritten.  Major
1487         changes listed below.  Removed tagged quote support.  Adapted to
1488         struct string tokstr.
1489         (global tokstr) Changed to struct string.
1490         (global tokstr_size) Removed.
1491         (global tokstr_len) Removed.
1492         (global tokid) New.
1493         (global tokint) Removed.
1494         (global toklongstr) Removed.
1495         (C* defines) Removed.
1496         (static tbl[]) Removed.
1497         (static id[]) Removed.
1498         (static une[]) Removed.
1499         (discard_line) Renamed lex_discard_line().
1500         (get_entire_line) Renamed lex_entire_line().
1501         (get_rest_of_line) Renamed lex_rest_of_line().
1502         (get_dotted_rest_of_line) Merged into lex_rest_of_line().
1503         (make_hexit) Removed.
1504         (syntax_error) Renamed lex_error().  Return value removed.
1505         (get_token_representation) Renamed lex_token_representation().
1506         (putback) Renamed lex_put_back().
1507         (putfwd) Renamed lex_put_forward().
1508         (convert_negative_to_dash) Renamed lex_negative_to_dash().
1509         (set_prog) Renamed lex_set_prog().
1510         (init_lex) Renamed lex_init().
1511         (reset_eof) Renamed lex_reset_eof().
1512         (lookahead) Renamed lex_look_ahead().
1513         (check_id) Rewritten.
1514         (yylex) Renamed lex_get(), rewritten.
1515         (lex_end_of_command) New function.  Many commands were rephrased
1516         using this.
1517         (lex_integer_p) New function.  Replaces compare of tokint against
1518         NOT_LONG.
1519         (lex_integer) New function.  Replaces tokint.
1520         (match_tok) Renamed lex_match().
1521         (match_id) Renamed lex_match_id().
1522         (match_int) Renamed lex_match_int().
1523         (force_match_id) Renamed lex_force_match_id(), added return value.
1524         (force_match) Renamed lex_force_match(), added return value.
1525         (force_string) Renamed lex_force_string(), added return value.
1526         (force_int) Renamed lex_force_int(), added return value.
1527         (lex_id_match_len) New function.
1528         (id_match) Renamed lex_id_match(), rewritten.
1529         (get_line) Renamed lex_get_line().
1530         (preprocess_line) Renamed lex_preprocess_line().
1531         (tokname) Renamed lex_token_name().
1532         (bin_value_func) Removed.
1533         (oct_value_func) Removed.
1534         (hex_value_func) Removed.
1535         (unexpected_eof) New function.
1536         (convert_numeric_string_to_char_string) New function.
1537         (parse_string) Rewritten, signature changed.
1538         (add_tokstr_char) Removed.
1539         (add_tokstr_unsigned) Removed.
1540         (add_tokstr_string) Removed.
1541         (parse_tagged_quote) Removed.
1542         (skip_comment) Renamed lex_skip_comment().
1543
1544         * lexer.h: All references updated.
1545         (macro is_id1) Renamed CHAR_IS_ID1.
1546         (macro is_idn) Renamed CHAR_IS_IDN.
1547         (token names ID, NUM, STRING, STOP, ... WITH, EXP) Renamed with
1548         prefix T_: T_ID, T_NUM, T_STRING, T_STOP, ... T_WITH, T_EXP.
1549         (macro get_token) Removed.
1550         (macro id_match) Removed.
1551         (macro force_match_id) Removed.
1552         (macro force_match) Removed.
1553         (macro force_string) Removed.
1554         (macro force_int) Removed.
1555         (macro force_num) Removed.
1556         (macro force_id) Removed.
1557
1558         * lexerP.h: Removed.
1559
1560         * list.q: Migrated to new q2c format.
1561         (write_line) Deal with struct len_string.
1562         (write_varname) Ditto.
1563         (write_fallback_headers) Ditto.
1564
1565         * magic.c: New file, incorporating the following global variables
1566         previously in other files: endian, second_lowest_value.  And both
1567         of those are conditional on #define's.
1568
1569         * magic.h: New file, incorporating the following global variable
1570         declarations: endian, second_lowest_value, and the following macro
1571         declarations: NOT_DOUBLE, NOT_LONG, NOT_INT.
1572
1573         * main.c: Added declarations of pgmname, finished, curdate,
1574         start_interactive.
1575         (main) Call new parse_script() function.
1576         (parse_script) New function.
1577         (execute_command) New function.
1578         (dump_token) Removed.
1579         (handle_error) New function.
1580
1581         * matrix.c: New file.
1582
1583         * matrix.h: New file.
1584
1585         * matrix-data.c: Migrated from arenas to pools.
1586         (mget_token) Change from parse_string_as_format() to data_in().
1587
1588         * means.q: Migrate to new q2c.
1589         (custom_tables) Renamed mns_custom_tables().
1590         (custom_crossbreak) Renamed mns_custom_crossbreak().
1591         (custom_variables) Renamed mns_custom_variables().
1592
1593         * mis-val.c: (static var width) Changed from `int' to `size_t'.
1594         (parse_varnames) Prototype.
1595         (parse_numeric) Rephrasings.
1596         (parse_alpha) Adapt to new struct string tokstr.
1597
1598         * misc.c: (intlog10) Rewritten.
1599         (spacing) Removed.
1600         (ansi_rand) Renamed real_rand(), moved into random.c.
1601         (ansi_srand) Renamed real_srand(), moved into random.c.
1602         (setup_randomize) Moved to random.c.
1603         (rand_uniform) Ditto.
1604         (rand_normal) Ditto.
1605         (rand_simple) Ditto.
1606         (get_config_line) Removed.
1607         (reverse) Removed (dead code).
1608
1609         * misc.h: (macro SET_BIT) Moved to bitvector.h.
1610         (macro CLEAR_BIT) Ditto.
1611         (macro TEST_BIT) Ditto.
1612         (macro SET_BIT_TO) Ditto.
1613         (macro BIT_INDEX) Ditto.
1614
1615         * output.c: (outp_read_devices) Move to err_push_file_locator()
1616         from push_cust().  Use struct string.
1617         (expand_op_tokstr) Removed.
1618         (static var op_tokstr) Changed to struct string.
1619         (static var op_tokstr_size) Removed.
1620         (tokener) Rephrasings.  Use struct string.
1621         (parse_options) Use struct string.
1622         (destroy_driver) Fix assertion.
1623         (outp_get_paper_size) Move to err_push_file_locator().
1624         [0] Removed dead code.
1625         (outp_string_width) Move to len_string.
1626
1627         * output.h: Comment fixes.
1628         (TAG_* enum series) Removed.
1629         (struct outp_value) Removed.
1630         (enum OUTP_T_FANCY) Removed.
1631         (struct outp_text) `s' changed from a_string to len_string.
1632         (struct outp_class) `option' change arg 3 from outp_value to
1633         struct string.
1634
1635         * pfm-read.c: (corrupt_msg) Rewritten.
1636
1637         * pfm-write.c: (bufwrite) Fix assertion.
1638
1639         * pool.c: New file, reference version.
1640
1641         * pool.h: New file, reference version.
1642
1643         * postscript.c: (ps_font_sizes) Fix assertion.
1644         (ps_option) Change arg 3 from outp_value to struct string.
1645         Adapt to struct string.
1646         (macro output_line) Removed.
1647         (macro add_string) Removed.
1648         (output_encodings) Adapted to struct string.  Moved to
1649         err_push_file_locator().
1650         (find_encoding_file) Fix assertion.
1651         (read_ps_encodings) Move to err_push_file_locator().
1652         (postopen) Use getl_location() instead of curfn.
1653         (out_text_plain) Move to len_string.
1654         (text) Ditto.  Remove rich text support.
1655
1656         * print.c: (cmd_print) Remove now-unneeded resource cleanup code.
1657         (cmd_print_eject) Ditto.
1658         (cmd_write) Ditto.
1659         (internal_cmd_print) Now cleans up after itself.  Uses
1660         fh_parse_file_handle() now.
1661         (cmd_print_space) Use PXP_NUMERIC to type-check.
1662
1663         * q2c.c: Overhauled.  Removed _("") i18n support.  All references
1664         updated.  All output functions updated to handle structures rather
1665         than local or static variables.  Adapt to new PSPP lex_*()
1666         functions.
1667         (macro _) Removed.
1668         (macro N_) Removed.
1669         (macro MAX_N_SBC) Removed.
1670         (global bare) Removed.
1671         (enum STRING) Renamed T_STRING.
1672         (enum ID) Renamed T_ID.
1673         (get_buffer) Buffer size increased.
1674         (strlower) Renamed st_lower(), rephrased.
1675         (strupper) Renamed st_upper(), rephrased.
1676         (skip_ws) New function.
1677         (get_line) Don't special-case any types of lines (like those
1678         beginning with ! or $, for instance).
1679         (get_token) Renamed lex_get().  Rephrased.
1680         (static var `prefix') New.
1681         (parse) New function.
1682         (parse_setting) Minor rephrasing.
1683         (dump_specifier_vars) Ditto.
1684         (make_identifier) Put null terminator on identifier, duh.
1685         (dump_vars) Renamed dump_declarations().  Never indent.  Never
1686         static.  Output changed entirely.
1687         (dump_specifier_init) Rephrase.
1688         (dump_vars_init) No index variable needed.  Other modifications.
1689         (dump_parser) Don't parse command name.  Do dump functions instead
1690         of just code fragments.
1691         (dump_free) Dump function instead of code fragment.
1692         (recognize_directive) New function.
1693         (main) Use recognize_directive().  Don't rely on magic $ line
1694         beginning: instead, parse comments.  Update list of headers.
1695
1696         * random.c: New file, containing the following functions:
1697         real_rand(), real_srand(), setup_randomize, shuffle, rand_uniform,
1698         rand_normal, rand_simple.
1699
1700         * random.h: New file.
1701
1702         * recode.c: (cmd_recode) Merge internal_cmd_recode() into this
1703         function.  `max_src_width', `max_dst_width' changed to size_t.
1704         (internal_cmd_recode) Removed.
1705         (parse_dest_spec) Merge similar cases.
1706         (parse_src_spec) Add assertion.
1707
1708         * repeat.c: (recognize_keyword) New function.
1709         (internal_cmd_do_repeat) Parse and handle PRINT keyword on END
1710         REPEAT.  Improve recognition of END REPEAT (use
1711         recognize_keyword()).  Move from curfn to getl_location().  Use
1712         struct string.
1713                 
1714         (perform_DO_REPEAT_substitutions) Adapt to struct string.
1715
1716         * set.q: Adapt to new q2c.
1717         (cmd_set) Range-check some values better.
1718         (custom_blanks) Renamed stc_custom_blanks().
1719         (custom_length) Renamed stc_custom_length().
1720         (custom_results) Renamed stc_custom_results().
1721         (custom_seed) Renamed stc_custom_seed().
1722         (custom_width) Renamed stc_custom_width().
1723         (custom_format) Renamed stc_custom_format().
1724         (custom_journal) Renamed stc_custom_journal().
1725         (custom_color) Renamed stc_custom_color().
1726         (custom_listing) Renamed stc_custom_listing().
1727         (custom_disk) Renamed stc_custom_disk().
1728         (custom_log) Renamed stc_custom_log().
1729         (custom_rcolor) Renamed stc_custom_rcolor().
1730         (custom_viewlength) Renamed stc_custom_viewlength().
1731         (custom_workdev) Renamed stc_custom_workdev().
1732
1733         * settings.h: Not necessary to include format.h any longer.
1734
1735         * sfm-read.h: (macro bswap_int32) Moved here from sfmP.h.
1736         (corrupt_msg) Rewritten.
1737
1738         * sort.c: Adapt to rewritten heap ADT.
1739
1740         * str.c: (aa_strcpy) Removed.
1741         (ab_strcpy) Removed.
1742         (ac_strcpy) Removed.
1743         (ba_strcpy) Removed.
1744         (bb_strcpy) Removed.
1745         (ca_strcpy) Removed.
1746         (aa_strdup) Removed.
1747         (aa_strdupcpy) Removed.
1748         (ba_strdup) Removed.
1749         (sa_strdup) Removed.
1750         (memrev) Renamed mm_reverse().
1751         (memrmem) Renamed mm_find_reverse().
1752         (cmp_str) Renamed st_compare_pad().
1753         (strmaxcpy) Removed.
1754         (strbarepadcpy) Renamed st_bare_pad_copy(), signature changed.
1755         (strbarepadlencpy) Renamed st_bare_pad_len_copy(), signature
1756         changed.
1757         (strpadcpy) Renamed st_pad_copy(), signature changed.
1758         (blpstrset) Removed.
1759         (ds_create) New function.
1760         (ds_init) New function.
1761         (ds_replace) New function.
1762         (ds_destroy) New function.
1763         (ds_clear) New function.
1764         (ds_extend) New function.
1765         (ds_shrink) New function.
1766         (ds_truncate) New function.
1767         (ds_length) New function.
1768         (ds_size) New function.
1769         (ds_value) New function.
1770         (ds_end) New function.
1771         (ds_concat) New function.
1772         (ds_concat_buffer) New function.
1773         (ds_printf) New function.
1774         (ds_putchar) New function.
1775         (ds_getline) New function.
1776         (ds_get_config_line) New function derived from the old
1777         misc.c:get_config_line().
1778         (ls_create) New function.
1779         (ls_create_buffer) New function.
1780         (ls_init) New function.
1781         (ls_shallow_copy) New function.
1782         (ls_destroy) New function.
1783         (ls_null) New function.
1784         (ls_null_p) New function.
1785         (ls_empty_p) New function.
1786         (ls_length) New function.
1787         (ls_value) New function.
1788         (ls_end) New function.
1789
1790         * str.h: Reformatted.
1791         (struct a_string) Removed.
1792         (struct b_string) Removed.
1793         (struct c_string) Removed.
1794         (struct len_string) New.
1795         (struct string) New.
1796         (macro as_streq) Removed.
1797         (macro bs_streq) Removed.
1798         (macro cs_streq) Removed.
1799         (macro sa_streq) Removed.
1800         (macro sb_streq) Removed.
1801         [__GNUC__] (inline function ds_putchar) New function.
1802         [__GNUC__] (inline function ds_length) New function.
1803         [__GNUC__] (inline function ds_value) New function.
1804         [__GNUC__] (inline function ds_end) New function.
1805
1806         * sysfile-info.c: (cmd_sysfile_info) Rephrased.
1807         (display_vectors) Fix missing i18n.
1808
1809         * t-test.q: Migrate to new q2c.
1810
1811         * tab.c: Migrate from arenas to pools.
1812         (tab_create) Use struct len_string.
1813         (tab_realloc) Ditto.
1814         (text_format) Ditto.
1815         (tab_joint_text) Ditto.
1816         (tab_natural_width) Remove rich text support.
1817         (tab_natural_height) Ditto.
1818         (tab_output_text) Handle TAT_FIX.
1819         (tab_raw) Change arg from a_string to len_string.
1820         (tabi_driver) Fix assertion.  Use struct len_string.
1821         (render_strip) Use struct len_string.  Remove rich text support.
1822         Add `const' qualifiers.
1823
1824         * tab.h: (enum TAB_RICH) Remove.
1825         (enums TAB_COL_NONE, TAB_COL_DONE) New.  Where appropriate,
1826         SOM_COL_* updated to read TAB_COL_*.
1827         (struct tab_table) Change arena to pool.  Change a_string to
1828         len_string.
1829
1830         * temporary.c: (restore_dictionary) Rewrite Checker code.
1831
1832         * var.h: (macros MAX_SHORT_STRING, MIN_LONG_STRING, SYSMIS,
1833         LOWEST, HIGHEST) Moved here from common.h.
1834         (typedef any_trns) Removed.  All references changed to `struct
1835         trns_header'.
1836
1837         * vars-atr.c: (force_create_variable) Fix assertion.
1838         (force_dup_variable) Fix assertion.
1839         
1840 Thu Jun  3 18:40:42 1999  Ben Pfaff  <blp@gnu.org>
1841
1842         Using alphanumeric variables in functions under AGGREGATE
1843         segfaulted.  Fixed.  Thanks to Dr. Dirk Melcher
1844         <BZN-mdksh@t-online.de> for reporting this bug.
1845         
1846         * aggregate.c: (parse_aggregate_functions) When setting the
1847         FSTRING bit, also allocate memory for the `string' member of
1848         agr_next.
1849         (free_aggregate_functions) Free iter->string.  Don't use the
1850         non-function bits when indexing the array of functions.
1851         [DEBUGGING] (debug_print) Don't use the non-function bits when
1852         indexing the array of functions.        
1853
1854 Sun May 30 00:00:54 1999  Ben Pfaff  <blp@gnu.org>
1855
1856         Under certain circumstances, the final case would be omitted from
1857         the results of an AGGREGATE operation.  Fixed.  Thanks to Dr. Dirk
1858         Melcher <BZN-mdksh@t-online.de> for reporting this bug.
1859         
1860         * aggregate.c (agr_00x_end_func): Increment number of cases in
1861         sink before writing case.  For streams that keep track of how many
1862         cases there are based on this value, this means that the last case
1863         will be read in on the next stream read.
1864
1865 Sat May 29 22:03:31 1999  Ben Pfaff  <blp@gnu.org>
1866
1867         Undefined behavior was invoked by referencing a freed pointer.
1868         
1869         * vfm.c (memory_stream_write): Free pointer *after* checking for
1870         non-null status.
1871
1872 Sat May 29 22:02:22 1999  Ben Pfaff  <blp@gnu.org>
1873
1874         A wrong record size was displayed when paging the active file to
1875         disk.
1876         
1877         * vfm.c: (memory_stream_write) Fix off-by-one error.
1878
1879 Sat May 29 21:50:26 1999  Ben Pfaff  <blp@gnu.org>
1880
1881         Not having enough temporary space for sorting caused a core dump.
1882         Fixed.
1883         
1884         * sort.c: (allocate_cases) Initialize i.
1885
1886 Sat May 29 21:40:54 1999  Ben Pfaff  <blp@gnu.org>
1887
1888         Syntax errors in function descriptions on AGGREGATE caused core
1889         dumps.  Fixed.
1890         
1891         * aggregate.c (cmd_aggregate): Don't free agr_dict after calling
1892         free_aggregate_functions(), since that function already frees
1893         agr_dict.
1894         
1895 Sat May 29 21:06:10 1999  Ben Pfaff  <blp@gnu.org>
1896
1897         A null pointer was dereferenced, causing a core dump, when
1898         PERCENTILES was specified on FREQUENCIES.  This fixes the problem,
1899         but PSPP still doesn't calculate percentiles.  Thanks to Regnor
1900         Jernsletten <rjernsle@eunet.no> for reporting this problem.
1901         
1902         * arena.c: (arena_malloc) If the arena hasn't been initialized
1903         already, initialize it.
1904
1905 Sat May 29 20:47:29 1999  Ben Pfaff  <blp@gnu.org>
1906
1907         * Makefile.cygwin: New file supplied by Hankin <hankin@dunno.com>
1908         for compilation with Cygnus Windows B20.  Not used by other
1909         systems.
1910
1911 Sat May 29 20:36:04 1999  Ben Pfaff  <blp@gnu.org>
1912
1913         SORT always sorted in ascending order.  Fixed.  Thanks to Dr. Dirk
1914         Melcher <BZN-mdksh@t-online.de> for reporting this bug.
1915
1916         * sort.c: (compare_case_lists) Reverse sense of comparison if
1917         sorting in descending order.
1918         (compare_record) Ditto.
1919
1920 Tue Mar  9 13:18:54 1999  Ben Pfaff  <blp@gnu.org>
1921
1922         SPLIT FILE with a string variable caused a core dump.  Fixed.
1923
1924         * vfm.c: If the variable is a string then make a temporary value
1925         struct pointing to it.  The underlying problem is a lot bigger
1926         than this (see TODO) but this is a stopgap for the simple case at
1927         least.
1928         
1929 Tue Mar  9 13:15:53 1999  Ben Pfaff  <blp@gnu.org>
1930
1931         Nested INCLUDEs didn't work.  Fixed.
1932
1933         * getline.c: (getl_include) Set first_line to NULL in allocated
1934         structure.
1935
1936 Tue Mar  9 13:13:46 1999  Ben Pfaff  <blp@gnu.org>
1937
1938         The MATCH FILES procedure set the values of variables not present
1939         to 0.  It should have been SYSMIS.  This is now fixed.
1940
1941         * get.c: (mtf_delete_file_in_place) Replace 0.0 by SYSMIS.
1942
1943 Tue Mar  9 12:52:23 1999  Ben Pfaff  <blp@gnu.org>
1944
1945         The REMARK command was too aggressive about skipping lines.  It
1946         didn't like being the last command in a file.
1947
1948         * command.c: (cmd_remark) Call get_entire_line() instead of
1949         get_line().
1950
1951 Tue Mar  9 12:48:05 1999  Ben Pfaff  <blp@gnu.org>
1952
1953         Comment parsing wasn't consistent with the rest of the code in its
1954         idea of where one command ends and another starts.  This meant
1955         that sometimes commands would be mysteriously ignored.  Thanks to
1956         Dr. Dirk Melcher <BZN-mdksh@t-online.de> for reporting this bug.
1957          
1958         * command.c: (parse_cmd) Hand off comment parsing to new function
1959         skip_comment() in lexer.c.
1960         * lexer.c: (skip_comment) New function.
1961
1962 Wed Jan 20 20:22:07 1999  Ben Pfaff  <blp@gnu.org>
1963
1964         The TABLE subcommand on MATCH FILES worked only erratically at
1965         best.  This fixes it.  Thanks to Dr. Dirk Melcher
1966         <BZN-mdksh@t-online.de> for reporting this bug.
1967
1968         * get.c: (mtf_compare_BY_values) When comparing string values, a
1969         difference of 1 is still a difference :-)
1970         (mtf_processing) Inverted TABLE reading logic fixed.  Also don't
1971         advance TABLE files automatically when matched.  Comment fixes.
1972
1973 Tue Jan 19 22:32:31 1999  Ben Pfaff  <blp@gnu.org>
1974
1975         VARIABLE LABELS rejected a slash before the first variable
1976         specification, contradicting the documentation.  Thanks to Walter
1977         M. Gray <graywm@northernc.on.ca> for reporting this bug.
1978
1979         * var-labs.c: (cmd_variable_labels) Ignore a leading slash in
1980         command specification.
1981
1982 Tue Jan 19 22:29:54 1999  Ben Pfaff  <blp@gnu.org>
1983
1984         Because of an incorrect optimization in memory allocation,
1985         CROSSTABS sometimes segfaulted when asked to output multiple
1986         tables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
1987         reporting this bug.
1988
1989         * crosstabs.q: (postcalc) New variables maxcols, maxcells, which
1990         are passed to output_pivot_table() for its use.
1991         (output_pivot_table) Instead of assuming the number of columns is
1992         constant, keep track with maxcols.  In general mode, use maxcells
1993         to determine whether more matrix cells need to be allocated.    
1994
1995 Tue Jan 19 22:27:46 1999  Ben Pfaff  <blp@gnu.org>
1996
1997         CROSSTABS didn't display value labels for column and row
1998         variables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
1999         reporting this bug.
2000
2001         * crosstabs.q: (table_value_missing) If the specified value has a
2002         value label for this variable, then show it instead of the raw
2003         value.
2004         (display_dimensions) Delegate display of value_labels to
2005         table_value_missing.
2006
2007 Mon Jan 18 20:04:06 1999  Ben Pfaff  <blp@gnu.org>
2008
2009         WRITE didn't write line ends.  Fixed.  Thanks to Dr. Dirk Melcher
2010         <BZN-mdksh@t-online.de> for reporting this bug.
2011
2012         * print.c: (print_trns_proc) Write (CR/)LF if PRINT is used _or_
2013         if the file isn't declared as binary.
2014
2015 Mon Jan 18 19:56:45 1999  Ben Pfaff  <blp@gnu.org>
2016
2017         MATCH FILES corrupted memory and dumped core on some syntax
2018         errors.  Fixed.
2019
2020         * get.c: (cmd_match_files) Set file->handle to NULL before
2021         jumping to lossage.
2022         (mtf_free_file) Don't free a null dictionary.   
2023
2024 Mon Jan 18 19:27:57 1999  Ben Pfaff  <blp@gnu.org>
2025
2026         MATCH FILES should set numeric values not available to the
2027         system-missing value, not to 0.  Thanks to Dr. Dirk Melcher
2028         <BZN-mdksh@t-online.de> for reporting this bug.
2029
2030         * get.c: (mtf_processing) Set unused records to system-missing,
2031         not 0.
2032
2033 Mon Jan 18 15:06:46 1999  Ben Pfaff  <blp@gnu.org>
2034
2035         KEEP didn't work properly on the SAVE procedure.  Fixed.  Thanks
2036         to Ralf Geschke <ralf@kuerbis.org> for reporting this bug.
2037
2038         * temporary.c: (save_dictionary) Initialize var_by_name AVL tree
2039         in newly created dictionary, and add each copied variable to the
2040         tree.
2041  
2042 Mon Jan 18 15:04:48 1999  Ben Pfaff  <blp@gnu.org>
2043
2044         Memory leak fix.
2045         
2046         * get.c: (trim_dictionary) Free variable list for KEEP after
2047         finishing with it.
2048
2049 Mon Jan 18 12:57:36 1999  Ben Pfaff  <blp@gnu.org>
2050
2051         Some systems didn't like the way open_file was coded.  Thanks to
2052         Hankin <hankin@rogue.consultco.com> for pointing this out.
2053
2054         * filename.c: (open_file) Don't try to store stdin, stdout,
2055         stderr as part of an array, because that doesn't always work.
2056
2057 Mon Jan 18 12:53:27 1999  Ben Pfaff  <blp@gnu.org>
2058
2059         The SAVE procedure didn't save long string variables properly.
2060         Fixed by this patch.  Thanks to Hankin
2061         <hankin@rogue.consultco.com> for this patch.
2062         
2063         * sfm-write.c: (write_variable) Fix off-by-one error in writing
2064         out variable pad records.
2065
2066 Tue Jan  5 14:29:27 1999  Ben Pfaff  <blp@gnu.org>
2067
2068         Previously, if PRINT SPACE were given a negative argument, it
2069         would report an error, then spin in an (almost) infinite loop.
2070         This fixes that behavior.
2071
2072         * print.c: (print_space_trns_proc) After reporting a negative
2073         argument, set number of lines to print to 1.
2074
2075 Tue Jan  5 13:59:55 1999  Ben Pfaff  <blp@gnu.org>
2076
2077         SPSS 8.0 outputs some new record types in its system files, and it
2078         allows longer value labels.  Accept these system files.
2079
2080         * sfm-read.c: (sfm_read_dictionary) Ignore record type 7 subtype
2081         11 emitted by SPSS 8.0.
2082         
2083 Tue Jan  5 13:55:50 1999  Ben Pfaff  <blp@gnu.org>
2084
2085         The LIST procedure was too conservative in allocating space for
2086         buffers, which caused a bug that only showed up with very long
2087         output variables.  Thanks to Hankin <hankin@dunno.com> for this
2088         bug report.
2089
2090         * list.q: (determine_layout) Allocate 1022 bytes instead of 256.
2091
2092 Tue Jan  5 13:34:34 1999  Ben Pfaff  <blp@gnu.org>
2093
2094         Typo meant string format specifiers weren't checked properly.  I
2095         think that Hankin <hankin@dunno.com> sent me this report, but I'm
2096         willing to be corrected on this point.
2097  
2098         * format.c: (check_string_specifier) Fix obvious typo.  
2099
2100 Tue Jan  5 12:50:42 1999  Ben Pfaff  <blp@gnu.org>
2101
2102         Using $CASENUM in an expression didn't work.  Here's a fix.
2103         Thanks to Dirk Melcher <BZN-mdksh@t-online.de> for reporting this
2104         bug.
2105          
2106         * expr-evl.c: (evaluate_expression) Add OP_CASENUM case.
2107
2108         * expr-opt.c: (dump_node) OP_CASENUM is acceptable.
2109
2110 Tue Jan  5 12:47:48 1999  Ben Pfaff  <blp@gnu.org>
2111
2112         The changes in 0.2.1 to fix DATA LIST FREE parsing broke some
2113         other behavior, *sigh*.  This patch hopefully fixes that.  This
2114         time I've actually tested it.
2115
2116         Thanks to Hankin <hankin@dunno.com> for reporting this bug.
2117
2118         * data-list.c: (read_from_data_list_free,
2119         read_from_data_list_list) Call parse_string_as_format() directly
2120         without mucking around with the field width.
2121
2122 Tue Jan  5 12:31:19 1999  Ben Pfaff  <blp@gnu.org>
2123
2124         Occasionally, you may encounter a script that wants to be
2125         interpreted in interactive mode.  Make -i emulate this behavior to
2126         allow such scripts to be executed with PSPP.
2127
2128         Thanks to Hankin <hankin@dunno.com> for reporting this behavior.
2129
2130         * cmdline.c: (pre_syntax_message[]) Update -i description.
2131
2132         * lexer.c: (preprocess_line) When getl_interactive is 2 (i.e.,
2133         when -i is given on the command line) don't treat unindented lines
2134         as starting a new command.
2135
2136 Tue Jan  5 12:30:10 1999  Ben Pfaff  <blp@gnu.org>
2137
2138         In conjunction with egcs 1.1.1, Checker emits some bogus warnings,
2139         mostly caused by local initialized aggregates.  After egcs is
2140         fixed upstream these can be removed, but for now they're not a big
2141         deal.
2142         
2143         * ascii.c: (ascii_postopen_driver) Checker chokes on local
2144         initialized arrays.  Avoid this.
2145
2146         * sfm-write.c: (sfm_write_dictionary) Don't use a local
2147         initialized struct.
2148
2149 Tue Jan  5 12:07:24 1999  Ben Pfaff  <blp@gnu.org>
2150
2151         egcs 1.1.1 has some new warnings relative to gcc 2.8.1, which the
2152         following changes avoid.  Currently I compile sources with egcs
2153         1.1.1 and gcc 2.7.2.3 before sending them out.
2154
2155         * apply-dict.c: (apply_dict) Use new avl_traverser_init() macro.
2156         
2157         * ascii.c: (option_tab[]) Initialize all struct members.
2158
2159         * avl.h: (avl_traverser_init) New macro.
2160         
2161         * command.c: (DEFCMD, UNIMPL macros, cmd_table[]) Initialize all
2162         struct members.
2163
2164         * crosstabs.q: (enum_var_values) Use new hsh_iterator_init()
2165         macro.
2166
2167         * hash.c: Comment fix.
2168
2169         * hash.h: (hsh_iterator_init) New macro.
2170
2171         * html.c: (option_tab[]) Initialize all struct members.
2172
2173         * pfm-write.c: (write_value_labels) Use new avl_traverser_init()
2174         macro.
2175
2176         * postscript.c: (option_tab[]) Initialize all struct members.
2177         (output_encodings, preclose, dump_lines) Use new
2178         hsh_iterator_init() macro.
2179
2180         * sfm-write.c: (write_value_labels) Use new avl_traverser_init()
2181         macro.
2182
2183         * sysfile-info.c: (describe_variable) Use new avl_traverser_init()
2184         macro.
2185
2186 Thu Nov 19 12:32:45 1998  Ben Pfaff  <blp@gnu.org>
2187
2188         * data-in.c: Examined each of the parsing functions to make sure
2189         that they wouldn't dump core if they were passed a string of the
2190         wrong length, since now the DATA LIST FREE/LIST routines don't
2191         check for field width before passing it to the data parser.
2192         (parse_RBHEX, parse_AHEX) Reject odd length input.
2193         (parse_string_as_format) Reject input that's too short or too
2194         long.
2195
2196         * data-list.c: Before, the DATA LIST FREE/LIST routines would pad
2197         a field to its entire declared output width then pass it to the
2198         data-in parsing routines.  This contradicted the documented
2199         behavior.  This is fixed in these changes.  Thanks to Mark H. Wood
2200         <mwood@IUPUI.Edu>.  In addition, this fixes a few more details of
2201         free-format parsing that differed from SPSS.
2202         (cut_field) Commas and spaces are treated identically.  Returns
2203         the proper column instead of a fixed 1 value.
2204         (parse_field) Removed.
2205         (read_from_data_list_free, read_from_data_list_list) Call
2206         parse_string_as_format directly instead of parse_field.
2207
2208         * heap.c: (heap_delete) Stylistic fixes.
2209
2210 Sun Aug  9 11:12:13 1998  Ben Pfaff  <blp@gnu.org>
2211
2212         * loop.c: (loop_2_trns_proc) Formatting fix.
2213
2214         * sel-if.c: (cmd_filter) Set FILTER_before_TEMPORARY.
2215
2216         * var.h: (glob var FILTER_before_TEMPORARY) New global var.
2217
2218         * vfm.c: (macro FILTERED) New.
2219         (static var filter_var) New.
2220         (process_active_file_write_case) Use FILTERED.
2221         (setup_filter) Set filter_var.
2222         (close_active_file) Delete the filter if not
2223         FILTER_before_TEMPORARY.
2224         (procedure_write_case) Use FILTERED.
2225
2226 Sat Aug  8 00:20:14 1998  Ben Pfaff  <blp@gnu.org>
2227
2228         * crosstabs.q: Changed /PIVOT={ON,OFF} to /FORMAT={PIVOT,NOPIVOT}.
2229
2230         * data-in.c: (parse_day_count) Message fix.
2231         (parse_month) Style fix.
2232
2233         * data-list.c: (struct data_list_pgm) New member eof.
2234         (cmd_data_list) Init eof to 0.
2235         (do_reading) Implement the /END subcommand and read-past-eof
2236         checking.
2237
2238         * do-if.c: Include stdio.h when debugging.
2239         (cmd_else_if) Make sure the command is .-terminated.
2240
2241         * glob.c: (init_glob) Capitalize the command prompt.
2242
2243         * inpt-pgm.c: (end_case_trns_proc) Debugging message.
2244         (end_file_trns_proc) Debugging message.
2245
2246         * loop.c: (internal_cmd_loop) Make it work when there's no loop
2247         index!
2248         (loop_2_trns_proc) Enable MXLOOPS (why was this disabled?)
2249
2250         * main.c: (dump_token) Make kwtab[] const.
2251
2252         * set.q: Spelling, comment fixes.
2253
2254         * sysfile-info.c: (cmd_display) DISPLAY VECTORS not DISPLAY
2255         VECTOR.
2256
2257         * vars-prs.c: (fill_all_vars) Style fix.
2258
2259         * vfm.c: (index_to_varname) Return const.
2260
2261 Tue Aug  4 23:49:23 1998  Ben Pfaff  <blp@gnu.org>
2262
2263         * Changes in many source files for partial -ansi -pedantic and
2264         no-debugging compliance: Remove trailing common in enum
2265         declarations; add `unused' attributes; insert some appropriate
2266         casts.
2267
2268         * cmdline.c: (parse_command_line) Add new --testing-mode flag.
2269
2270         * command.c: (shell) Make static.
2271         (run_command) Make static.
2272
2273         * data-list.c: (dump_fixed_table) Remove use of local_strdup().
2274
2275         * dfm.c: (cmd_begin_data) I18n fix.
2276
2277         * error.c: (verbose_msg) Define if __STRICT_ANSI__.
2278
2279         * error.h: (macro verbose_msg) Define if __STRICT_ANSI__.
2280
2281         * expr-opt.c: (evaluate_tree) Don't initialize local arrays if
2282         __STRICT_ANSI__.
2283
2284         * file-handle.q: Don't prepend the source file directory name to
2285         the data file name.  (Ongoing issue.)
2286         (prepend_current_directory) Comment out.
2287         (internal_cmd_file_handle) Don't call prepend_current_directory().
2288         (fh_get_handle_by_filename) Ditto.
2289
2290         * filename.c: Append zero byte to readlink() return value.
2291
2292         * getline.c: (getl_read_line) I18n fix.
2293
2294         * lexer.h: Don't use gcc features if __STRICT_ANSI__.
2295
2296         * misc.h: Don't use gcc features if __STRICT_ANSI__.
2297
2298         * pfm-write.c: (bufwrite) Don't try to increment a void * pointer
2299         directly.
2300
2301         * postscript.c: (output_encodings) Don't use local_strdup().
2302         (postopen) Ditto.
2303
2304         * print.c: Don't use gcc features if __STRICT_ANSI__.
2305
2306         * q2c.c: (dump_vars) Don't put a , at the end of the last enum.
2307
2308         * recode.c: (parse_src_spec) Fully brace nested if's.
2309
2310         * set.q: (global var set_testing_mode) New var.
2311
2312 Wed Jul 29 22:01:44 1998  Ben Pfaff  <blp@gnu.org>
2313
2314         * ascii.c: Add some more `unused' attributes that only come into
2315         play when NDEBUG is defined.
2316         (ascii_close_page) Set s_len when reallocating s.
2317         
2318         * crosstabs.q: (delete_missing) New function.
2319         (output_pivot_table) Call delete_missing() if /MISSING=REPORT.
2320         (make_summary_table) Create summary table reallocable.
2321
2322         * postscript.c: Add more `unused' attributes as above.
2323
2324         * tab.c: (tab_create) [GLOBAL_DEBUGGING] Set reallocable member.
2325         (tab_realloc) [GLOBAL_DEBUGGING] Assert that table is reallocable.
2326          
2327         * tab.h: (struct tab_table) [GLOBAL_DEBUGGING] New `reallocable'
2328         member.
2329
2330         * var.h: (macro force_dup_variable) [!GLOBAL_DEBUGGING] Remove
2331         gratuitous space between parameter definition.
2332
2333         * vars-atr.c: Changed some assert(0)'s to abort()'s to prevent
2334         complaints about running off the end of functions with NDEBUG
2335         enabled.
2336
2337 Sun Jul  5 00:17:25 1998  Ben Pfaff  <blp@gnu.org>
2338
2339         * Several source files: Removed some PORTME notes when reflection
2340         revealed that ANSI forbids that sort of breakage.  Also, added
2341         lots of `unused' qualifiers here and there.
2342
2343         * aggregate.c: (accumulate_aggregate_info) Remove local var
2344         weighting that turned out not to be used.
2345
2346         * avl.c: Update to version 1.1.0.  Add unused specifier.
2347         (avl_destroy) Initialize ab to 0.  Comment fixes.  Cast return
2348         value to void *.
2349         (avl_probe) Replace some instances of 1 with +1 where appropriate.
2350         (avl_find) Cast return value to void *.
2351         (avl_delete) q doesn't need to be initialized at the beginning of
2352         the function.  Replace some instances of 1 with +1.
2353         (force_avl_delete) Renamed avl_force_delete, all references changed.
2354         (compare_ints) `param' marked unused.
2355         (print_int) `param' marked unused.
2356         (recurse_tree) Replace some instances of 1 with +1.
2357
2358         * avl.h: Update to version 1.1.0.  Only declares avl function
2359         types if not already declared.
2360         (AVL_MAX_HEIGHT) Only define if not already defined.
2361         (struct avl_node) New unused member char pad[2].
2362         [GLOBAL_DEBUGGING] Change conditionalization to NDEBUG instead.
2363         (force_avl_insert) Renamed avl_force_insert.
2364         (force_avl_delete) Renamed avl_force_delete.
2365
2366         * crosstabs.q: (struct table_entry) Put `freq' into a union with
2367         new member `data'.
2368         (struct crosstab) Add new member `ofs'.
2369         (glob var int_tab) Removed.
2370         (custom_tables) In integer mode, assign v[i] properly through the
2371         indirect var_dict.
2372         (custom_variables) Now p.crs.max == max + 1.
2373         [DEBUGGING] (debug_print) p.crs.min and p.crs.max are now ints.
2374         (precalc) Implement integer mode.
2375         (calc_integer) Implement integer mode.
2376         (compare_table_entry) Remove unused local variable `comparing'.
2377         (make_summary_table) Implement integer mode.
2378         (macro ns_rows) Implemented as static variable now.
2379         (several variables) Made static, from global.
2380         (output_pivot_table) Use table_value_missing() for column heads.
2381         Remove several unused local variables.  Implement integer mode
2382         table summing.  Count up ns_rows.
2383         (crosstabs_dim) Make columns wider when /MISSING=REPORT requested.
2384         (find_pivot_extent) Moved into find_pivot_extent_general; now just
2385         calls that function or find_pivot_extent_integer.
2386         (find_pivot_extent_integer) New function.
2387         (enum_var_values) Implemented for integer mode.
2388         (table_value_missing) New function.
2389         (display_dimensions) Call table_value_missing() for heads.
2390         (float_M_suffix) New function.
2391         (display_crosstabulation) Call table_value_missing() for row
2392         heads.  Handle missing values in /MISSING=REPORT mode.
2393         (calc_fisher) Remove unused var N.
2394         (calc_r) Remove unused var fact.
2395
2396         * data-list.c: (dump_fixed_table) Fix table dimensioning.
2397         (read_one_set_of_repetitions) Remove unused vars var_spec, column.
2398
2399         * data-out.c: (insert_commas) Remove unused var cp.
2400         (convert_CCx) Remove unused vars save_set_decimal,
2401         save_set_grouping.
2402
2403         * descript.q: (dump_z_table) Fix table dimensioning.
2404         (pre_calc) Remove unused var j.
2405         (display) Remove unused vars title, s.  Fix table dimensioning.
2406
2407         * expr-evl.c: Comment fixes.
2408
2409         * frequencies.q: (full_dim) New function.
2410         (dump_full) Fix table dimensioning.
2411         (condensed_dim) New function.
2412         (dump_condensed) Fix table dimensioning.
2413
2414         * get.c: (cmd_match_files) Remove unused var n_val.  Remove unused
2415         label winnage.
2416
2417         * html.c: (html_close_drive) Remove unused var i.
2418         (postopen) Remove unused vars title, curfn_len, cp.
2419         (preclose) Remove unused vars this, x.
2420
2421         * lexer.c: Comment fixes.
2422
2423         * matrix-data.c: (cmd_matrix_data) Remove unused var index.
2424
2425         * means.q: (custom_tables) Remove unused var m_dim.
2426
2427         * mis-val.c: Format fix.
2428
2429         * modify-vars.c: (cmd_modify_vars) Remove unused var new_dict.
2430
2431         * output.c: (outp_get_paper_size) Remove unused var cp.
2432
2433         * pfm-read.c: (read_float) Remove unused var save, unused label
2434         underflow.
2435         (read_variables) Remove unused vars cp, j.
2436         (read_value_label) Remove unused var j.
2437
2438         * pfm-write.c: (bufwrite) Remove unused var i.
2439
2440         * postscript.c: (ps_postopen_drive) Remove unused vars dev_info,
2441         fn.
2442         (output_encodings) Remove unused vars char_cp, n_output.
2443         (read_ps_encodings) Remove unused var ep.
2444         (postopen) Remove unused var title.
2445         (preclose) Remove unused var fp.
2446         (ps_open_page) Remove unused vars true, false, orientation,
2447         mirror_horz, mirror_vert, width, length.
2448         (ps_text_metrics) Remove unused var x.
2449
2450         * q2c.c: (find_symbol) Remove unused var y.
2451         (parse_setting) Remove unused parameter sbc, all references
2452         changed.
2453         (dump_parser) Remove unused var cp.
2454         (dump_free) Remove unused var i.
2455
2456         * set.q: (static vars args, n) Removed.
2457         (internal_cmd_gset) Removed.
2458
2459         * sfm-read.c: (sfm_read_dictionary) Removed unused var i.
2460         (read_machine_flt64_info) Removed unused var file_endian.
2461         (read_documents) Removed unused var i.
2462         (read_compressed_data) Removed unused parameter dict, all
2463         references changed.
2464
2465         * sfm-write.c: (bufwrite) Removed unused var i.
2466         (sfm_write_case) Removed unused var i.
2467
2468         * sort.c: (merge_once) Remove unused var t.
2469         (write_separate) #if 0 out as dead code.
2470
2471         * split-file.c: (cmd_split_file) Remove unused var i.
2472
2473         * sysfile-info.c: (sysfile_info_dim) New function.
2474         (cmd_sysfile_info) Fix table dimensioning.
2475         (variables_dim) New function.
2476         (display_variables) Fix table dimensioning.
2477         (describe_variable) Remove unused var prev_r.
2478
2479         * t-test.q: (z_postcalc) Removed.
2480         (pairs_calc) Remove unused var bad_weight.
2481         (postcalc) Remove unused vars dfn, dfd.
2482
2483         * tab.c: (tab_create) Set t->dim to NULL.
2484         (tab_dim) Make sure t->dim is NULL first.
2485         (tab_natural_width) Remove parameter `clamp'.
2486         (tab_value) Remove duplicate assertion for table.
2487         (tab_raw) New function.
2488         (nowrap_dim) New function.
2489         (wrap_dim) New function.
2490         (tab_output_text) Fix table dimensioning.
2491
2492         * tab.h: (tab_raw) New macro.
2493
2494         * val-labs.c: (get_label) Remove unused var type.
2495         (copy_value_labels) Remove unused var trav.
2496
2497         * var.h: (struct crosstab_proc) Completely changed.
2498
2499         * vars-prs.c: (parse_dict_variable) Remove unused var v.
2500
2501         * vfm.c: (open_active_file) Remove unused vars i, lp.
2502
2503         * weight.c: (weight_trns_proc) #if 0 out as dead code.
2504         
2505 Tue Jun  2 23:37:21 1998  Ben Pfaff  <blp@gnu.org>
2506
2507         * Makefile.am: Add apply-dict.c, flip.c.
2508
2509         * apply-dict.c: New file.
2510         
2511         * command.c: (struct command) Make cmd[] larger for CLEAR
2512         TRANSFORMATIONS command name.
2513         (parse_cmd) Make sure we're in a valid state before using it as an
2514         index.  Discard variables and reset state on invalid transitions.
2515         (cmd_clear_transformations) New function.
2516
2517         * command.def: Add APPLY DICTIONARY, CLEAR TRANSFORMATIONS, FLIP.
2518         Add unimplemented PRESERVE, RESTORE.
2519
2520         * file-handle.h: Include stddef.h.
2521
2522         * flip.c: New file.
2523         
2524         * pfm-read.c: (parse_value) Pad value label values with spaces,
2525         not nulls.
2526
2527         * sfm-read.c: (struct sfm_fhuser_ext) Add reference count.
2528         (sfm_close) Decrement reference count, make sure it's zero.
2529         (sfm_maybe_close) New function.
2530         (sfm_read_dictionary) Handle reference counts.
2531
2532         * vars-atr.c: (clear_default_dict) New function.
2533         (discard_variables) Use clear_default_dict().
2534
2535 Sun May 31 00:58:05 1998  Ben Pfaff  <blp@gnu.org>
2536
2537         * Makefile.am: Add pfm-write.c.
2538         (LDADD) Add the libgmp2 libraries.
2539
2540         * command.def: Define EXPORT.
2541
2542         * get.c: (cmd_export) New function.
2543         (export_write_case_func) New function.
2544
2545         * pfm-read.c: (static spss2ascii[]) Make it const.
2546
2547         * pfm-write.c: New file.
2548
2549         * sfm-write.c: Formatting, comment fixes.
2550
2551         * var.h: Comment fix.
2552
2553 Fri May 29 21:44:12 1998  Ben Pfaff  <blp@gnu.org>
2554
2555         * Makefile.am: Add pfm.h, pfm-read.c.
2556
2557         * command.def: IMPORT is now implemented.
2558
2559         * format.c: (glob var translate_fmt[]) New var.
2560
2561         * get.c: (enum GTSV_NONE) Renamed GTSV_OPT_NONE.
2562         (cmd_import) New function.
2563         (import_source_read) New function.
2564         (glob var import_source) New var.
2565
2566         * pfm-read.c: New file.
2567
2568         * pfm.h: New file.
2569         
2570         * sfm-read.c: (parse_format_spec) Local variable translate_fmt[]
2571         moved in format.c.
2572         (dump_dictionary) Disabled printing a couple of items.
2573
2574 Mon May 25 12:42:37 1998  Ben Pfaff  <blp@gnu.org>
2575
2576         * crosstabs.q: (postcalc) Call make_summary_table().
2577         (make_summary_table) New function.
2578         (insert_summary) New function.
2579         (display_dimensions) Remove some unnecessary arguments, all
2580         references changed.
2581         (output_pivot_table) Fix lots of problems with the risk table
2582         setup.
2583         (submit) Don't display an empty table.
2584         (display_risk) Fix order of arguments to calc_risk().
2585
2586         * glob.c: Always include assert.h and stdlib.h.
2587
2588         * output.h: (enum OUTP_T_JUST_FULL) Removed, all references
2589         removed.
2590
2591         * tab.c: (tab_create) Cosmetic changes.
2592
2593         * tab.h: (enum TAB_JUSTIFY) Removed, all references removed.
2594
2595 Sun May 24 22:39:23 1998  Ben Pfaff  <blp@gnu.org>
2596
2597         * tab.def: Removed.
2598
2599         * crosstabs.q: (output_pivot_table) Headers drawing and submission
2600         code simplified, moved into new function submit().
2601         (submit) New function.
2602         (crosstabs_dim) New function.
2603         (display_directional) Substitute variable names for %s where
2604         appropriate.
2605         (somers_d_v[], somers_d_ase[], somers_d_t[]) New static vars.
2606         (calc_symmetric) Initialize parameters only if non-NULL.
2607         Calculate Somers' d.
2608         (calc_directional) Calculate Somers' d (or copy it, really).
2609         Calculate eta.
2610
2611         * output.c: (outp_string_width) New function.
2612
2613         * postscript.c: (postopen) Calculate font widths based on the
2614         width of the zero '0' character, not the width of the space
2615         character.  Set paper-width and paper-length based on points, not
2616         device units.
2617         (ps_open_page) Fix page setup string for landscape mode.
2618
2619         * som.h: (struct som_dimension) Removed.
2620         (struct som_table_class) height, width members take int * not
2621         som_dimesion * now.
2622
2623         * tab.c: Many functions now have added parameter validation.
2624         (tab_height, tab_width) These functions were removed and merged
2625         into a single function tab_resize(), and all references changed.
2626         (tab_dim) Rewritten since the interface changed; reduced from
2627         hundreds of lines to two.  All callers were changed.  Currently
2628         most of them just use tab_natural_dimensions as their callback and
2629         await detailed translation of functionality.
2630         (tab_natural_width) New function.
2631         (tab_natural_height) New function.
2632         (tab_natural_dimensions) New function.  This is a callback
2633         function, not something that you'd want to call directly.
2634         (tab_nat_dim) Removed.
2635         (tabi_table) Allocates t->w and t->h.
2636         (tabi_driver) Inlined sum_columns()'s functionality.  Calls the
2637         dimensions callback.
2638         (evaluate_dimensions) Removed.
2639         (sum_columns) Removed.
2640
2641         * tab.h: (enum TAL_1THIN) Removed.
2642         (enum series t_*) Removed.
2643         (struct tab_table) Members trh, trv changed to unsigned char *
2644         from int *.  Member dim changed to a function pointer from a
2645         unsigned char *.  Member max_stack_height removed.  New members
2646         hr_tot, vr_tot.
2647         (macros tab_l, tab_r, tab_t, tab_b) New.
2648
2649 Sat May 23 23:22:13 1998  Ben Pfaff  <blp@gnu.org>
2650
2651         * ascii.c: (delineate) Assign last_space_nchars before skipping
2652         spaces, to fix right justification.
2653
2654         * crosstabs.q: (static vars risk, direct) New vars.
2655         (static var pearson_r) Removed.
2656         (glob var chisq_fisher) Made static.
2657         (static vars row_tot[], col_tot[]) Don't include grand total
2658         anymore.
2659         (static var grand_total) Renamed W, all references changed.
2660         (output_pivot_table) Only make `table' if num_cells != 0.  Make
2661         risk and directional tables.  Deal with grand total no longer part
2662         of col_tot[].  Free rows and cols after we're done with them.
2663         (display_risk) New function.
2664         (display_directional) New function.
2665         (clac_r) Rewritten so that it stores all its results into its
2666         arguments, so it can be used for Spearman's correlation too.
2667         (calc_symmetric) Added a t[] argument, all references changed.
2668         Calculates ASEs for tau-b, tau-c, gamma.  Calculates Spearman's r,
2669         Pearson's r, Cohen's kappa.
2670         (calc_risk) New function.
2671         (calc_directional) New function.
2672
2673         * som.c: (som_submit) Improved debugging code.
2674
2675         * stats.c: (hypercube) New function.
2676         (cube) New function.
2677         (sqr) New function.
2678         (normal_sig) Went back to old implementation, which actually
2679         worked.
2680
2681         * stats.h: (macros square, cube, hypercube) Removed.  The
2682         equivalent functions in stats.c are inlined here; all references
2683         to square changed to sqr.
2684
2685 Fri May 22 00:03:41 1998  Ben Pfaff  <blp@gnu.org>
2686
2687         * crosstabs.q: (N_SYMMETRIC) New define.
2688         (postcalc) Disable debug printing.
2689         (static vars chisq_fisher, pearson_r) New.
2690         (output_pivot_table) Add support for symmetric measures.  Add
2691         chi-square output of exact sigs.
2692         (display_chisq) Rewritten.
2693         (display_symmetric) New function.
2694         (gamma_int) New function.
2695         (Pr) New function.
2696         (swap) New function.
2697         (calc_fisher) New function.
2698         (calc_chisq) Check boundary conditions better. Calculate Yates,
2699         Fisher, Mantel-Haenszel tests.
2700         (calc_r) New function.
2701         (calc_symmetric) New function.
2702
2703         * stats.c: (normal_sig) Rewritten with new algorithm.  Renamed
2704         from calc_normal.
2705         (chisq_sig) Better boundary conditions.  Renamed from
2706         calc_significance.
2707
2708         * tab.h: (struct tab_table) New member cf.
2709
2710         * tab.c: (tab_create) Set cf.
2711         (tab_width) New function.
2712         (tab_realloc) Handle cf.
2713         (tab_vline) Handle cf.
2714         (tab_hline) Handle cf.
2715         (tab_box) Handle cf.
2716         (tab_value) Handle cf.
2717         (tab_float) Handle cf.
2718         (tab_text) Handle cf.
2719         (tab_joint_text) Handle cf.
2720         (tab_offset) Handle cf.
2721         (tab_next_row) Handle cf.
2722         (evaluate_dimensions) Handle cf.
2723         (render_strip) Handle cf.
2724
2725 Wed May 20 00:03:59 1998  Ben Pfaff  <blp@gnu.org>
2726
2727         * crosstabs.q: (postcalc) New vars row_tot, col_tot, pass them to
2728         output_pivot_table().
2729         (output_pivot_table) Moved lots of local variables outside and
2730         made them static.  Add beginnings of chi-square statistic
2731         support.  Now column and row totals aren't in the main matrix.
2732         Always zero out any leftover rows & columns after we're done with
2733         the table entries.  Move all output stuff into
2734         display_dimensions(), display_crosstabs(), display_chisq().
2735         (display_dimensions) New function.
2736         (display_crosstabulation) New function.
2737         (display_chisq) New function.
2738         (calc_chisq) Implemented Pearson and likelihood-ratio chisquares.
2739
2740         * frequencies.q: (dump_full, dump_condensed) Remove tab_null()
2741         references, simplify logic.
2742
2743         * postscript.c: Remove scale, translate-x, translate-y,
2744         mirror-horz, mirror-vert, rotate-180 options.
2745         (struct ps_driver_ext) Remove scale, translate_x, translate_y.
2746         All references deleted.
2747         (macro YT) New macro.
2748         (array option_tab[]) Removed options.
2749         (ps_option) Removed options.
2750         (ps_open_page) Write page setup explicitly to output file, without
2751         using now-deleted BP function.
2752         (macro dump_line) Use YT().
2753         (macro dump_thick_line) Use YT().
2754         (draw_headers) Use YT().
2755         (switch_font) Reorder arguments to SF function.
2756         (write_text) Use YT().
2757
2758         * sfm-read.c: (sfm_read_case) Don't attempt to read variables that
2759         have get.fv == -1.
2760
2761         * sysfile-info.c: (describe_variables) Don't use tab_nulls().
2762
2763         * tab.c: (tab_create) Initialize t->ct to zeros.  Remove
2764         null-debugging code.
2765         (tab_realloc) Remove null-debugging code.  Initialize new regions
2766         of t->ct to zeros.
2767         (tab_vline) Support offsets.
2768         (tab_hline) Support offsets.
2769         (tab_box) Support offsets.
2770         (tab_null) Removed.
2771         (tab_nulls) Removed.
2772         (tab_row) Removed.
2773         (tab_col) Removed.
2774         (evaluate_dimensions) Remove null-debugging code.  Understand
2775         TAB_EMPTY attribute.  Assert that text.s.s is always non-NULL if
2776         TAB_EMPTY not present.
2777
2778         * tab.h: New cell attribute TAB_EMPTY.
2779         (macros tab_nr, tab_nc, tab_row, tab_col) New.
2780
2781         * vars-atr.c: (init_variable) Set get.fv to -1 so that GET doesn't
2782         try to read them from system files.
2783
2784         * vfm.c: (dump_splits) Don't call tab_null().   
2785
2786 Sat May 16 19:36:55 1998  Ben Pfaff  <blp@gnu.org>
2787
2788         * crosstabs.q: (struct crosstab) Added `missing' member.
2789         (custom_tables) Init missing.
2790         (calc_general) Handle missing values.
2791         (calc_chisq) New function.
2792         (output_pivot_table) Start work on chi-square output.  Update for
2793         new tab offset support functions.  Shorten statistic names.
2794
2795         * Several files: add in more `const's to placate gcc's warnings.
2796
2797         * tab.h: (struct tab_table) Add col_ofs, row_ofs members.  Comment
2798         fixes.
2799
2800         * tab.c: (tab_height, tab_realloc, tab_vline, tab_hline, tab_box,
2801         tab_null, tab_nulls, tab_value, tab_float, tab_text,
2802         tab_joint_text) Add col_ofs and row_ofs support.
2803         (tab_offset) New function.
2804         (tab_next_row) New function.
2805         (tab_row) New function.
2806         (tab_col) New function.
2807         (tabi_table) Add col_ofs and row_ofs support.
2808
2809         * vars-atr.c: (is_system_missing) New function.
2810
2811 Tue May 12 16:14:30 1998  Ben Pfaff  <blp@gnu.org>
2812
2813         * crosstabs.q: Expanded subcommand names RESID --> RESIDUAL, etc.
2814         (static var no_cells) Removed.
2815         (static var num_cells) New.
2816         (static var expected) New.
2817         (static var cells[]) New.
2818         (internal_cmd_crosstabs) Deal with new variables.
2819         (postcalc) Removed most of the meat and put it in new function
2820         output_pivot_table().
2821         (output_pivot_table) Calculates and outputs an entire pivot table.
2822
2823         * postscript.c: (postopen) Fix problems with free()ing addresses
2824         not obtained from malloc().
2825
2826         * som.c: (som_submit) Add assertion.
2827
2828         * sysfile-info.c: (describe_variable) Use new tab_nulls()
2829         function.
2830
2831         * tab.c: (static var tab_names[]) New.
2832         (tab_realloc) -1 for nc or nr indicates no change.
2833         (tab_nulls) New function.
2834         (tab_dim) Use tab_names[].
2835         (tabi_cumulate) Don't include bottom or right headers.  Furrfu.
2836         (evaluate_dimensions) Don't terminate on uninited cells, just put
2837         an X in them and emit a notice.  Use tab_names[].
2838
2839         * tab.h: Move bits into tab.def.
2840
2841         * tab.def: New.  Don't try to declare tab_table_class because then
2842         som.h has to be included.       
2843         
2844 Thu May  7 22:55:04 1998  Ben Pfaff  <blp@gnu.org>
2845
2846         * command.def: New file, contains all the command definitions
2847         previously included bodily in command.c.
2848
2849         * format.def: New file, contains all of the format definitions
2850         previously split across format.h, format.c, and sfm-write.c.
2851
2852         * lexer.h: Renamed from tokens.h in order to match corresponding
2853         .c file name.
2854
2855         * lexerP.h: Moved some rarely used functions exported by lexer.c
2856         into here.
2857
2858         * Makefile.am: Commemorate renamed files.
2859         (EXTRA_DIST) Add command.def, format.def.
2860
2861         * command.c: [0] (walk_cmdtable_func) Removed.
2862
2863         * crosstabs.q: (postcalc) Made it work and print out matrices
2864         proving it.
2865         (enum_column_values) Renamed enum_var_values, generalized for any
2866         variable.
2867
2868         * format.h: (struct fmt_desc) New member `spss'.
2869
2870         * q2c.c: (main) Generated code includes lexer.h instead of
2871         tokens.h.
2872
2873         * sfm-write.c: (write_format_spec) Use new spss member of fmt_spec
2874         instead of an independent translation table.
2875
2876 Tue May  5 13:19:03 1998  Ben Pfaff  <blp@gnu.org>
2877
2878         * Lots of source files: Added const to declarations.
2879
2880         * aggregate.c: (parse_aggregate_function) Rename inner i to j.
2881         
2882         * arena.c: (arena_clear) Set prev pointer to null when done.
2883
2884         * ascii.c: (ascii_option) Rename index as indx.
2885
2886         * avl.c: This is now a separate library called libavl.
2887         (xmalloc) Make static.
2888         (avl_probe) Step A7 can use the cache instead of an explicit
2889         compare.
2890         (avl_delete) Don't maintain a q pointer because it's always
2891         available in the pointer stack.  Comment fix.
2892
2893         * avl.h: This is now a separate library called libavl.
2894
2895         * command.c: (cmd_table[]) Remove spurious trailing "".
2896
2897         * common.h: Only include random() fix if this system needs it.
2898
2899         * crosstabs.q: Include alloca headers.
2900         (n_sorted_tab) New global var.
2901         (postcalc) Mostly rewritten.
2902         (find_pivot_extent) Rewritten.
2903         (enum_column_values) Rewritten.
2904
2905         * data-out.c: (convert_F) Rename inner n as n_spaces.
2906
2907         * error.c: (dump_message) Don't have an outer var i.
2908
2909         * file-handle.q: (static var f) Removed.  All references removed.
2910         (internal_cmd_file_handle) Uses a local variable instead of f.
2911
2912         * get.c: (trim_dictionary) Change scope of i, i1, i2.
2913         (cmd_match_files) Don't strcpy tokstr into sbc (why was this ever
2914         done?)
2915
2916         * getline.h: Declare getl_history as extern.  Reported by
2917         palme@uni-wuppertal.de (Hubert Palme).
2918
2919         * postscript.c: (postopen) Some large mods for constness.
2920
2921         * recode.c: Remove spurious copyrights since PSPP is owned by FSF
2922         anyway.
2923
2924 Fri Apr 24 12:52:47 1998  Ben Pfaff  <blp@gnu.org>
2925
2926         * Makefile.am: Rename BUILT_SOURCES to q_sources, all references
2927         changed.  Add avl.c, avl.h to pspp_SOURCES.  Remove avllib from
2928         LDADD.
2929
2930         * avl.c, avl.h: New files.  These form a clean-room
2931         reimplementation of avllib.  Iterative algorithms are used in
2932         place of recursive ones, so there is no resemblance in the code.
2933
2934         * Lots of headers: Don't include other headers by default.
2935
2936         * Lots of source files: Explicitly include all needed headers.
2937
2938         * arena.c: (arena_clear) New function.
2939
2940         * crosstabs.q: (ROW_VAR, COL_VAR) New enums.
2941         (static var ar) Removed.
2942         (staitc vars ar_tc, ar_col) New.
2943         (cmd_crosstabs) Destroy the arenas.
2944         (internal_cmd_crosstabs) Create the arenas.
2945         (precalc) Don't need a free function for the hash.
2946         (calc_general) Make sure to zero out the trailer on the key data
2947         before inserting.
2948         (print_table_entries) Updated.
2949         (postcalc) Worked on actually implementing.
2950         (find_pivot_extent) New function.
2951         (compare_value) New function.
2952         (enum_column_values) New function.
2953
2954         * data-in.c: (parse_month) Make local array `static const'.
2955         
2956         * data-out.c: (convert_date) Make local array `static const'.
2957         (convert_WKDAY) Same.
2958         (convert_MONTH) Same.
2959
2960         * frequencies.q: (postprocess_freq_tab) avl_walk_inorder() has
2961         been renamed to avl_walk().
2962         
2963         * hash.c: Rewritten more efficiently.
2964
2965         * hash.h: Add attribute const to hsh_next_prime declaration.
2966
2967         * lexer.c: (id_match) Make arguments const.
2968
2969         * postscript.c: (ps_postopen_driver) Make default fonts the
2970         Helvetica family.
2971
2972         * q2c.c: (main) Generated code needs stdlib.h.
2973
2974         * sfm-write.c: (write_value_labels) An avl_traverser needs to be
2975         initialized to 0 now, not to NULL.  All other references to
2976         avl_traverser were updated in the same way.
2977
2978         * tokens.h: Macro version of id_match updated to use const
2979         properly.
2980
2981         * val-labs.c: (inc_ref_count) New function.
2982         (copy_value_labels) Simply through use of new avl_copy() function.
2983
2984 Wed Apr 15 13:01:58 1998  Ben Pfaff  <blp@gnu.org>
2985
2986         * crosstabs.q: Probably doesn't compile.  New PIVOT subcommand.
2987         (postcalc) Worked on this.
2988
2989         * postscript.c: (OPO_DOUBLE_LINE) New enum.
2990         (struct ps_driver_ext) New line_width_thick member.
2991         (ps_preopen_drive) Init line_width_thick.
2992         (option_tab[]) Add line-* options.
2993         (ps_option) Parse line-* options.
2994         (postopen) Add line_width_thick support.  Strip leading spaces on
2995         prologue output lines.
2996         (ps_open_page) Include line_width_thick in output.
2997         (macro dump_thick_line) New.
2998         (dump_fancy_line) Support thick lines as well as double lines.
2999
3000 Tue Apr 14 00:50:08 1998  Ben Pfaff  <blp@gnu.org>
3001
3002         * Makefile.am: Add crosstabs.c to BUILT_SOURCES.  Add crosstabs.q
3003         to pspp_SOURCES.  Add crosstabs.q to EXTRA_DIST.
3004
3005         * Many source files: Rename `options' to `pv_opts' as appropriate.
3006
3007         * command.c: (static var cmd_table[]) Add CROSSTABS command.
3008
3009         * common.c: (xcalloc) New function.
3010
3011         * crosstabs.q: New file.  Not finished yet, though.
3012                 
3013         * data-list.c: Comment fix.
3014
3015         * error.c: Remove some old Checker cruft.
3016
3017         * frequencies.q: (dump_full) Cumulate valid percent instead of
3018         regular percent.
3019
3020         * getline.c: Comment fix.
3021
3022         * hash.c: Comment fixes.
3023
3024         * hash.h: (struct hsh_table) Make hash functions return unsigned
3025         instead of int to avoid problems with taking the modulo of
3026         negative return values.  All references changed.
3027
3028         * misc.c: (intlog10) Make its table static const instead of auto.
3029
3030         * sfm-read.c: (read_header) Make `prefix' static const instead of
3031         auto.
3032
3033         * var.h: (union value) Add member `hash'.
3034         (struct variable) Rename prv_index as `foo'--all references
3035         changed.  Reorder.
3036         (typedef pv_opts) Removed.  All references changed.
3037
3038         * vars-prs.c: (parse_variables) Message fixes.
3039         
3040 Mon Mar  9 15:35:08 1998  Ben Pfaff  <blp@gnu.org>
3041
3042         * get.c: (cmd_match_files) Don't reverse the order of FILEs as
3043         they are being inserted.  Don't check for BY variables of
3044         different types.  Discard variables if the active file isn't
3045         included in the merge.
3046         (mtf_processing) Essentially rewritten.
3047         (mtf_merge_dictionary) Check for master/slave variables of
3048         different types/widths.
3049
3050         * vfm.c: (static var not_canceled) New var.
3051         (process_active_file) Don't call vfm_source->read() if
3052         there's no vfm-source.  Initialize not_canceled.
3053         (process_active_file_write_case) Honor and update not_canceled.
3054         (prepare_for_writing) Rollback changes from yesterday, they were
3055         wrong.
3056         (close_active_file) Don't destroy vfm_source unless it exists.
3057         
3058 Mon Mar  9 00:56:16 1998  Ben Pfaff  <blp@gnu.org>
3059
3060         * Lots of source files: Added { } around nested if/else constructs
3061         to avoid new gcc 2.8 warnings.
3062
3063         * data-in.c: (parse_Z) Declare `int' type explicitly.
3064         (convert_Z) Ditto.
3065
3066         * get.c: (struct mtf_file) Add prev, next_min, by, input members.
3067         (cmd_match_files) Initialize mtf_by_values.  Manage by, input,
3068         prev members.  Put TABLEs at the end of the chain and FILEs at the
3069         beginning.  Don't allow the active file in STATE_INIT.  Use proper
3070         `seen' value for the active file.  Fill out the by members and
3071         make sure they're of consistent type.  Do the actual merge
3072         operation.
3073         (mtf_processing_finish) New function.
3074         (var_type_description) New function.
3075         (mtf_free_file) New function.
3076         (mtf_free) Rewritten.
3077         (mtf_delete_file_in_place) New function.
3078         (mtf_read_nonactive_records) New function.
3079         (mtf_compare_BY_values) New function.
3080         (static var mtf_seq_no) New var.
3081         (mtf_processing) New function.
3082         (mtf_merge_dictionary) Assign nval members for the system file
3083         dictionary.  Assign fv values for its variables.  Point each slave
3084         variable to the corresponding master variable.
3085
3086         * hash.c: Include str.h.
3087
3088         * mis-val.c: (copy_missing_values) src arg is const.
3089
3090         * misc.c: (spacing) Make `max' var explicitly int.
3091
3092         * sfm-read.c: (dump_dictionary) Message reformatting.
3093         (sfm_read_case) Add assertion.
3094
3095         * sort.c: Esthetic fixes.
3096
3097         * var.h: (struct match_files_proc) New struct.
3098         (struct variable) Add private data match_files_proc.
3099
3100         * vars-atr.c: (delete_variable) Implement.  Add argument for the
3101         dictionary that owning the variable.
3102         (dup_variable) Add assertion.
3103
3104         * vfm.c: Comment fixes, hopefully the comments are correct now.
3105         (process_active_file) New function.
3106         (process_active_file_write_case) New function.
3107         (process_active_file_output_case) New function.
3108         (prepare_for_writing) Use temp_dict->nval for vfm_info, not
3109         default_dict.nval.
3110         (write_case) Renamed procedure_write_case().  Now write_case is a
3111         pointer to a function.  Style fixes.
3112         
3113 1998-03-05  Ben Pfaff  <blp@gnu.org>
3114
3115         * Makefile.am: (q2c) Link with libmisc.
3116         (version.c) Define default_config_path, include_path,
3117         groff_font_path.
3118
3119         * ascii.c: (ascii_postopen_driver) When the default newline string
3120         is requested, open file in text mode.  Suggested by
3121         palme@uni-wuppertal.de (Hubert Palme).
3122         (static vars line_buf, line_p) Change from char * to unsigned char
3123         *.
3124         (ascii_close_page) char * to unsigned char *.
3125
3126         * cmdline.c: (parse_command_line) Implement -r option by
3127         prepending ~/.pspp/rc to the list of files to process.
3128
3129         * command.c: (cmd_remark) Reset getl_prompt to the standard prompt
3130         before pulling in a final line.
3131         (null_func, null_int_func) Removed (dead code).
3132
3133         * descript.q: (display) Calculate width of variable name column
3134         properly.  Calculate number of valid cases properly.  Reported by
3135         palme@uni-wuppertal.de (Hubert Palme).
3136
3137         * filename.c: (init_filename) Use default_config_path instead of
3138         now obsolete CONFIG_PATH.
3139
3140         * getline.c: (getl_initialize) Use include_path instead of now
3141         obsolete INCLUDE_PATH.
3142         (getl_add_file) New argument `where'.  All references changed.
3143
3144         * groff.c: (find_font_file) Use groff_font_path instead of now
3145         obsolete GROFF_FONT_PATH.
3146         
3147         * postscript.c: (find_ps_file) Use groff_font_path instead of now
3148         obsolete GROFF_FONT_PATH.  Copy through temporary variable to
3149         avoid problems with constness.
3150
3151         * str.h: (macro cs_streq) New macro.
3152
3153         * version.h: (glob var default_config_path, include_path,
3154         groff_font_path) New vars.
3155         
3156 1998-02-23  Ben Pfaff  <blp@gnu.org>
3157
3158         * Many source files: Change verbose_msg() priority levels and
3159         messages.
3160
3161         * aggregate.c: Include debug-print.h.
3162
3163         * cmdline.c: (parse_command_line) Add --safer/-s and --command/-c
3164         options.
3165         (static var pre_syntax_message) Document --safer/-s and
3166         --command/-c.
3167
3168         * command.c: (cmd_erase, cmd_host) Disable if set_safer is set.
3169
3170         * dfm.c: (open_inline_file) [__CHECKER__] Zero out ext->file,
3171         because it's not used but it's still copied.
3172         (open_file_r) Remove gratuitous debug message.
3173
3174         * filename.c: (safety_violation) New function.
3175         (open_file) Remove gratuitous debug messages.  Don't allow pipe
3176         files if set_safer is set.
3177
3178         * get.c: Turn off debugging.
3179
3180         * getline.c: (getl_add_virtual_file) New function.
3181         (getl_read_line) Add verbose_msg() call for opening new syntax
3182         file.
3183         (getl_perform_delayed_reset) Add a return value describing whether
3184         any action was taken.  Call reset_eof().
3185
3186         * getline.h: Comment fix.
3187
3188         * groff-font.c: (groff_read_font) Use `goto next_iteration' in
3189         place of incorrect `continue'.  Use strtok_r() instead of
3190         strtok().  Always check strtok_r() return value.
3191         (groff_read_DESC) Use strtok_r() instead of strtok().
3192
3193         * lexer.c: (reset_eof) New function.
3194
3195         * main.c: (parse) Get a token after performing a delayed reset
3196         action; allow empty syntax files.
3197
3198         * postscript.c: (output_encodings) Use strtok_r() instead of
3199         strtok().
3200
3201         * q2c.c: (dump_parser) Use strtok_r() instead of strtok().
3202
3203         * set.q: Comment fixes.
3204         (glob var set_safer) New var.
3205         (internal_cmd_set) Support SAFER.
3206
3207         * str.h: [!HAVE_STRTOK_R] Declare strtok_r() prototype.
3208
3209         * temporary.c: (free_dictionary) Set d->splits to NULL after
3210         freeing.
3211
3212         * vars-atr.c: (clear_variable) Decrement dict->n_splits if
3213         variable deleted, not if it *isn't* deleted.
3214
3215 1998-02-16  Ben Pfaff  <blp@gnu.org>
3216
3217         * command.c: (array cmd_table[]) Add MATCH FILES.
3218
3219         * common.c: Comment fixes.
3220
3221         * data-list.c, dfm.c, error.c, filename.c, list.q, matrix-data.c,
3222         modify-vars.c, postscript.c, sfm-read.c, sfm-write.c, tab.c:
3223         Include alloca.h.  Problem reported by palme@uni-wuppertal.de
3224         (Hubert Palme).
3225
3226         * expr-opt.c: Include str.h.  Problem reported by
3227         palme@uni-wuppertal.de (Hubert Palme).
3228
3229         * get.c: (cmd_get) [DEBUGGING] Update v->p.get to v->get.
3230         (static var mtf_by) Change from char ** to variable **.
3231         (static var mtf_master) New var.
3232         (mtf_merge_dictionary) New function.
3233         (cmd_match_files) Init mtf_master.  Parse mtf_by according to new
3234         var type.  Reorder tests properly.  Initialize file->dict.  Detect
3235         TABLE= without BY=.  Read file dictionaries and merge them.  Give
3236         subcommand name with IN, LAST, FIRST error messages.  Create IN,
3237         LAST, FIRST variables.  Comment fixes.
3238         (mtf_free) Don't free default_dict.  Free mtf_master.
3239
3240         * getline.c: Define getl_mode.  Change getl_buf_size to size_t
3241         from int.
3242         (handle_line_buffer) Cast int to size_t in comparison to avoid
3243         warning.
3244
3245         * getline.h: Declare getl_mode extern.
3246
3247         * groff-font.c: (groff_read_font) Type-fix calls to getline.
3248         (groff_read_DESC) Make line_size a size_t.
3249         (match_tok) Parenthesize name to avoid macro expansion.
3250
3251         * mis-val.c: (copy_missing_values) New function.
3252
3253         * postscript.c: (postopen) Make buf_size a size_t.
3254
3255         * sfm-read.c: (dump_dictionary) Make global from static.  Print
3256         variable info in parts for easier debugging with Checker.
3257
3258         * temporary.c: (copy_variable) Use copy_value_labels().
3259         (new_dictionary) New arg: whether to copy file label, documents.
3260
3261         * val-labs.c: (copy_value_labels) New function.
3262
3263         * var.h: (enums MISSING_*) Add MISSING_COUNT.
3264
3265         * vars-atr.c: [GLOBAL_DEBUGGING] (force_dup_variable) New
3266         function.
3267         (dup_variable) Set prv_index, get.fv, get.nv.
3268
3269 Fri Feb 13 15:38:36 1998  Ben Pfaff  <blp@gnu.org>
3270
3271         * Makefile.am: (pspp_SOURCE) Add htmlP.h.
3272
3273         * Many source files: For ANSI-compliance, add empty statement
3274         after label.  Reported by palme@uni-wuppertal.de (Hubert Palme)
3275         and Micah Altman <maltman@www-vdc.fas.harvard.edu>.
3276
3277         * data-in.c: (parse_numeric) Some header files break on
3278         -DBL_MIN_10_EXP because they get a --; add () for safety.
3279         Reported by palme@uni-wuppertal.de (Hubert Palme).
3280
3281         * dfm.c: Idea by Dr Eberhard W Lisse <el@linux.lisse.na>.
3282         (struct dfm_fhuser_ext) Change `file' from FILE * to file_ext.
3283         (dfm_close) Use close_file_ext.
3284         (open_inline_file) Set file.file to NULL, not file.
3285         (open_file_r, open_file_w) Initialize file.file; fill in file_ext
3286         struct and use open_file_ext().
3287         (read_record) Use file.file.
3288
3289         * file-handle.q: (prepend_current_directory) Pass through special
3290         filenames.
3291
3292         * filename.c: Only include unistd.h if HAVE_UNISTD_H.
3293         (normalize_filename) Pass through special filenames.
3294         (open_file, close_file) Accept pipe| and |pipe syntaxes as
3295         equivalent.
3296         (dirname) Rename blp_dirname() because of name conflict on some
3297         OS.  All references changed.  Reported by palme@uni-wuppertal.de
3298         (Hubert Palme).
3299         (is_special_filename) New function.
3300
3301         * get.c: (GTSV_OPT*) Add GTSV_OPT_MATCH_FILES.
3302         (trim_dictionary) Conditionalize some of the options on whether
3303         GTSV_OPT_MATCH_FILES is in *options.
3304         (rename_variables) Don't allow variables to be renamed as scratch
3305         variables.
3306         (MTF_*) New enum series.
3307         (struct mtf_file) New struct.
3308         (static vars mtf_head, mtf_tail, mtf_by, mtf_n_by, mtf_free) New
3309         vars.
3310         (cmd_match_files, mtf_free) New functions.
3311
3312         * lexer.c: (match_int) Needed parentheses around name to escape
3313         macro expansion.  Reported by Micah Altman
3314         <maltman@www-vdc.fas.harvard.edu>.
3315
3316         * print.c: Needed to include alloca.h.  Reported by Micah Altman
3317         <maltman@www-vdc.fas.harvard.edu>.
3318
3319         * recode.c: (convert_to_double) Parenthesize -DBL_MIN_10_EXP to
3320         -(DBL_MIN_10_EXP).  Reported by palme@uni-wuppertal.de (Hubert
3321         Palme).
3322         
3323         * str.h: Include stdarg.h.  Reported by palme@uni-wuppertal.de
3324         (Hubert Palme) and Micah Altman <maltman@www-vdc.fas.harvard.edu>.
3325
3326 Thu Feb  5 00:18:21 1998  Ben Pfaff  <blp@gnu.org>
3327
3328         * html.c: (struct html_driver_ext) Move into htmlP.h.
3329         (html_preopen_driver) Initialize cp_x, cp_y.
3330         (html_submit) Implement as call to output_tab_table().
3331         (change_attributes) New function.
3332         (escape_string) New function.
3333         (output_tab_table) New function.
3334
3335         * list.q: (write_all_headers) Add code for writing headers for the
3336         html driver.
3337         (clean_up) Write out the html close-table tag.
3338         (determine_layout) Ignore html driver.
3339         (list_cases) Write html data.
3340
3341         * som.c: (som_submit) Move more of the code into output_table().
3342
3343         * tab.c: (static var hit) Make a global var and rename tab_hit.
3344         (static var tab_table_class) Make a global var.
3345
3346         * htmlP.h: New file.
3347
3348 Tue Feb  3 16:12:18 1998  Ben Pfaff  <blp@gnu.org>
3349
3350         * dump-sysfile.c: Removed.
3351
3352         * html.c: (preclose) Change comment in emitted code.
3353
3354         * matrix-data.c: Debugging off by default.  Comment fixes.
3355         (static var container) New var.
3356         (cmd_matrix_data) Create and destroy container.  Initialize
3357         is_per_factor[] to 0s.  Move code into new function
3358         string_to_content_type().  Require split values to be present in
3359         the data when ROWTYPE_ is explicit.  Call specific function, not
3360         general read_matrices().
3361         (string_to_content_type) New function.
3362         (context) Exclude all whitespace, not just spaces.
3363         (mget_token) A dot is a number.  Add assertion.
3364         (static var data) Renamed nr_data.
3365         (static var factor_values) Renamed nr_factor_values.
3366         (read_matrices) Renamed read_matrices_without_rowtype().  Handle
3367         only specific case.  Close data_file before exit.
3368         (fill_matrix) New function.
3369         (read_data_lines) Renamed nr_read_data_lines().  Remove debug
3370         printing.  Style fixes.  Message fixes.  Move code into
3371         fill_matrix().
3372         (read_matrices_without_rowtype) Rename
3373         matrix_data_read_without_rowtype().  Fix off-by-one error on
3374         loops.  Allocate nr_data[] memory from arena.
3375         (read_matrices_with_rowtype) Removed.
3376         (read_splits) Renamed nr_read_splits().  Style fixes.
3377         (read_factors) Renamed nr_read_factors().
3378         (dump_cell_content) Comment fixes.  Arguments changed.  Change
3379         debug printing.  All references changed.
3380         (output_data) Renamed nr_output_data().
3381         (static var wr_content) New var.
3382         (struct factor_data) New struct.
3383         (static var wr_data) New var.
3384         (static var wr_current) New var.
3385         (matrix_data_source_destroy_source) Removed.
3386         (read_matrices_with_rowtype) New function.
3387         (matrix_data_read_with_rowtype) New function.
3388         (wr_read_splits) New function.
3389         (compare_factors) New function.
3390         (wr_output_data) New function.
3391         (wr_read_rowtype) New function.
3392         (wr_read_factors) New function.
3393         (wr_read_indeps) New function.
3394         (glob var matrix_data_source) Make destroy_source member NULL as
3395         well.
3396
3397 Fri Jan 23 00:09:08 1998  Ben Pfaff  <blp@gnu.org>
3398
3399         * lexer.c: (syntax_error) Give better error message when at end of
3400         file.
3401
3402         * matrix-data.c: (var content_names[]) Fix PROX spelling.  Change
3403         N_SCALAR to output as plain N.
3404         (mdump_token) Change output format.
3405         (context) Fix message output interaction with spaces in input.
3406         (another_token) New function.
3407         (force_eol) Improved error message.
3408         (static var max_cell_index) New var.
3409         (read_matrices) Init `cells'.  factor_values is now per-cell.
3410         Init max_cell_index.
3411         (read_data_lines) Replace `compare' local with new `compare' arg.
3412         Debugging messages changed.  Only read factors if per_factor.
3413         Propagate error return from read_factors(), force_eol().
3414         Copy N_SCALAR values across the N vector.
3415         (read_matrices_without_rowtype) Don't init `cells'.  Don't need to
3416         check parentheses manually since we now have is_per_factor[].
3417         Call read_data_lines() with new args.  Check for end of data after
3418         looping, using another_token().
3419         (read_factors) Arguments changed.  Use max_cell_index to determine
3420         whether to read or compare factors.  Message fixes.
3421         (dump_cell_content) New function.
3422         (output_data) Completely rewritten because content types were
3423         supported to be nested inside factor values, not vice versa.
3424         
3425 Thu Jan 22 00:26:38 1998  Ben Pfaff  <blp@gnu.org>
3426
3427         * lexer.c: (syntax_error) Support formatted varargs messages.
3428
3429         * matrix-data.c: Turn debugging on by default.
3430         (static content_type[]) New array.
3431         (static content_names[]) New array.
3432         (static rowtype_, varname_) New vars.
3433         (static is_per_factor[]) New array.
3434         (static split_values) Moved declaration.
3435         (static n_continuous, first_continuous) New var.
3436         (cmd_matrix_data) Don't init split_values.  Assign ROWTYPE_ to
3437         rowtype_.  Simplify SPLIT code.  Init is_per_factor[].  Assign
3438         VARNAME_ to varname_.  Initialize first_continuous, n_continuous.
3439         Check for continuous variables.
3440         [DEBUGGING] (debug_print) Remove content_names[].
3441         (mdump_token) New macro.
3442         (mget_token_dump) New function.
3443         (mdump_token) New function.
3444         (context) New function.
3445         (mget_token) Fix messages.
3446         (static var data, split_values, factor_values) New vars.
3447         (read_matrices) Manage split_values, factor_values.
3448         (read_data_lines) New function.
3449         (read_matrices_without_rowtype) Implemented.
3450         (read_splits) Message fixes.  Uses `just_read'.
3451         (read_factors) New function.
3452         (output_data) New function.
3453         (matrix_data_source_destroy_source) Close the file handle.
3454         (glob var matrix_source) Change name from "DATA LIST" to "MATRIX
3455         DATA".
3456
3457         * str.c: (strpadcmp) Removed.
3458
3459         * vfm.c: (dump_splits) Initialize i; fix test for end of splits.
3460
3461 Sun Jan 18 00:30:59 1998  Ben Pfaff  <blp@gnu.org>
3462
3463         * Lots of source files: Add cast to unsigned character to calls to
3464         tolower() and toupper().
3465
3466         * aggregate.c: Set default_dict.splits to NULL.
3467
3468         * command.c: (static variable tab[]) Add MATRIX DATA.
3469
3470         * data-in.c: Add debugging defines.  Formatting fixes.
3471
3472         * expr-opt.c: Formatting fixes.
3473
3474         * lexer.c: (syntax_error) Message fixes.
3475
3476         * matrix-data.c: New enum series.
3477         (static vars fmt, section, diag, explicit_rowtype, signle_split,
3478         split_values, n_factors, factors, cells, pop_n, contents,
3479         n_contents) New vars.
3480         (cmd_matrix_data) Finished implementation.
3481         (compare_variables_by_mxd_vartype) New function.
3482         [DEBUGGING] (debug_print) New function.
3483         (static vars mtoken, mtokstr, mtoklen, mtokval) New vars.
3484         (read_matrices) New function.
3485         (read_matrices_without_rowtype) New function.
3486         (read_matrices_with_rowtype) New function.
3487         (read_splits) New function.
3488         (mget_token) New function.
3489         (force_eol) New function.
3490         [0] (test_tokenizer) New function.
3491         (matrix_data_source_destroy_source) New function.
3492         (glob var matrix_data_source) New var.
3493
3494         * misc.h: Include ieeefp.h if present.
3495
3496         * split-file.h: (cmd_split_file) Changes corresponding to struct
3497         dictionary changes.
3498
3499         * str.h: Fix memmem prototype.
3500
3501         * temporary.c: (save_dictionary, restore_dictionary,
3502         free_dictionary) Changes corresponding to struct dictionary
3503         changes.
3504
3505         * var.h: (MXD_* enums) New enum series.
3506         (struct matrix_data_proc) New struct.
3507         (struct split) Removed.
3508         (struct dictionary) Changed `splits' member from `split *' to
3509         `variable **'.
3510         (macro force_create_variable) New macro.  Replaced lots of
3511         create_variable()/assert() calls with calls to this macro.
3512
3513         * vars-atr.c: (discard_variables) Changed assertion.
3514         [GLOBAL_DEBUGGING] (force_create_variable) New function
3515         called by the macro of the same name.
3516         (clear_variable) Changes to delete splits from the dictionary
3517         corresponding to struct dictionary changes.
3518
3519         * vars-prs.c: (parse_variables) [GLOBAL_DEBUGGING] Check for
3520         corrupted variable `index' values in the dictionary passed in
3521         every time this function is called.
3522
3523         * vfm.c: (dump_splits, SPLIT_FILE_procfunc) Changes corresponding
3524         to struct dictionary changes.
3525
3526 Tue Jan 13 23:45:02 1998  Ben Pfaff  <blp@gnu.org>
3527
3528         * Makefile.am: (pspp_SOURCES) Add matrix-data.c.
3529
3530         * command.c: New includes.
3531         (static array cmd_table[]) Add ERASE, HOST, NEW FILE.
3532         (cmd_erase) New function.
3533         [unix] (shell) New function.
3534         (run_command) New function.
3535         (cmd_host) New function.
3536         (cmd_new_file) New function.
3537
3538         * expr-prs.c: (parse_primary) Message fix.
3539
3540         * inpt-pgm.c: Formatting fix.
3541         (cmd_reread) Implement the FILE subcommand.
3542
3543         * matrix-data.c: New file.
3544
3545         * q2c.c: (dump_header) Change output commenting style.
3546
3547         * weight.c: Comment fix.
3548
3549 Tue Jan 13 00:53:39 1998  Ben Pfaff  <blp@gnu.org>
3550
3551         * aggregate.c: (buf64_10x) Renamed buf64_1xx, all references
3552         changed.
3553         (buf_10x) Renamed buf_1xx, all references changed.
3554         (cmd_aggregate) Implemented cases 010, 011, 110, and 111 (all
3555         cases now implemented).
3556         (create_sysfile) New function.
3557         (agr_11x_func) New function.
3558
3559         * data-in.c: (parse_numeric) Work properly if there's an
3560         explicitly coded decimal point in the data and decimal places are
3561         specified on DATA LIST.  Bug reported by Dr Eberhard W Lisse
3562         <el@linux.lisse.na>.
3563
3564         * get.c: (cmd_get, cmd_save_internal) Allow extraneous slash
3565         before file specification on GET, SAVE, XSAVE.  Bug reported by Dr
3566         Eberhard W Lisse <el@linux.lisse.na>.
3567
3568         * q2c.c: [!HAVE_STRERROR] Include misc/strerror.c, not
3569         strerror.c.  Bug reported by Alexandre Oliva
3570         <oliva@dcc.unicamp.br>.
3571
3572         * sort.c: Include sort.h.  Comment fixes.  A few esthetic fixes.
3573         (static var separate_case_tab) New var.
3574         (cmd_sort_cases) Cancel temporary transformations here.  Free
3575         v_sort before return.
3576         (sort_cases) Run an EXECUTE procedure if SEPARATE is nonzero and
3577         we're reading from a sort stream.  Don't cancel temporary
3578         transformations.  Offload internal sorting to do_internal_sort().
3579         (do_internal_sort) New function.  Handles internal sorting even
3580         when SEPARATE is nonzero.  Doesn't free v_sort.
3581         (do_external_sort) Take new arg SEPARATE.  Only destroy `x' if
3582         it's non-NULL.
3583         (write_initial_runs) Take new arg SEPARATE.  Only destroy the old
3584         sink if SEPARATE is zero.
3585         (read_output_cases) Renamed read_sort_output(), all references
3586         changed.  Now uses separate_case_tab when it exists.
3587         (write_separate) New function.
3588
3589         * vfm.c: (page_to_disk) Destroy memory_source_cases, not
3590         memory_sink_cases.  Don't redundantly call
3591         vfm_source->destroy_source().
3592         (memory_stream_mode) After switching over, set memory_sink_cases
3593         to NULL.
3594
3595 Sat Jan 10 23:35:51 1998  Ben Pfaff  <blp@gnu.org>
3596
3597         * aggregate.c: (struct agr_var) Expand dbl[] array from 2 to 3
3598         elements.
3599         (static var prev_case) New, moved out of aggregate_single_case()
3600         local scope.
3601         (static var buf64_10x, buf_10x) New.
3602         (cmd_aggregate) Initialize prev_case.  Comment fixes.  Implement
3603         the 000, 001, 100, and 101 cases.  Free prev_case.
3604         (parse_aggregate_functions) Disallow scratch variables.
3605         (free_aggregate_functions) Only free agr_dict if non-null.  Use
3606         iter->function to determine numeric/string type, not
3607         iter->src->type.
3608         (aggregate_single_case) Don't manage prev_case.  Initialize
3609         aggregate info after dumping it.
3610         (accumulate_aggregate_info) Fix sum, weighted sum, mean, weighted
3611         mean, stddev, weighted stddev definitions.
3612         (dump_aggregate_info) Implemented.
3613         (initialize_aggregate_info) Renamed from
3614         initialize_aggregate_functions().  Initializes dbl[2].
3615         (agr_00x_trns_proc, agr_00x_end_func, write_case_to_sfm,
3616         agr_10x_trns_proc, agr_10x_trns_free, agr_10x_end_func) New.
3617
3618         * cases.c: (alloc_val) Removed.
3619
3620         * get.c: (cmd_save_internal) Initialize new `dict' member.
3621
3622         * sfm-write.c: (sfm_write_dictionary, write_header,
3623         write_variable, write_value_labels, write_documents) Reorganize,
3624         simplify for new parameter structure.
3625         (write_variable) Only one variable * argument now.
3626
3627         * sfm.h: (struct sfm_write_info) Removed `pri', `sec', and
3628         replaced by new `dict' member.
3629
3630         * temporary.c: (new_dictionary) Initialize n_documents.
3631
3632         * vars-atr.c: (dup_variable) Allocate `value's from dict into
3633         v->fv manually.
3634         (init_variable, replace_variable) Eliminate usage of alloc_val().
3635
3636         * vars-prs.c: (parse_DATA_LIST_vars) Accept PV_NO_SCRATCH option.
3637
3638         * vfm.c: (arrange_compaction) Allow `temporary' value of 2 to
3639         signal that AGGREGATE is to be used for forming final cases.
3640         (close_active_file) Call end_func before stopping lagging.  Cancel
3641         temporary after finishing compaction.
3642         (write_case) Comment fixes.  Cleaned up.
3643         (compact_case) Let AGGREGATE handle compaction when `temporary' is
3644         2.
3645
3646 Sat Jan 10 02:10:47 1998  Ben Pfaff  <blp@gnu.org>
3647
3648         * Makefile.am: (BUILT_SOURCES) Add means.c.
3649         (pspp_SOURCES) Add means.c.
3650         (EXTRA_DIST) Add means.q.
3651
3652         * command.c: (array cmd_table[]) Add MEANS.
3653
3654         * common.h: Esthetic fixes.  Comment fixes.  Test for
3655         MAX_SHORT_STRING greater than 8.
3656         (macros LOWEST, HIGHEST) New.
3657
3658         * data-in.c, data-list.c, recode.c: Comment fixes.
3659
3660         * means.q: New file, base version.
3661
3662         * mis-val.c: (parse_num_or_range, parse_numeric) Replace -DBL_MAX
3663         with LOWEST, DBL_MAX with HIGHEST.
3664
3665         * q2c.c: (dump_vars) Add an enum to array types giving the number
3666         of values for the enum.
3667
3668         * sfm-read.c: (sfm_read_dictionary, read_machine_flt64_info)
3669         Replace second_lowest_value with second_lowest_flt64.
3670
3671         * sfm-write.c: (write_variable, write_rec_7_34) Replace
3672         second_lowest_value with second_lowest_flt64.
3673
3674         * t-test.q: Comment fix.
3675
3676         * temporary.c: (restore_dictionary) Esthetic fix.
3677
3678         * tokens.h: (force_match_id, force_match, force_string, force_int,
3679         force_num, force_id) Replace msg() with syntax_error().
3680
3681         * var.h: (struct means_proc) New.
3682         (struct variable) Add mns member to `p' union.
3683
3684         * vars-prs.c: (parse_variable, parse_dict_variable,
3685         parse_variables, parse_DATA_LIST_vars) Replace msg() with
3686         syntax_error().
3687
3688 Thu Jan  8 22:28:41 1998  Ben Pfaff  <blp@gnu.org>
3689
3690         * Makefile.am: (pspp_SOURCES) Add tab.h.
3691
3692         * Most source files: Added a cast to unsigned char in usages of
3693         the ctype is*() functions.  Replaced `end of command expected'
3694         calls to msg() with calls to syntax_error().
3695
3696         * frequencies.q: (dump_condensed) Fix tab_dim() column reference.
3697
3698         * lexer.c: (hex_val) Removed (was dead code).
3699         (idmatch) Parenthesize function name to avoid macro expansion.
3700
3701         * postscript.c: Comment fixes.
3702         (ps_preopen_driver) Change default font size to 10pt.
3703
3704         * sfm-read.c: (read_variables) Byteswap sv.print, sv.write as
3705         int32s.
3706         (parse_format_spec) Change system-file format spec argument type
3707         to int32.  Parse the format spec with bitwise operators.
3708
3709         * sfmP.h: (struct sysfile_format) Removed.
3710         (struct sysfile_variable) Changed print, write members from
3711         sysfile_format to int32.
3712
3713         * tokens.h: Esthetic fixes.
3714         [__GNUC__] (macro id_match) New macro to hopefully speed up
3715         identifier matching.
3716         (macros match_id, match_tok, match_int) Implemented in
3717         compiler-independent manner; no longer GNU C only.
3718
3719         * vfm.h: Include time.h.
3720
3721 Mon Jan  5 11:06:15 1998  Ben Pfaff  <blp@gnu.org>
3722
3723         * data-list.c: (dump_fixed_table) Change tab_dim().
3724
3725         * dump-sysfile.c: (open_sysfile) Fix mmap() call.
3726
3727         * error.c: Include command.h.
3728
3729         * frequencies.g: Formatting fixes.
3730
3731         * frequencies.q: Add tab_dim() calls.  Make the total cell a
3732         joined cell.
3733
3734         * glob.c: Include command.h.
3735
3736         * sfm-read.c: (struct sfm_fhuser_ext) New members sysmis, highest,
3737         lowest.
3738         (sfm_read_dictionary) Initialize sysmis, highest, lowest.
3739         (sfm_read_machine_flt64_info) Update sysmis, highest, lowest.
3740         (read_variables) Byteswap sv.type; byteswap sv.print, sv.write as
3741         the other elements (is this right?).
3742         (read_variables) Use lowest, highest members.
3743         (parse_format_spec) New arg `vv' for more stringent checking.
3744         (dump_dictionary) Byteswaps nonexplicit data.
3745         (sfm_read_case) Byteswap numeric data.
3746
3747         * som.c: Initialize table_num to 1.
3748         (render_segments) Remember to increment y_index after each table
3749         segment.
3750
3751         * sysfile-info.c: (cmd_sysfile_info) Change tab_dim().  Don't call
3752         avl_count() on a NULL tree.  No title for the second table.
3753         (cmd_display) Handle DISPLAY VECTORS by calling display_vectors().
3754         Handle AS_SCRATCH as AS_NAMES.  Warn if no variables.  Re-enable;
3755         fix call to display_variables().
3756         (display_variables) Default to 4 columns, not 3.  Set up headers.
3757         Column title is Variable, not Name.  Fix index column.
3758         Add joint text.  Add tab_dim().  Handle value labels properly.
3759         Handle DISPLAY LABELS properly.  Draw boxes correctly.
3760         (describe_variable) Value labels don't need titles.  Don't clear
3761         nonexistent index column.
3762         (compare_vectors_by_name) New function.
3763         (display_vectors) New function.
3764
3765         * tab.c: (tab_height) Add assertion.
3766         (tab_null) Add debug code.
3767         (evaluate_dimensions) Add debug code.
3768
3769         * var.h: (struct variable) get_proc data is sometimes used
3770         simultaneously with other per-procedure info, therefore it was
3771         removed from the union.  All references changed.        
3772
3773 Sun Jan  4 18:13:33 1998  Ben Pfaff  <blp@gnu.org>
3774
3775         * ascii.c: (ascii_close_page) Put title on second line of headers
3776         if there is no subtitle.
3777
3778         * command.c: (glob var cur_proc) Move definition here, from
3779         common.c.
3780         (cmd_remark) Emit blank line before remarks.
3781
3782         * command.h: (glob var cur_proc) Move declaration here, from
3783         common.h.
3784
3785         * data-list.c: (dump_fixed_table) Fix messages.
3786         (dump_free_table) Call tab_nat_dim().
3787
3788         * descript.q: (dump_z_table) Modify tab_dim() call.
3789
3790         * frequencies.q: (dump_condensed, dump_statistics) Add tab_dim()
3791         call.
3792         (dump_statistics) Don't output header.
3793
3794         * groff-font.c: Minor format fix.
3795
3796         * html.c: Comment fix.
3797
3798         * list.q: (write_varname) Indent after advancing page.
3799
3800         * output.h: Minor reordering.
3801
3802         * postscript.c: Comment fixes.  Many places, '\n' was replaced by
3803         a reference to eol[].
3804         (struct ps_driver_ext) New member eol[].
3805         (ps_preopen_driver) Initialize eol[].
3806         (ps_postopen_driver) Fix sense of text for text_opt, line_opt
3807         defaults.  Handle headers.  Fix test for minimum page length.
3808         (static var option_tab[]) Add `line-ends'.
3809         (ps_option) Handle line-ends to change eol[].
3810         (postopen) Scale prop_em_width and fixed_width properly.  Set the
3811         prologue title to outp_title if applicable.  Replace the prologue
3812         line ends with eol[].  Call draw_headers() if headers are enabled.
3813         (text_width) New function.
3814         (out_text_plain) New function.
3815         (draw_headers) New function.
3816
3817         * print.c: (dump_table) Call tab_nat_dim().
3818
3819         * som.c: (som_blank_line) Only advance a line if not at the top of
3820         a page.
3821         (som_submit) Move several informational table calls here.
3822         Increment subtable_num if SOMF_NO_TITLE not set.
3823         (output_table) Advance a line if SOMF_NO_SPACING not set.
3824         (render_columns, render_segments, render_simple) Handle spacing
3825         between tables.  Handle table titles.  Remove debug output.
3826
3827         * som.h: (SOMF_*) New enum series.
3828         (struct som_table_class) New member `flags'.
3829
3830         * sysfile-info.c: (cmd_sysfile_info) Calls tab_nat_dim().  No
3831         headers or spacing.
3832         (display_variables) Calls tab_nat_dim().
3833         (describe_variable) Remove restriction on number of value labels.
3834         Make value labels separated by thin lines.
3835
3836         * tab.c: (tab_create) Default `flags' to none.
3837         (tab_float) New arg `w'.  All references changed.
3838         (tab_nat_dim) New function.
3839         (tab_output_text) No title or spacing.
3840         (tab_flags) New function.
3841         (tabi_flags) New function.
3842         (tabi_title) New function.
3843         (strip_height) Removed.
3844         (tabi_render) Skip title when necessary.
3845         (static var tab_tab_class) Add tabi_flags, tabi_title.
3846         (evaluate_dimensions) Disable display of column, row size.
3847         (sum_columns) Add title height to top header.
3848         (render_strip) Moved within file.
3849
3850         * tab.h: (struct tab_table) New member `flags'.
3851
3852         * vfm.c: (dump_splits) Calls tab_nat_dim().  No title.
3853
3854 Sat Jan  3 16:55:44 1998  Ben Pfaff  <blp@gnu.org>
3855
3856         * Most source files: Add `const' attribute in all appropriate
3857         places.
3858         
3859         * sysfile-info.c: (cmd_sysfile_info) Add tab_dim() call, add a
3860         column to the variables table for use by describe_variable().
3861         (cmd_display) Disable for the present.
3862         (display_documents) Don't wrap documents.
3863         (display_variables) Table has four columns now.
3864         (describe_variable) Table has four columns now.  Don't use a
3865         subtable, use joined cells instead.
3866
3867         * tab.c: (tab_create) Don't set `join'.
3868         (tab_realloc) ct array is not made up of a_string's.
3869         Reallocate trh, hrh, h arrays, initialize trh array.  Initialize
3870         cell contents on GLOBAL_DEBUGGING, not DEBUGGING.
3871         (text_format) New function.
3872         (tab_title) Rewritten, uses text_format().
3873         (tab_text) Rewritten, uses text_format().
3874         (tab_joint_text) New function.
3875         (tab_join) Removed.
3876         (static var hit) New variable.
3877         (render_strip) New args r1, r2.  Implement joined cells that fit
3878         on a single page.
3879         (tabi_render) Increment hit.  Pass new args to render_strip().
3880         (evaluate_dimensions) [GLOBAL_DEBUGGING] Check for uninitialized
3881         cells.  For t_naw and t_nah, ignore joined cells and null cells in
3882         calculations.
3883         
3884         * tab.h: (struct tab_join_rect) Removed.
3885         (struct tab_table) Removed `join'.
3886         (TAB_JOIN_MAIN) Removed.
3887         (struct tab_joined_cell) New struct.
3888         (TAT_NOWRAP) New enum.
3889
3890 Fri Jan  2 01:39:58 1998  Ben Pfaff  <blp@gnu.org>
3891
3892         * ascii.c: (ascii_postopen) Replace ASCII_* macros with their
3893         expansions.
3894         (ascii_postopen_driver) Fix initialization of *_spacing so that
3895         the TAL_0 bit doesn't count.
3896
3897         * data-list.c: (dump_fixed_table) Use natural width for Format
3898         column.
3899
3900         * glob.c: (rerange) Removed.
3901         (get_date) Formatting fixes.  Internationalization fix.
3902
3903         * html.c: (html_postopen_driver) Replace HTML_DEFAULT_OUTPUT_FILE
3904         with "pspp.html".
3905
3906         * postscript.c: (ps_postopen_driver) Replace
3907         PS_DEFAULT_OUTPUT_FILE with "pspp.ps".
3908
3909         * som.c: (som_submit) Don't eject page before every table.
3910         (output_table) Fix order of arguments on call to area().
3911         (render_columns) Fix calculation of max_len.
3912         
3913         * tab.c: (tabi_cumulate) Minor change to increase elegance.
3914         (render_strip) New function.
3915         (strip_height) New function.
3916         (tabi_render) Rewrite as calls to render_strip().
3917
3918         * tab.h: (TAT_* enums) Removed TAT_RICH, all references removed.
3919         Renumbered TAT_PRINTF, TAT_TITLE, TAT_FIX to correspond better
3920         with the TAB_* and OUTP_T_* constants.
3921         
3922 Thu Jan  1 11:53:52 1998  Ben Pfaff  <blp@gnu.org>
3923
3924         * Makefile.am: Formatting fixes.
3925
3926         * ascii.c: (ascii_postopen_driver) Initialize *_line_spacing[],
3927         *_line_width[].
3928
3929         * data-list.c: (dump_fixed_table) Add tab_dim() call.
3930
3931         * descript.q: (dump_z_table, display) Add tab_dim() calls.
3932
3933         * dump-sysfile.c: (glob var length) Make type off_t.
3934         (usage) Fix arguments.
3935         (main) Return 0.
3936
3937         * output.h: (OUTP_T_*) Change constants' value to match tab.h.
3938         Now right-justification is the default so many references had to
3939         change.
3940         (struct outp_class) Removed line_width, all references changed.
3941         (OUTP_DEV_*) Add OUTP_DEV_DISABLED.
3942         (struct outp_driver) Add elements horiz_line_width,
3943         vert_line_width, horiz_line_spacing, vert_line_spacing.  Remove
3944         som element.
3945
3946         * postscript.c: (outp_encodings) Formatting fixes.  Fix garbage
3947         collection.
3948         (postopen) Initialize all the informational members of
3949         outp_driver.
3950
3951         * som.c: (som_blank_line) New function, renamed from blank_line(),
3952         all references changed.
3953         (som_submit) Disables drivers whose pages can't be opened.
3954         (render_columns, render_simple, render_segments) Add debug output.
3955         (render_columns) Fix loop range.
3956         (render_simple) Don't try to render the headers, they're taken
3957         care of automatically.  Advance cp_y past the table when done.
3958         (render_segments) Fix loop ranges.
3959
3960         * tab.c: Initialize new members of tab_table.
3961         (tab_vline) Handle trv[]; don't set style for spacing-only lines.
3962         (tab_hline) Handle trh[]; don't set style for spacing-only lines.
3963         (tab_box) Handle trh[], trv[]; don't set style for spacing-only
3964         lines.
3965         (set_expr) Removed.
3966         (tab_dim) New function.
3967         (tab_col_width) Removed.
3968         (tab_row_height) Removed.
3969         (tab_output_text) Call tab_dim().
3970         (tabi_driver) Call evaluate_dimensions(), sum_columns().
3971         (tabi_area) Implemented.
3972         (tabi_cumulate) Implemented.
3973         (tabi_render) Partially implemented, but broken.
3974         (var tab_table_class) Made static.
3975         (evaluate_dimensions) New function.
3976         (sum_columns) New function.
3977
3978         * tab.h: (enum t_*) Now start at t_end.  New: t_ptw, t_nr, t_nc,
3979         t_nah, t_naw, t_neg, t_xch, t_dup, t_lbl, t_jnz, t_sac, t_sar,
3980         t_scr, t_srr, t_sentinel.  Removed: t_nat.
3981         (struct tab_table) New: wl, wr, ht, hb, trh, hrh, trv, wrv, dim,
3982         max_stack_height, w, h.  Removed: ce, re.
3983         (macro blank_line) Removed.
3984         (glob var zero_length) Removed.
3985
3986 Fri Dec 26 15:44:31 1997  Ben Pfaff  <blp@gnu.org>
3987
3988         * Most source files: include some of the new include files broken
3989         out of var.h.
3990         
3991         * Makefile.am: (pspp_SOURCES) Add all the new source files to the
3992         list.
3993
3994         * aggregate.c: (glob var outfile) Make static.
3995
3996         * command.c: (glob var pgm_state) Move here.
3997
3998         * common.c: (glob vars endian, second_lowest_value, pgmname,
3999         finished, curdate, cur_proc, start_interactive, history_file) Move
4000         here.
4001
4002         * descript.q: (structs dsc_z_score, descriptives_trns) Move here.
4003
4004         * file-handle.q: (glob vars files, inline_file) Move here.
4005
4006         * glob.c: Lost lots of glob vars, detailed in individual file
4007         entries.
4008         (init_glob) set_printer, set_screen were obsolete, deleted.
4009         set_cprompt has fewer spaces because pspp has fewer letters than
4010         fiasco.
4011
4012         * inpt-pgm.c: (glob vars inp_init, inp_init_size) Move here.
4013         (inp_nval) Made static.
4014
4015         * lexer.c: (glob vars token, tokval, tokstr, tokstr_size,
4016         tokstr_len, toklongstr, tokint) Move here.
4017
4018         * misc.c: Lost several vars and functions.
4019
4020         * set.q: (all the set_* variables) Move here.
4021
4022         * str.c: (strmaxcpy, strbarepadcpy, strbarepadlencpy, strpadcpy,
4023         blpstrset, strpadcmp, memrev, memrmem, cmp_str) Move here from
4024         misc.c.
4025
4026         * tab.c: (set_expr, tab_col_width, tab_row_height) New functions.
4027
4028         * tab.h: (enum series t_*) New enums.
4029         (struct tab_table) Use arena struct tag.  New members ce, re.
4030
4031         * tokens.h: Comment fixes.
4032
4033         * var.h: Move lots of enums and variables and functions and
4034         structures to other files.  Use and declare a lot more union and
4035         struct tags.  Comment fixes.  
4036
4037         * vector.c: (glob vars vec, nvec) Move here.
4038
4039         * vfm.c: (glob vars reinit_sysmis, reinit_blanks, init_zero,
4040         init_blanks, last_vfm_invocation) Move here.
4041
4042         * cases.h: New file.
4043         (struct long_vec) Move here.
4044         (vec_init, vec_clear, vec_insert, vec_delete, devector, envector)
4045         Move here.
4046
4047         * command.h: New file.
4048         (STATE_* enums) Move here.
4049         (glob var pgm_state) Move here.
4050
4051         * format.c: New file.
4052         (glob var formats) Move here.
4053         (parse_format_specifier_name, fmt_to_string,
4054         check_input_specifier, check_output_specifier,
4055         check_string_specifier, convert_fmt_ItoO, parse_format_specifier)
4056         Move here.
4057
4058         * format.h: New file.  Move functions now in format.c here.
4059         (FMT_* enums) Move here.
4060         (struct fmt_desc) Move here.
4061         (FCAT_* enums) Move here.
4062         (struct fmt_spec) Move here.
4063         (glob vars formats, fmt_parse_ignore_error) Move here.
4064
4065         * inpt-pgm.h: New file.
4066         (INP_* enums) Move here, make #defines into enums.
4067         (glob vars inp_init, inp_init_size) Move here.
4068
4069         * sort.h: New file.
4070         (glob vars v_sort, nv_sort) Move here.
4071         (sort_cases, read_sort_output) Move here.
4072
4073         * vector.h: New file.
4074         (struct vector) Move here, add struct tag.
4075         (glob vars vec, nvec) Move here.
4076         (find_vector) Move here.
4077
4078         * New file.
4079         (glob vars last_vfm_invocation, temp_case, reinit_sysmis,
4080         reinit_blanks, init_zero, init_blanks) Move here.
4081         (struct case_stream) Move here.
4082         (glob vars vfm_source, vfm_sink, vfm_memory_stream,
4083         vfm_disk_stream, sort_stream, data_list_source,
4084         input_program_source, file_type_source, get_source, n_lag) Move
4085         here.
4086         (procedure, write_case, lagged_case, compact_case, page_to_disk)
4087         Move here.
4088                 
4089 Wed Dec 24 22:40:42 1997  Ben Pfaff  <blp@gnu.org>
4090
4091         * Makefile.am: (pspp_SOURCES) Added html.c, som.c, som.h.
4092         (LDADD) Add libdcdflib.
4093
4094         * ascii.c: Comment and formatting fixes.  Almost every external
4095         function had an assert added, checking driver_open and page_open.
4096         (ascii_init_driver) Broken into ascii_preopen_driver,
4097         ascii_postopen_driver, ascii_close_driver.  Manages driver_open.
4098         (ascii_open_page) Sets page_open.
4099         (ascii_close_page) Clears page_open.
4100
4101         * html.c: Comment and formatting fixes.  Almost every external
4102         function had an assert added, checking driver_open and page_open.
4103         (html_init_driver) Broken into html_preopen_driver,
4104         html_postopen_driver, html_close_driver.  Manages driver_open.
4105         (html_open_page) Sets page_open.
4106         (html_close_page) Clears page_open.
4107         (html_submit) Disabled.
4108
4109         * lexer.c: (parse_string) Remove debugging printf.
4110
4111         * list.q: (determine_layout) Open a page if one is not yet open.
4112
4113         * output.c: Comment fixes.
4114         (add_class) Set the class member of the new list element.
4115         (parse_options) Don't handle device type.
4116         (colon_tokenize) New function.
4117         (configure_driver) New four-field format with a field for device
4118         type.  Now initialize driver_open, page_open, next, and prev
4119         fields.  Use new colon_tokenize() function.  Don't do a memory
4120         copy to replace a driver, it doesn't work; instead delete the old
4121         driver and insert a new one.
4122         (destroy_driver) Don't call som_destroy_driver().  Close the page
4123         if it's open.  Find the class in the list of classes and decrement
4124         that reference count.  Remove the driver from the global driver
4125         list.
4126         (outp_iterate_enabled_drivers) Renamed outp_drivers().  All
4127         references changed.  Rewritten.  Don't return a driver that's not
4128         enabled.
4129         (outp_eject_page) All references to som_internal_eject_page()
4130         changed to use this.  Sets cp_x to 0 as well as cp_y.
4131
4132         * output.h: (OUTP_I_* enums) Removed.
4133         (struct som_submission_form) Removed.
4134         (struct outp_class) init_driver broken into preopen_driver,
4135         postopen_driver, and close_driver.  submit changed to take a
4136         som_table argument.
4137
4138         * postscript.c: Comment and formatting fixes.  Almost every
4139         external function had an assert added, checking driver_open and
4140         page_open.
4141         (ps_init_driver) Broken into ps_preopen_driver,
4142         ps_postopen_driver, ps_close_driver.  Manages driver_open.
4143         (ps_open_page) Sets page_open.
4144         (ps_close_page) Clears page_open.
4145
4146         * som.c: New file, base implementation.
4147         
4148         * som.h: (struct som_table) Add struct tag.
4149         (enum SOM_COL_ACROSS) Removed.
4150         (SOM_ROWS, SOM_COLUMNS) New enums.
4151         (struct som_table_class) Add member `cumulate'.  Remove `segment';
4152         change `render' arguments.
4153         (struct som_point, struct som_rect) Removed.
4154         (som_submit_table) Fixed typo, should have been som_submit.
4155
4156         * sysfile-info: (describe_variable) Don't try to insert a
4157         subtable; just destroy it for now.
4158
4159         * t-test.q: Include dcdflib/cdflib.h instead of cdflib.h.  Fix
4160         references to value labels.
4161
4162         * tab.c: (tab_destroy) New function.
4163         (tab_columns) Change argument.
4164         [0] (tab_submit) Remove dead code.
4165         (tab_title) Allocate string from the table's arena.
4166         (tab_output_text) Only free the buffer if we allocated it.
4167         (tab_submit) New function.
4168         (static vars t, d) New static vars.
4169         (tabi_table, tabi_driver, tabi_count, tabi_area, tabi_columns,
4170         tabi_headers, tabi_cumulate, tabi_render) New functions.
4171         (glob var tab_table_class) New global var.
4172
4173         * tab.h: (struct tab_join_rect) Don't use a som_rect; directly
4174         encapsulate the rectangle.  All references changed.
4175         
4176 Sun Dec 21 16:18:58 1997  Ben Pfaff  <blp@gnu.org>
4177
4178         * All header files updated to use struct tags in addition to
4179         typedefs for all structures.  Don't use word `struct' in struct
4180         tags.
4181         
4182         * Makefile.am: (pspp_SOURCES) Remove html.c.
4183         (INCLUDES) Replace the lib/* includes with a single lib/ include;
4184         all references updated.
4185
4186         * command.c: (parse_cmd) Remove call to som_check_workspace.
4187         (output_line) Update to new som.
4188
4189         * data-in.c: (parse_numeric) A single dot is not an error; it is
4190         the system-missing value.
4191
4192         * data-list.c: (dump_fixed_table, dump_free_table) Update to new
4193         som.
4194
4195         * data-out.c: Added `const' as appropriate to many prototypes.
4196         (convert_E, convert_F, convert_CCx) Take double argument instead
4197         of value * argument.
4198         (convert_format_to_string) Call changed functions appropriately.
4199         Instead of modifying the caller's value for FCAT_SHIFT_DECIMAL,
4200         make a local copy of the value.
4201
4202         * descript.q: Remove custom_variables() prototype now provided by
4203         q2c.  
4204         (custom_variables) Don't increment sbc_variables, the caller does
4205         this.
4206         (dump_z_table, display) Update to new som.
4207
4208         * error.c: (vmsg) Add const to prototype.  Remove code to handle
4209         `too many errors' condition.
4210         (check_error_count) New function.
4211         (msg) Add const to prototype.
4212
4213         * filename.c: (open_file) Rewrite for elegance.
4214
4215         * frequencies.q: Remove custom_*() prototypes now provided by q2c.
4216         (dump_full, dump_condensed, dump_statistics) Update for new som.
4217
4218         * list.q: Don't include somP.h.  Change all references to
4219         som_driver_ext to refer to the new members of som_driver.  Change
4220         som_internal_eject_page() references to outp_eject_page().
4221
4222         * main.c: (parse) Rewrite for elegance.  Add call to
4223         check_error_count().
4224
4225         * output.c: (add_class, outp_list_classes, outp_configure_driver)
4226         Rewrite or revise for new outp_driver_class_list structure.
4227         (outp_iterate_enabled_drivers) Fix comparison between disabled
4228         devices and current device type.
4229         (outp_eject_page) New function.
4230
4231         * output.h: Comment fixes.
4232         (struct outp_driver) New members driver_open, page_open, cp_x,
4233         cp_y, font_height, prop_em_width, fixed_width.  Deleted members
4234         ref_count, next.
4235         (struct outp_driver_class_list) New struct.
4236         (outp_class_list) Changed to type outp_driver_class_list; all
4237         references updated.
4238
4239         * print.c: (dump_table, print_trns_proc) Updated for new som.
4240
4241         * q2c.c: (dump_vars) Simplify array subcommand code.  Declare
4242         prototypes for custom subcommands.
4243         (dump_subcommand) Always include the `else'.
4244         (dump_parser) Fix comments in output code.
4245
4246         * set.q: Reordered functions.
4247
4248         * som-frnt.c, som-high.c, som-low.c, somP.h: Removed.
4249         
4250         * som.h: Rewritten from scratch.
4251
4252         * str.h: Remove dead code.
4253
4254         * tab.c, tab.h: New files, base implementation.
4255
4256         * sysfile-info.c: (cmd_sysfile_info, describe_variable) Update to
4257         new som.
4258
4259         * t-test.q: New code from John Williams
4260         <johnr.williams@stonebow.otago.ac.nz>.  Include math.h, cdflib.h.
4261         Many many new static vars and defines.
4262         (precalc, postcalc, g_postcalc, z_postcalc, t_pairs, t_groups,
4263         groups_calc, pairs_calc, z_dev_calc, z_calc) New functions.
4264         (struct value_list) New struct.
4265         (variance, covariance, pooled_variance, oneway, pearson_r, f_sig,
4266         t_crt, t_sig, print_t_groups) New functions.
4267         (cmd_t_test) Implemented.
4268
4269         * temporary.c: (cancel_temporary) Only free the temp_dict if it's
4270         non-NULL.
4271
4272         * vfm.c: (dump_splits) Update to new som.
4273
4274 Thu Dec  4 23:02:22 1997  Ben Pfaff  <blp@gnu.org>
4275
4276         * Makefile.am: (fiasco_SOURCES) Add html.c.
4277
4278         * aggregate.c: Base source.
4279
4280         * ascii.c: (postopen, preclose) Reformat.
4281
4282         * data-out.c, expr-evl.c: Comment fixes.
4283         
4284         * filename.c: (open_file) When opening a file for writing, use
4285         line buffering instead of full buffering for better interactive
4286         performance.  Suggested by Valerio Aimale
4287         <valerio@svpop.com.dist.unige.it>.  Also, recognize special file
4288         names `stdin', `stdout', `stderr'.
4289
4290         * groff-font.c: Comment fixes.
4291
4292         * html.c: New file; base version.
4293
4294         * list.q: (write_all_headers, clean_up, determine_layout,
4295         list_cases) Ignore `special' devices for now.  Needs to be fixed
4296         later.
4297
4298         * output.c: (outp_init) Add html driver to list; reverse list
4299         order.
4300
4301         * output.h: (struct outp_class_struct) New members `special',
4302         `submit'; comment fixes.  All references changed.
4303
4304         * postscript.c: (ps_init_driver) Make defaults for text_opt,
4305         line_opt depend on whether the OUTP_DEV_SCREEN bit is set on the
4306         device.
4307         (postopen) Comment fix.
4308         (preclose) Comment fixes, formatting fixes.  Change x->file.file
4309         references to more proper f->file.
4310
4311         * som-high.c: (som_submit_table) Special classes use their own
4312         renderers.
4313
4314         * som.h: Comment fixes.
4315
4316         * temporary.c: (new_dictionary) Don't try to xstrdup() a NULL
4317         string.
4318         
4319 Tue Dec  2 14:36:07 1997  Ben Pfaff  <blp@gnu.org>
4320
4321         * Makefile.am: (fiasco_SOURCES) Add aggregate.c back in.
4322
4323         * aggregate.c: Still working on this.
4324
4325         * command.c: (cmd_table[]) Add AGGREGATE back in.
4326         (split_words) Make '-' a legal word separator as well as ' '.
4327
4328         * main.c: Comment fixes.
4329
4330         * q2c.c: (dump_parser) Don't require the procedure's full name to
4331         be present, in the generated source.
4332
4333         * t-test.q: Change name to `t-test' from `t test'.  Let PAIRS be
4334         multiply specified and let it be default; let MISSING, CRITERIA,
4335         FORMAT be multiply specified.
4336         (cmd_t_test) Parse command name.  [DEBUGGING] Call debug_print().
4337         (custom_groups) Fix defaults.
4338         (custom_pairs) Check whether this is a PAIRS subcommand before
4339         attempting to parse.  Better garbage collection.  Proper storage
4340         allocation.
4341         [DEBUGGING] (debug_print) New function.
4342
4343         * temporary.c: Comment fixes.
4344         (copy_variable) Don't copy variable name and index.
4345         (save_dictionary) Copy variable name and index by hand.
4346
4347         * vars-atr.c: Comment fixes.
4348         (create_variable) New dictionary argument.  All references
4349         changed.
4350         (common_init_stuff) New dictionary argument.  All references
4351         changed.
4352         (init_variable) New dictionary argument.  All references changed.
4353         (dup_variable) New function.
4354
4355         * vars-prs.c: (parse_variables) If there are any errors, we always
4356         return 0.  Previously, it was possible for some types of errors to
4357         be ignored.
4358         
4359 Sat Nov 22 01:20:59 1997  Ben Pfaff  <blp@gnu.org>
4360
4361         * Makefile.am: (fiasco_SOURCES) For 0.1.5 release, remove
4362         aggregate.c.
4363
4364         * command.c: (cmd_table[]) Comment out AGGREGATE; add T TEST.
4365
4366         * list.q, t-test.q: Remove ALL option from VARLIST declaration in
4367         grammar rules.
4368
4369         * q2c.c: Comment fixes.
4370         (SBC_* enums) Remove SBC_VARLIST_ALL; all references removed.
4371         
4372         * t-test.q: (cmd_list) Rename cmd_t_test.
4373
4374         * temporary.c: (new_dictionary) Don't declare as static.
4375         
4376 Fri Nov 21 00:03:06 1997  Ben Pfaff  <blp@gnu.org>
4377
4378         * aggregate.c: Changes, still not finished.
4379
4380         * file-handle.q, frequencies.q, list.q, set.q: Comment fixes.
4381
4382         * q2c.c: Comment fixes.  Now its output is internationalized.
4383         (get_token) Fix parsing of escapes within literal strings.
4384         (main) Fix bad #line directives in output.
4385
4386         * t-test.q: Base implementation.
4387
4388         * temporary.c: (new_dictionary) New function.
4389         (restore_dictionary) [__CHECKER__] Change fill character to *
4390         (from @).
4391         
4392 Sun Nov 16 01:29:57 1997  Ben Pfaff  <blp@gnu.org>
4393
4394         * Makefile.am: (BUILT_SOURCES, fiasco_SOURCES) Add t-test.c
4395
4396         * aggregate.c: Changes, still not finished.
4397
4398         * descript.q, list.q: Comment fixes.
4399
4400         * q2c.c: Almost completely rewritten.
4401
4402         * t-test.q: New file, not complete.
4403
4404 Fri Nov 14 00:14:48 1997  Ben Pfaff  <blp@gnu.org>
4405
4406         * aggregate.c: Changes, still not finished.
4407
4408         * sort.c: (sort_cases) Call cancel_temporary() instead of doing it
4409         by hand.
4410
4411         * temporary.c: (cancel_temporary) New function.
4412
4413         * vars-atr.c: (discard_variables) Call cancel_temporary() instead
4414         of doing it by hand.
4415
4416         * vfm.c: (close_active_file) After restoring a TEMPORARY
4417         dictionary, set temp_dict to NULL.  Cancel TEMPORARY through
4418         cancel_temporary().
4419         (SPLIT_FILE_procfunc) Comment fix.
4420
4421 Tue Oct 28 16:08:45 1997  Ben Pfaff  <blp@gnu.org>
4422
4423         * Makefile.am: (fiasco_SOURCES) Add aggregate.c.
4424
4425         * aggregate.c: New file, not finished yet.
4426
4427         * command.c: (cmd_table) Add AGGREGATE.
4428
4429         * common.h: (pgm_state) Move declaration to var.h.
4430
4431         * lexer.c: (bin_value_func, oct_value_func, hex_value_func) i18n
4432         fixes.
4433         (parse_string) Message fix.
4434
4435         * recode.c: Comment fix.
4436
4437         * sfm-read.c: (read_variables) Code esthetic fixes.
4438         (write_header) Default date is `Jan', not `JAN'.
4439
4440         * sfmP.h: (bswap_int32) [!__linux__] Fix off-by-one errors.
4441
4442         * sort.c: (cmd_sort_cases) Farm the work out to new function
4443         parse_sort_variables().
4444         (parse_sort_variables) New function.
4445         (sort_cases) New function.  Cancels temporary transformations,
4446         which sorting didn't do previously.
4447         (cmd_sort_cases) Better garbage collection on error.  Uses
4448         do_external_sort().
4449         (write_initial_runs, merge_once) Improved code esthetics.
4450         (sort_stream_read) Reduced to one call to read_output_cases().
4451         (read_output_cases) New function.
4452
4453         * var-labs.c: (cmd_variable_labels) Re-enabled truncation of
4454         variable labels to 120 characters.
4455
4456         * var.h: Comment fixes.
4457         (glob var pgm_state) From common.h.
4458
4459         * vars-atr.c: (discard_variables) Set pgm_state to STATE_INIT.
4460
4461         * vars-prs.c: (parse_DATA_LIST_vars) Support PV_SINGLE in
4462         options.  Set *names to NULL on error.
4463
4464         * vfm.c: (memory_stream_init) Assert compaction_nval != 0.
4465
4466 Thu Oct  9 09:59:49 1997  Ben Pfaff  <blp@gnu.org>
4467
4468         * sfm-write.c, vfm.c: [HAVE_UNISTD] #include <unistd.h>, needed by
4469         SunOS4.  From Alexandre Oliva <oliva@dcc.unicamp.br>.
4470
4471 Wed Oct  8 18:55:24 1997  Ben Pfaff  <blp@gnu.org>
4472
4473         * vfm.c: (page_to_disk) Added missing local variables.
4474
4475 Tue Oct  7 20:23:17 1997  Ben Pfaff  <blp@gnu.org>
4476
4477         * get.c: Comment fix.
4478
4479         * sort.c: (cmd_sort_cases) Attempt to perform internal sort if the
4480         source is anything other than a disk stream, not just if it's in a
4481         memory stream.  Call page_to_disk() before external sort.
4482         (allocate_cases) Message fix.
4483
4484         * vfm.c: (prepare_for_writing) Warn user when paging workspace to
4485         disk.
4486         (page_to_disk) New function.
4487
4488 Sun Oct  5 15:56:14 1997  Ben Pfaff  <blp@gnu.org>
4489
4490         * Makefile.am: (INCLUDES) Include .. instead of $(top_srcdir).
4491
4492         * common.h: (macro strerror) Remove.  From Alexandre Oliva
4493         <oliva@dcc.unicamp.br>.
4494
4495         * get.c: (dict_delete_run) The number of variables to delete is
4496         not necessarily the number of variables that need to be shifted
4497         up.
4498         (trim_dictionary) Don't set *options to 0.  Fix bug that caused
4499         too many variables to be deleted.
4500
4501         * postscript.c: Comment fix.
4502
4503         * q2c.c: Include strerror.c.  From Alexandre Oliva
4504         <oliva@dcc.unicamp.br>.
4505
4506         * set.q: #undef ON and OFF.  From Alexandre Oliva
4507         <oliva@dcc.unicamp.br>.
4508
4509         * sfm-read.c: (sfm_read_dictionary) Don't set the file class too
4510         early, otherwise errors cause a bad free().
4511
4512         * str.h: (macro nvsprintf) s/FORMATS/FORMAT/ typo.  From Alexandre
4513         Oliva <oliva@dcc.unicamp.br>.
4514
4515         * temporary.c: (save_dictionary) Don't allocate memory if
4516         n_documents is 0.
4517
4518         * vfm.c: (memory_stream_write) Message fix.
4519
4520 Sat Oct  4 16:20:43 1997  Ben Pfaff  <blp@gnu.org>
4521
4522         * command.c: (static var cmd_table[]) Define REPEATING DATA
4523         command.
4524
4525         * common.h: Added support for broken systems that are missing
4526         EXIT_SUCCESS, EXIT_FAILURE, RAND_MAX, and/or strerror().
4527
4528         * Many source files: Replace syntax error messages via msg() with
4529         call to syntax_error().
4530
4531         * data-list.c: (dump_fixed_table) Add support for dumping table
4532         for REPEATING DATA as well as DATA LIST FIXED.
4533         (cmd_repeating_data) Allows and requires `/' between subcommands.
4534         Does proper thing with allowing rpd.starts_end to stay 0.  Allows
4535         CONTINUED specifications to be omitted.  Forces CONTINUED to be
4536         specified if ID is.  Calculates starts_end, cont_end from logical
4537         record length as reported by fhp.  Calls dump_fixed_table() if
4538         requested.  Fixed length of record copied by memcpy.
4539         (parse_num_or_var) Sets `num' to 0, not NOT_INT, for variables.
4540         Message fix.
4541         (realize_value) Returns sensible value for out-of-range variable
4542         values.
4543         (rpd_parse_record) New argument `ofs'.  Fixed confusion between
4544         length of occurrences and length of line.  Added warning for
4545         fields that exceed the line length.  Fixed infinite loop.
4546         (read_one_set_of_repetitions) Numerous minor changes for more
4547         complete SPSS compliance.  Message fixes.
4548
4549         * dfm.c: (dfm_close) If the file being closed is the inline file,
4550         read all the remaining data before closing it.
4551         (dfm_get_record) Don't close the file on lossage, as either it
4552         has been closed already or it doesn't belong to us.
4553
4554         * error.c: (puts_stdout) New function.
4555         (vmsg) Use puts_stdout instead of puts.
4556
4557         * file-handle.q: (fh_record_width) New function.
4558
4559         * inpt-pgm.c: (init_case) Fixed buffer overrun when inp_nval % 4
4560         == 0.
4561         (clear_case) Ditto.
4562         (input_program_source_read) Made an old kluge an approved method.
4563
4564         * lexer.c: (syntax_error) New function.
4565
4566         * misc.c: [BROKEN_RAND] (ansi_rand, ansi_srand; static var next)
4567         New.
4568
4569         * output.c: (oupt_get_paper_size) Message fix.
4570
4571         * q2c.c: Numerous fixes to formatting of generated code made to
4572         conform to GNU coding standards.  Uses syntax_error() in generated
4573         code.  Other miscellaneous generated message fixes.  Added support
4574         for broken systems that are missing EXIT_SUCCESS, EXIT_FAILURE,
4575         RAND_MAX, and/or strerror().
4576
4577 Sat Oct  4 02:09:56 1997  Ben Pfaff  <blp@gnu.org>
4578
4579         * data-in.c: Comment fixes.
4580
4581         * data-list.c: (struct repeating_data_trns) New member `id_spec'.
4582         (find_variable_input_spec) New function.
4583         (cmd_repeating_data) Initializes id_spec.
4584         (rpd_parse_record) Implemented.
4585         (read_one_set_of_repetitions) Returns -3 by default in order to
4586         kluge out some potential bugs.
4587
4588         * data-out.c: Comment fixes.
4589
4590         * file-type.c: (internal_cmd_record_type) Message fix.
4591
4592         * inpt-pgm.c: (input_program_source_read) Special temporary kluge
4593         for handling -3 return value.
4594
4595 Sat Sep 20 23:58:15 1997  Ben Pfaff  <blp@gnu.org>
4596
4597         * data-list.c: Comment fixes.
4598         (struct dls_var_spec) Reordered members.
4599         (read_from_data_list_fixed) Restructured.
4600         (struct repeating_data_trns) Reordered members.  Renamed `starts'
4601         as `starts_beg', `ends' as `starts_end'.
4602         (cmd_repeating_data) Calculates length of repeated data if
4603         necessary and possible.
4604         (parse_num_or_var) Don't allow string variables.
4605         (realize_value) New function.
4606         (rpd_msg) New function.
4607         (rpd_parse_record) New function.  Currently stubbed out.
4608         (read_one_set_of_repetitions) Implemented.
4609
4610         * inpt-pgm.c: (input_program_source_read) Comment fix.
4611
4612 Thu Sep 18 21:34:57 1997  Ben Pfaff  <blp@gnu.org>
4613
4614         * command.c: (cmd_end_repeat_p) Removed.
4615         (init_cmd_parser) Doesn't set cmd_end_repeat_p.
4616         (parse_cmd_name) Removed.
4617
4618         * data-list.c: Comment fixes.
4619         (data_list_pgm) Removed `eof' member.
4620         (static var first) New var.
4621         (cmd_data_list) Sets `first'.  Ensures that DATA LIST uses the
4622         FILE TYPE file inside FILE TYPE structures.
4623         (append_var_spec) Appends to *first, not dls.spec.
4624         (parse_fixed) Message fixes.
4625         (struct rpd_num_or_var) New.
4626         (struct repeating_data_trns) New.
4627         (static var rpd) New.
4628         (cmd_repeating_data) New function.
4629         (parse_num_or_var) New function.
4630         (parse_repeating_data) New function.
4631         (read_one_set_of_repetitions) New function.
4632
4633         * file-type.c: (cmd_file_type) Message fixes.  Always
4634         default_handle to FILE TYPE file handle.
4635         (internal_cmd_record_type) Message fixes.
4636
4637 Wed Aug 20 14:22:03 1997  Ben Pfaff  <blp@gnu.org>
4638
4639         * repeat.c: Comment fix.  Disable debugging.
4640
4641         * temporary.c: (restore_dictionary) Sets splits to NULL and
4642         n_splits to 0 before destroying the variables because now doing
4643         this tries to remove split variables.
4644
4645         * vars-atr.c: (discard_variables) Asserts that n_splits is 0 after
4646         destroying the dictionary.
4647         (clear_variable) Removes a variable from splits after destroying
4648         it.
4649
4650 Mon Aug 18 18:06:55 1997  Ben Pfaff  <blp@gnu.org>
4651
4652         * cmdline.c: (set_compat) Removed.
4653         (pick_compat) Removed.
4654         (parse_command_line) Removed -c option.
4655         (pre_syntax_message) Removed -c option.
4656         (usage) Remove compatibility code.
4657
4658         * common.h: (macros VER_PC, VER_WND, VER_X) Removed.
4659         (glob var compat) Removed.
4660
4661         * compute.c: (type_check) Fixed messages about type mismatches.
4662
4663         * data-list.c: (cmd_data_list) Removed compatibility code.
4664         (fixed_parse_compatible) Calls convert_negative_to_dash().
4665         Fixed bug where it only set the variable in fx.spec if it created
4666         the variable itself.
4667         (dump_fmt_list) Spelling fix.
4668         (cut_field) Removed compatibility code.
4669
4670         * dfm.c: (cmd_begin_data) Don't require a command terminator on
4671         BEGIN DATA command.
4672
4673         * expr-evl.c: (evaluate_expression) Implement LAG.
4674
4675         * expr-prs.c: (parse_add) Calls convert_negative_to_dash().
4676         (parse_neg) Calls convert_negative_to_dash().
4677         (LAG_func) Increases n_lag to the lag requested.  Fixed assignment
4678         bug.
4679
4680         * expr.h: (struct expression_struct) Removed member max_lag.
4681
4682         * file-type.c: (parse_col_spec) Calls convert_negative_to_dash().
4683         (internal_cmd_record_type) Removed special handling to produce
4684         negative numbers from dash tokens.
4685
4686         * getline.c: (static var DO_REPEAT_level) New var.
4687         (getl_add_DO_REPEAT_file) Increments DO_REPEAT_level.
4688         (handle_line_buffer) Copies the line into getl_buf; doesn't call
4689         copy_with_DO_REPEAT_substitutions().
4690         (getl_read_line) Maintains value of getl_mode.  Calls
4691         perform_DO_REPEAT_substitutions() whenever DO_REPEAT_level is
4692         positive.
4693         (getl_close_file) Decrements DO_REPEAT_level when appropriate.
4694
4695         * getline.h: (getl_mode) New glob var.
4696
4697         * glob.c: Comment fixes.
4698         (init_glob) Restructured.  Sets set_seed.
4699         (init_compat_dependent) Removed.  All references removed.
4700         (get_date) Format changed from MM/DD/YY to DD MMM YYYY.
4701         (__htonl, __htons) Removed.  (What were these for?)
4702
4703         * lexer.c: (static var tbl) Dash set to class CNUM.
4704         (make_hexit) New function from data-out.c.
4705         (get_token_representation) Rewritten.
4706         (convert_negative_to_dash) New function.
4707         (lex_init_compat_dependent) Removed.
4708         (yylex) A dash is parsed as part of a number if it is followed by
4709         a digit.  The ASCII representation of a number is copied to
4710         tokstr.  String parsing farmed out to parse_string().  Comment
4711         fixes.
4712         (bin_value_func, oct_value_func, hex_value_func, parse_string) New
4713         functions.
4714         (preprocess_line) Line processing depends on interactive/batch
4715         mode, not on compatibility mode.  Removed PC+ compatibility code.
4716
4717         * loop.c: (loop_3_trns_proc) Comment fix.
4718
4719         * main.c: Remove dead code.
4720         (main) Remove call to init_compat_dependent().
4721
4722         * misc.c: (convert_fmt_ItoO) Make E format conversion more
4723         conformant.
4724
4725         * print.c: (parse_string_argument) Calls
4726         convert_negative_to_dash().
4727         (fixed_parse_compatible) Calls convert_negative_to_dash().
4728
4729         * repeat.c: (RPT_* defines) Removed.
4730         (struct rpt_numeric) Removed.
4731         (struct repeat_entry) New member type, changed `replacement' from
4732         char * to char **.
4733         (clean_up) Deallocation adapted to new repeat_entry.
4734         (internal_cmd_do_repeat) `type' defaults to 0.  Remove lookahead()
4735         usage.  Creates vars for `type' of 1.
4736         (parse_ids) Sets type of 1.  Adapted to new repeat_entry.
4737         (store_numeric) Rewritten, new interface.
4738         (parse_numbers) Rewritten.
4739         (parse_strings) Rewritten.
4740         (find_DO_REPEAT_substitution) New function.
4741         (perform_DO_REPEAT_substitutions) New function.
4742         (copy_with_DO_REPEAT_substitutions) Removed.
4743         (debug_print) Rewritten.
4744
4745         * set.q: Comment fix.
4746         (custom_results) Removed compatibility code.
4747         (internal_cmd_set) Removed SET EMULATION subcommand.  Removed
4748         compatibility code.
4749
4750         * sysfile-info.c: (cmd_display) Removed compatibility code.
4751
4752         * tokens.h: Comment fixes.
4753         (token types enum) Removed `toktype' typedef name for this int
4754         type.  Removed SUBST.  Restructured.
4755
4756         * vars-atr.c: (discard_variables) Sets n_lag to 0.
4757
4758         * vars-prs.c: Comment fix.
4759
4760         * vfm.c: Comment fixes.
4761         (glob var n_lag) New var.
4762         (static vars lag_count, lag_head, lag_queue) New vars.
4763         (procedure) Removed argument nlag.
4764         (setup_lag) New function.
4765         (close_active_file) Discards lagging state.
4766         (lag_case) New function.
4767         (lagged_case) New function.
4768         (write_case) Lags a case if lagging.
4769
4770         * weight.c: (cmd_weight) Removed compatibility code.
4771         
4772 Sun Aug 17 22:34:40 1997  Ben Pfaff  <blp@gnu.org>
4773
4774         * getline.h: (struct getl_script) New members loop_index, macros.
4775
4776         * getline.c: (getl_add_file) Sets first_line field to NULL.
4777         (getl_add_DO_REPEAT_file) New function.
4778         (handle_line_buffer) When the current line's length is negative,
4779         set the filename and line number.  Increment line number after
4780         reading line.  Pass the line to
4781         copy_with_DO_REPEAT_substitutions() for processing.
4782         (getl_close_file) Free DO REPEAT lines before freeing the
4783         filename, and just set the filename to NULL when doing this,
4784         because otherwise the filename gets freed twice.
4785
4786         * glob.c: (glob var queuing) Removed.  All references removed.
4787
4788         * lexer.c: Comment fixes.
4789         (get_token_representation) New function.
4790
4791         * repeat.c: Comment fixes.
4792         (struct repeat_entry) Replaced type and v union members with a
4793         simple string.
4794         (append_record) New function.
4795         (internal_cmd_do_repeat) Started reforming it for the new
4796         repeat_entry struct.  Properly records filename changes in the
4797         getl_line_buf.  Fixed improper use of = for ==.  Fixed sense of
4798         strncasecmp() result usage.  Uses append_record() to simplify.
4799         Properly discards END REPEAT line.  Calls getl_add_DO_REPEAT_file
4800         to add in the file.
4801
4802         (copy_with_DO_REPEAT_substitutions) Started coding.
4803
4804         [DEBUGGING] (debug_print_lines) New function.
4805
4806         * set.q: (custom_results, internal_cmd_set) s/VER_PCP40/VER_PC/;
4807
4808         * tokens.h: (macro is_id1, is_idn) New macros.
4809
4810 Sat Aug 16 10:57:41 1997  Ben Pfaff  <blp@gnu.org>
4811
4812         * cmdline.c: (static var pre_syntax_message) Changed `win'
4813         compatibility mode to `wnd'.
4814
4815         * data-list.c: (fixed_parse_spss) Renamed
4816         fixed_parse_compatible().
4817
4818         * glob.c: (init_glob) Excise unused code for
4819         program_invocation_short_name.
4820
4821         * lexer.c: (preprocess_line) Leading indentors are ignored in Wnd
4822         as well as in X.
4823
4824         * print.c: (fixed_parse_spss) Renamed fixed_parse_compatible().
4825
4826         * set.q: `win' compatibility renamed `wnd'.
4827
4828 Thu Aug 14 22:11:12 1997  Ben Pfaff  <blp@gnu.org>
4829
4830         * filename.c: [__WIN32__] Change the included Windows header files
4831         (again).
4832         (absolute_filename_p) [__MSDOS__] A filename with a colon as the
4833         second character is absolute.
4834         (dirname) Fix logic error.  Don't printf() the results.
4835         (prepend_dir) Don't printf() the results.
4836
4837         * getline.c: (handle_line_buffer) New function.
4838         (getl_read_line) Reads line with handle_line_buffer() when
4839         appropriate.
4840         (getl_close_file) Discard line buffer data.
4841
4842         * getline.h: Comment fixes.
4843         (struct getl_line_list) New struct.
4844         (getl_script_struct) Added line buffer members.  These are hooks
4845         for use by DO REPEAT to allow it to insert virtual source code
4846         into the program.
4847
4848         * glob.c: (init_glob) [__DJGPP__ || (__WIN32__ && __BORLANDC__)]
4849         Override Borland C++ stupidity that claims Windows has a console
4850         window size of 0x3.
4851
4852         * repeat.c: This is in the process of being restructured from
4853         using a token-buffering approach to the DO REPEAT facility to
4854         using the more flexible approach of a line-buffering approach in
4855         conjunction with the getline module.  Comment fixes.
4856         (struct tok_struct) Removed.
4857         (static vars queue_index, queue_head, queue) Removed.
4858         (static vars line_buf_head, line_buf_tail) New vars.
4859         (internal_cmd_do_repeat) Instead of queuing tokens, queue lines.
4860         Not complete.
4861         (pull_queue, destroy_queue) Removed.
4862         [DEBUGGING] (debug_print_tokens) Removed.
4863
4864 Tue Aug  5 13:57:58 1997  Ben Pfaff  <blp@gnu.org>
4865
4866         * file-handle.q: (prepend_current_directory) New function.
4867         (internal_cmd_file_handle, fh_get_handle_by_filename) Prepends
4868         current directory before normalizing filename.
4869
4870         * filename.c: (gnu_getcwd) New function.
4871         (absolute_filename_p) New function.
4872         (search_path) New argument, PREPEND.  All references changed to
4873         pass NULL except those explicitly mentioned.  Uses
4874         absolute_filename_p().  Prepends PREPEND before trying the
4875         filename.
4876         (dirname, prepend_dir) New functions.
4877
4878         * getline.c: (getl_get_current_directory) New function.
4879         (getl_include) Passes getl_get_current_directory() as PREPEND arg
4880         to search_path().
4881                 
4882 Sun Aug  3 11:42:36 1997  Ben Pfaff  <blp@gnu.org>
4883
4884         * In several source files, the term `script' was replaced with
4885         `syntax file' inside error messages.  Usage of the term `script'
4886         in the sense of a syntax file is now deprecated.
4887
4888         * cmdline.c: (static vars pre_syntax_message, post_syntax_message)
4889         Updated messages.
4890
4891         * dump-sysfile.c: (usage) Update message.
4892
4893         * getline.c: (getl_read_line) Ignore lines beginning with `#!'.
4894
4895         * getline.h: (glob var getl_include_path) Declare extern.
4896
4897         * list.q: Define EXTERN as extern before #including somP.h.
4898
4899         * var.h: Remove declaration of `disptype' variable.
4900
4901         * vfm.c: (close_active_file) After switching the data sink to a
4902         data source, set vfm_sink to NULL, because it doesn't exist any
4903         more.
4904
4905 Thu Jul 17 21:41:44 1997  Ben Pfaff  <blp@gnu.org>
4906
4907         * glob.c: [__BORLANDC__] Include math.h.  Define _matherr() and
4908         _matherrl() to ignore all math errors.
4909
4910         * sfm-read.c: (read_value_labels) When reading the labels from
4911         disk, read the little parts separately instead of as a struct;
4912         this avoids alignment problems.
4913
4914         * sfm-write.c: (struct sfm_fhuser_ext) New member `elem_type'.
4915         (sfm_write_dictionary) Sets elem_type and frees it on lossage.
4916         (write_header) Allocates and initializes elem_type.
4917         (sfm_write_case) Uses elem_type to determine how to handle each
4918         flt64 element.
4919         (sfm_close) Frees elem_type.
4920
4921         * sfmP.h: Comment fix.
4922         [__BORLANDC__] Uses #pragma -a to adjust structure member
4923         alignment.
4924         
4925 Thu Jul 17 01:55:12 1997  Ben Pfaff  <blp@gnu.org>
4926
4927         * Makefile.am: (fiasco_SOURCES) Remove display.c.
4928
4929         * common.c: Fix typo.
4930
4931         * dfm.c: (read_record) Remove strncasecmp() emulation and fix the
4932         sense of the condition.
4933
4934         * expr-evl.c: (macro ALLOC_STRING_SPACE) [!PAGED_STACK] Add
4935         line-continuation backslash.
4936
4937         * filename.c: [__WIN32__] Include <windef.h> before <winbase.h>.
4938
4939         * frequencies.q: (custom_grouped, add_percentile) Don't use a
4940         non-constant expression as an argument to sizeof.
4941
4942         * glob.c: [__WIN32__ && __BORLANDC__] When including <conio.h>,
4943         undefine gettext macro because that's a conio function.
4944
4945         * hash.h: (hsh_prime_tab declaration) Remove.
4946
4947         * list.q: (write_fallback_headers) Move `leader' allocation out of
4948         main loop.  Change to local_alloc() allocation.
4949
4950         * output.h: Formatting fixes.  Put __attribute__ in right place on
4951         function prototypes.
4952
4953         * sfm-read.c: (read_machine_flt64_info, read_variables) Change
4954         incorrect `SECOND_LOWEST_VALUE' references to proper
4955         `second_lowest_value'.
4956
4957         * som-frnt.c: (EXTERN macro) Define as `extern' instead of null
4958         value.  This way 2 out of 3 of the som files define the vars
4959         extern, the correct way, that actually works under BC++.
4960         (som_set_float) Don't use nonconstant initializers for a struct.
4961
4962         * som-high.c: Add the standard alloca() header.
4963         (replicate_table) Add prototype.
4964
4965         Merged DISPLAY routine.
4966         * sysfile-info.c: (AS_*) New enum series.
4967         (cmd_sysfile_info) Gutted.  Calls describe_variable() to do the
4968         dirty work.
4969         (cmd_display, display_macros, display_documents,
4970         display_variables) Stolen from defunct display.c.
4971         (describe_variable) New function.
4972
4973         * temporary.c: [0] (display_tree) New debug function.
4974         (copy_variable) Performs shallow copy of value labels instead of
4975         deep copy; i.e., just copys the AVL tree and increments the
4976         reference counts.
4977
4978         * val-labs.c: Comment fixes.
4979         (do_value_labels) Optionally skip leading forward slash.
4980         (get_label) Creates only a single value label instead of many
4981         copies of one, and sets the reference count.
4982
4983         * display.c: Removed.
4984
4985         * dump-sysfile.c: New file, not yet complete.
4986
4987 Fri Jul 11 23:02:18 1997  Ben Pfaff  <blp@gnu.org>
4988
4989         For lots of source files I added more verbose_msg's.  These aren't
4990         listed below as they have tested as being benign.  In some cases
4991         these replaced debug_printf() calls.
4992
4993         * output.c: (outp_read_devices) Message fix.
4994
4995         * postscript.c: (output_encodings) Message fix.  Reports errors on
4996         fclose().
4997         (postopen) Message fix.
4998         
4999 Fri Jul 11 14:09:40 1997  Ben Pfaff  <blp@gnu.org>
5000
5001         * dfm.c: (dfm_close) Don't call fclose() for a NULL FILE.
5002
5003         * filename.c: (close_file_ext) Set f->file to NULL *after* closing
5004         it.
5005
5006         * main.c: Remove <malloc.h> #include.
5007
5008         * mis-val.c: (parse_numeric) Set .f member for each missing[]
5009         instead of trying to just set the missing[] itself, which is a
5010         gcc-specific idiom.
5011
5012         * sfm-read.c: (read_variables) Same.
5013
5014         * str.h: Add memmem() prototype.
5015
5016         * val-labs.c, var-labs.c: Replace <malloc.h> with <stdlib.h>.
5017
5018 Thu Jul 10 22:13:53 1997  Ben Pfaff  <blp@gnu.org>
5019
5020         * Makefile.am: (q2c) Don't include any libraries in the link.
5021
5022         * dfm.c: (force_line_buffer_extension) New macro.
5023         (count_tabs) New function.
5024         (tabs_To_spaces) New function.
5025         (read_record) Calls tabs_to_spaces() on the line being processed.
5026
5027         * q2c.c: Disabled i18n for this proglet so that libintl.a doesn't
5028         have to be compiled twice (once for CC, once for LOCAL_CC).
5029  
5030 Sun Jul  6 19:14:33 1997  Ben Pfaff  <blp@gnu.org>
5031
5032         * Makefile.am: (INCLUDES) Add intl directory; fix directories.
5033         (LDADD) Add @INTLLIBS@.
5034         (q2c) Add LIBS, @INTLLIBS@ to link step.
5035
5036         * inpt-pgm.c: Turn off debugging.
5037
5038         * postscript.c: (postopen) Format fix.  local_free() blocks
5039         returned by local_alloc(); don't free() them.
5040
5041 Sat Jul  5 23:44:51 1997  Ben Pfaff  <blp@gnu.org>
5042
5043         * data-in.c: (parse_string_as_format) Comment fix.  Fix check for
5044         string length.
5045
5046         * data-list.c: (read_from_data_list_fixed) Pass proper value for
5047         LEN arg, not simply the full string length.
5048
5049         * sort.c: (allocate_file_handles) Check SPSS compatible temp file
5050         directories before generic temp file directories.
5051
5052         * vfm.c: Disable debugging.
5053
5054 Fri Jul  4 13:26:41 1997  Ben Pfaff  <blp@gnu.org>
5055
5056         * get.c: Comment fix.
5057         (cmd_save_internal) Always passes GTSV_OPT_SAVE option.
5058
5059 Wed Jun 25 22:52:28 1997  Ben Pfaff  <blp@gnu.org>
5060
5061         * expr-prs.c: (debug_print_postfix) Conditionally included on
5062         GLOBAL_DEBUGGING.  Removed out_header() reference.
5063
5064         * exprP.h: Removed #undef GLOBAL_DEBUGGING.
5065
5066 Sun Jun 22 22:00:28 1997  Ben Pfaff  <blp@gnu.org>
5067
5068         * ascii.c: Removed obsolete ascii_close_page() prototype.
5069
5070         * command.c: (output_line) Comment fix.
5071
5072         * data-in.c: Formatting fix.
5073         (parse_string_as_format) Now the `fc' argument is used only for
5074         the purpose of error messages; it is not an index into the string
5075         passed.  All references changed.
5076
5077         * data-list.c: Comment fix.
5078         (cut_field) Comment fix.  Now returns the column number of the
5079         position of the field cut out on success.
5080         (parse_field) Added `column' argument.  Puts the column numbers in
5081         the error message.
5082         (read_from_data_list_free, read_from_data_list_list) Record the
5083         column number returned by cut_field(), pass it to parse_field().
5084
5085         * dfm.c: Comment fix.
5086
5087         * do-ifP.h: Comment fix.
5088
5089         * expr-prs.c: (SYSMIS_func) Implemented string-type arguments for
5090         the SYSMIS function.
5091
5092         * expr.h, exprP.h: Comment fix.
5093
5094         * glob.c: (init_glob) Only calls setlocale() and family if
5095         ENABLE_NLS set.
5096
5097         * hash.h: Comment fix.
5098
5099         * include.c: Comment fix.
5100
5101         * output.c: Comment fix.
5102
5103         * postscript.c: (ps_line_intersection) Simplified assertion.
5104
5105         * repeat.c: Comment fix.
5106
5107         * vars-atr.c: Comment fix.
5108
5109         * vars-prs.c: Comment fix.
5110
5111         * vfm.c: (vector_initialization) [DEBUGGING] Fixed undefined
5112         behavior with usage of postincrement.
5113         (memory_stream_read) Discards cases as it goes. 
5114
5115 Sun Jun 15 16:45:17 1997  Ben Pfaff  <blp@gnu.org>
5116
5117         * Makefile.am: Cleans q2c, not just distcleans it.  Distcleans
5118         foo.
5119
5120         * Most source files: Includes debug-print.h, related comment
5121         fixes.
5122
5123         * cases.c: (alloc_val) Removed complex allocation code.  Merely
5124         increments default_dict.nval and returns the former value.
5125         (envector, devector) Removed references to lv member of struct
5126         variable.
5127
5128         * common.h: (macro VME) Replaced complex definition with simple
5129         one.
5130
5131         * data-list.c: (cmd_data_list) Sets vfm_source instead of
5132         read_active_file and cancel_input_pgm.
5133         (read_from_data_list, cancel_data_list) Removed.
5134         (data_list_source_read, data_list_source_destroy_source) New
5135         functions.
5136         (glob var data_list_source) New var.
5137
5138         * dfm.c: (open_file_r, open_file_w) Simplified debug output.
5139         (cmd_begin_data) Improved criteria for an input program accessing
5140         the inline file.  Still not perfect.
5141
5142         * do-if.c: (do_if_trns_proc) Simplified debug output.
5143
5144         * expr-prs.c: Comment fixes.
5145         [DEBUGGING] (debug_print_postfix) Simplified debug output.
5146
5147         * file-handle.q: (fh_close_handle) Simplified debug output.
5148
5149         * file-type.c: Comment fixes.
5150         (cmd_file_type) Sets vfm_source instead of read_active_file and
5151         cancel_input_pgm.
5152         (cmd_end_file_type) On failure, discards variables in place of
5153         just canceling the input program.
5154         (read_from_file_type) Renamed file_type_source_read.
5155         (cancel_file_type) Renamed file_type_source_destroy_source.
5156         (glob var file_type_source) New var.
5157
5158         * get.c: (GTSV_* enum series) New enums GTSV_OPT_SAVE, GTSV_NONE.
5159         (cmd_get) Initializes options to GTSV_NONE before passing to
5160         trim_dictionary().  Removed `lv' reference.  Sets vfm_source
5161         instead of read_active_file and cancel_input_pgm.
5162         (cmd_save_internal) Initializes options before passing to
5163         trim_dictionary().  Local var `nval' removed.
5164         (dict_delete_run) Comment fixes.
5165         (trim_dictionary) Comment fixes.  Disallows scratch variables if
5166         GTSV_OPT_SAVE set in options.
5167         (read_from_get) Renamed get_source_read.
5168         (cancel_get) Renamed get_source_destroy_source.
5169         (glob var get_source) New var.
5170
5171         * inpt-pgm.c: (cmd_input_program) Sets vfm_source instead of
5172         read_active_file and cancel_input_pgm.
5173         (read_from_input_program) Renamed input_program_source_read.
5174         Simplified debug output.
5175         (cancel_input_program) Renamed
5176         input_program_source_destroy_source.
5177         (glob var input_program_source) New var.
5178
5179         * loop.c: (loop_1_trns_proc) Simplified debug output.
5180
5181         * main.c: (dump_token) Made eof output more explicit.
5182
5183         * sfm-read.c: (read_variables, dump_dictionary) Removed `lv'
5184         references.
5185
5186         * sort.c: (cmd_sort_cases) Disallows scratch variables.  Removed
5187         code for always-memory or always-disk cases.  malloc's case-list
5188         based on vfm_source_info.ncases.  Explicit support for
5189         memory_stream via memory_source_cases.
5190         (do_external_sort) Sets vfm_source instead of read_active_file and
5191         cancel_input_pgm.
5192         (allocate_file_handles) The temporary directory permissions are
5193         set to 0700 instead of 0777.
5194         (allocate_cases) Formatting fixes.  Simplified debug output.
5195         (output_record) Compacts the case if necessary before writing it
5196         out.
5197         (close_handle, open_handle_w) Simplified debug output.
5198         (write_initial_runs) Destroys vfm_sink, then sets it to
5199         sort_stream.  Writes records to memory based on
5200         vfm_sink_info.case_size.
5201         (write_to_sort_cases) Renamed sort_stream_write().
5202         (merge) Simplified error handling.  Simplified debug output.
5203         Formatting fixes.
5204         (read_from_external_sort) Renamed sort_stream_read().
5205         Reads records based on vfm_source_info.case_size.
5206         (sort_stream_write) Writes records to memory based on
5207         vfm_sink_info.case_size.
5208         (sort_stream_mode) New function.
5209         (glob var sort_stream) New variable.
5210
5211         * temporary.c: (cmd_temporary) Simplified debug output.
5212         (copy_variable) Removed references to `lv'.
5213
5214         * title.c: (get_title) Simplified debug output.
5215
5216         * var.h: Comment fixes.
5217         (struct get_proc) Removed member `lv'.
5218         (struct variable) Removed member `lv'.  Comment fixes.
5219         (glob vars read_active_file, write_active_file, cancel_input_pgm)
5220         Removed.
5221         (struct case_stream) New.
5222
5223         * vars-atr.c: (discard_variables) Changed cancel_input_pgm,
5224         read_active_file references to use vfm_source.
5225         (init_variable, replace_variable) Removed references to `lv'.
5226
5227         * vfm.c: Comment fixes.
5228         (glob var vfm_source, vfm_sink, vfm_source_info, vfm_sink_info)
5229         New variables.
5230         (static var queue, qh, qt, n_lag) Removed.  All references
5231         removed.
5232         (glob var compaction_necessary, compaction_nval, compaction_case,
5233         paging) New variables.
5234         (record_case) Removed.
5235         (procedure) Comment fixes.  Calls vfm_source->read() instead of
5236         read_active_file().
5237         (lag) Removed.
5238         (prepare_for_writing, arrange_compaction, make_temp_case,
5239         vector_initialization, setup_filter) New function.
5240         (open_active_file) Most of the code moved into the abovementioned
5241         new functions.  Now sets temp_dict to &default_dict if there is no
5242         temporary dictionary, for convenience.  New debug output.
5243         (close_active_file) Deals with changing the sink to the source.
5244         Calls finish_compaction().  Frees compaction_case.  Mostly
5245         rewritten.
5246         (glob vars disk_source_file, disk_sink_file) New vars.
5247         (destroy_active_file, read_from_memory) Removed.
5248         (disk_stream_init, disk_stream_read, disk_stream_write,
5249         disk_stream_mode, disk_stream_destroy_source,
5250         disk_stream_destroy_sink) New functions.
5251         (glob var vfm_disk_stream) New var.
5252         (glob vars memory_source_cases, memory_sink_cases,
5253         memory_sink_iter, memory_sink_max_cases) New vars.
5254         (memory_stream_init, memory_stream_read, memory_stream_write,
5255         memory_stream_mode, memory_stream_destroy_source,
5256         memory_stream_destroy_sink) New functions.
5257         (glob var vfm_memory_stream) New var.
5258         (write_case) Local var `i' renamed `cur_trns'; local var `retval'
5259         named `more_cases'.  Simplified debug output.  Otherwise mostly
5260         rewritten.
5261         (record_case) Moved into the stream drivers.  Removed.
5262         (transform) Removed (was dead code).
5263         (SPLIT_FILE_procfunc) s/vfm_replacement/vfm_sink_info/.  In the
5264         common case that the splits don't change, we don't need to copy
5265         the case into prev_case again--pointless.
5266         (compact_case) New function.
5267         (finish_compaction) New function.
5268
5269         * vfmP.h: Comment fixes.
5270         (DEV_* enum series) Removed. 
5271         (struct storage) Renamed `stream_info'.  Removed variant record.
5272         Removed `device' member.
5273
5274         * debug-print.h: New file.
5275         
5276 Sun Jun  8 01:12:38 1997  Ben Pfaff  <blp@gnu.org>
5277
5278         * autorecode.c: Turned off debugging.
5279
5280         * data-list.c: (destroy_dls) Closes the associated file handle.
5281
5282         * descript.q: (custom_variables) Added PV_NO_SCRATCH to
5283         parse_variables() options.
5284
5285         * dfm.c: (open_file_r) Removed gratuituous argument to msg() call.
5286
5287         * display.c: (display_variables) Really fixed null cell bug.
5288
5289         * file-handle.q: (fh_close_handle) Changed debugging message.
5290
5291         * frequencies.q: (custom_variables) Added PV_NO_SCRATCH to
5292         parse_variables() options.
5293
5294         * list.q: Added PV_NO_SCRATCH in q2c varlist options.
5295         (cmd_list) Fails if no variables specified.
5296         (determine_layout) Writes blank lines manually.
5297
5298         * loop.c: (loop_1_trns_proc) Made debugging code only print
5299         messages if debugging.
5300
5301         * q2c.c: (dump_subcommand) Appends sbc->message to SBC_VARLIST
5302         parse_variables() arguments.
5303         (main) Parses optional parenthesized options to varlist
5304         subcommands into sbc->message.
5305
5306         * sfm-read.c: Format fix.
5307
5308         * var.h: (FV_*) New enum series.
5309         (PV_*) New enum PV_NO_SCRATCH.
5310
5311         * vars-prs.c: (find_var) Removed.
5312         (fill_all_vars) Takes FV_* enum instead of boolean third
5313         argument.  Rewritten to deal with scratch as well as system
5314         variables.
5315         (parse_variables) Error message on scratch variable if
5316         PV_NO_SCRATCH set.
5317
5318         * vfm.c: (static var virt_begin_func) New var.
5319         (procedure) Sets up virt_begin_func.
5320         (SPLIT_FILE_procfunc) For the first case, calls virt_begin_func()
5321         after dump_splits().  For succeeding groups changes, calls
5322         virt_begin_func() instead of begin_func().      
5323
5324 Fri Jun  6 22:42:23 1997  Ben Pfaff  <blp@gnu.org>
5325
5326         * count.c, data-out.c, file-handle.q, list.q, loop.c: Turned off
5327         debugging.
5328
5329         * dfm.c: Added some debugging messages, disabled by default.
5330         (open_file_r) Fixed error message.
5331         (read_record) On eof on inline_file, instead of calling
5332         fh_close_handle(), simply jump to eof label like a normal file.
5333         Message fixes.
5334
5335         * display.c: Thin lines between rows for certain kinds of
5336         listing.  Fixed `null cell' bug.
5337
5338         * error.c: (failure) Flush stdout, stderr before failing.
5339
5340         * file-handle.q: (fh_close_handle) Added debugging message.
5341
5342         * frequencies.q: (dump_full) Bottom line extends across entire
5343         table width.  Changed title formatting.
5344         (dump_condensed) Changed title formatting.
5345         (dump_statistics) Fixed title formatting.
5346
5347         * glob.c: (init_glob) Moved initialization of cur_proc out of #if.
5348         Sets default value of set_format.
5349
5350         * list.q: (cmd_list) Calls blank_line() before determine_layout().
5351         Passes write_all_headers() to procedure() as pre-group func.
5352         (write_all_headers) New function.
5353         (determine_layout) Removed calls to write_header().
5354         Calls blank_line() before and after write_fallback_headers().
5355
5356         * recode.c: (recode_trns_free) Only attempts to free head->map if
5357         non-NULL.
5358
5359         * sfm-read.c: (read_variables) Allows `#' at beginning of system
5360         file variable names but gives a warning.  Sets `left' based on
5361         first character being/not being `#'.  On lossage frees dict->var.
5362
5363         * som-high.c: (som_draw_title) Simplified title formatting.
5364
5365         * vfm.c: (dump_splits) Fixed and changed splits formatting.
5366
5367 Thu Jun  5 22:51:15 1997  Ben Pfaff  <blp@gnu.org>
5368
5369         * autorecode.c: (cmd_autorecode) Sets h_trans to NULL at
5370         beginning.  Frees v_src, v_dest on successful exit.  Frees
5371         h_trans[*], h_trans on lossage.
5372         (recode) Frees h_trans[*], h_trans.
5373
5374         * dfm.c: (dfm_close) Formatting change.
5375         (open_inline_file) Now passed a dfm_fhuser_ext to initialize; no
5376         longer allocates its own in inline_file.
5377         (open_file_r) Passes the local dfm_fhuser_ext to
5378         open_inline_file().
5379         (open_file_w) Message fix. 
5380         (read_record) Buffer reallocation strategy changed.  Frees
5381         ext->line even in inline_file to prevent leaks.
5382         (dfm_put_record) Fixed bug where `ext' was cached before the file
5383         was opened and thus it would be NULL when the file really was
5384         open.
5385         (cmd_begin_data) Sets up inline_file basics itself, then calls
5386         open_inline_file() for the dfm_fhuser_ext.  Formatting fix.
5387
5388         * list.q: (write_line) Formatting fix.
5389         (clean_up) Minor strategy change.  Sets proportional font after
5390         finishing cleanup.
5391         (determine_layout) Sets fixed font before writing regular headers,
5392         or after writing fallback headers.
5393
5394         * modify-vars.c: (cmd_modify_vars) Frees variable lists for DROP
5395         and KEEP vars after using them.
5396
5397         * postscript.c: (ps_init_driver) Frees x->family.
5398         (postopen) When loading fonts, free the temporary font name buffer
5399         after using it.
5400         (ps_text_set_font_by_position) Free temporary font name buffer
5401         after using it.
5402         (text) Fixed code that calculated `lig' so that `lig' always gets
5403         initialized.  Formatting fix.
5404
5405         * som-low.c: (get_cell_size, som_get_table_size) `prop_height' ->
5406         `font_height'.
5407         [GLOBAL_DEBUGGIGN] (check_table) Use arena_alloc() to allocate
5408         cells, not xmalloc(), so that the cells will get destroyed
5409         automatically.
5410
5411         * sysfile-info.c: (cmd_sysfile_info) Frees the dictionary after
5412         using it.
5413
5414 Tue Jun  3 23:33:22 1997  Ben Pfaff  <blp@gnu.org>
5415
5416         * ascii.c: (ascii_text_draw) Always sets metrics for strings that
5417         are drawn.
5418
5419         * dfm.c: Comment fix.
5420
5421         * list.q: Comment fixes.  Include somP.h.  Removed static vars
5422         table, n_columns, n_rows, part.  New struct list_ext.  New static
5423         var line_buf.
5424         (n_lines_remaining, n_chars_width, write_line) New functions.
5425         (cmd_list, list_cases) Rewritten.
5426         (begin_row, end_row, flush_table) Removed.
5427         (write_header, clean_up, write_varname, write_fallback_headers,
5428         determine_layout) New functions.
5429
5430         * output.c: (outp_iterate_enabled_drivers) Minor reformat.
5431
5432         * output.h: Comment fix.
5433
5434         * postscript.c: Comment fix.
5435         (struct ps_driver_ext) Removed prop_size, fixed_size members;
5436         added font_size.  All references changed.
5437         (ps_init_driver) Initializes font_size.  Simplified space checking
5438         code.
5439         (static var option_tab[]) Removed prop-size, fixed-size; added
5440         font-size.
5441         (ps_option) Handles font_size.
5442
5443         * som-high.c: Moved prototypes into somP.h.
5444         (som_init_driver) New function.
5445         (som_submit_table) Moved some code into new function
5446         som_init_driver().
5447         (build_target) Moved some code into new function
5448         som_internal_eject_page().
5449         (som_eject_page) Uses som_internal_eject_page().
5450         (som_internal_eject_page) New function.
5451
5452         * som-low.c: Moved prototypes into somP.h.
5453
5454         * som.h: Formatting fixes.
5455
5456         * somP.h: (struct som_driver_ext) Removed em_width;
5457         added prop_em_width, fixed_width.
5458
5459 Mon Jun  2 14:25:25 1997  Ben Pfaff  <blp@gnu.org>
5460
5461         * Makefile.am: Added `localedir' definition.  Added
5462         -DLOCALEDIR="..." to DEFS.  Added -I. to INCLUDES.
5463
5464         * ascii.c: (macro draw_line) Fixed capitalization.
5465
5466         * ascii.c, autorecode.c, cases.c, cmdline.c, command.c, common.c,
5467         compute.c, count.c, data-in.c, data-list.c, data-out.c,
5468         descript.q, dfm.c, display.c, do-if.c, error.c, expr-evl.c,
5469         expr-opt.c, expr-prs.c, file-handle.q, file-type.c, filename.c,
5470         formats.c, frequencies.q, get.c, getline.c, glob.c, groff-font.c,
5471         hash.c, heap.c, include.c, inpt-pgm.c, lexer.c, list.q, loop.c,
5472         main.c, mis-val.c, misc.c, modify-vars.c, numeric.c, output.c,
5473         postscript.c, print.c, q2c.c, recode.c, rename-vars.c, repeat.c,
5474         sample.c, sel-if.c, sfm-read.c, sfm-write.c, sfmP.h, som-frnt.c,
5475         som-high.c, som-low.c, sort.c, split-file.c, sysfile-info.c,
5476         temporary.c, title.c, tokens.h, val-labs.c, var-labs.c,
5477         vars-atr.c, vars-prs.c, vector.c, vfm.c, weight.c: Marked strings
5478         for internationlization.
5479
5480         * glob.c: [HAVE_LOCALE_H] Includes locale.h.
5481
5482 Sun Jun  1 23:31:18 1997  Ben Pfaff  <blp@gnu.org>
5483
5484         * do-if.c, sort.c, val-labs.c: Comment fixes.
5485
5486         * glob.c: (init_glob) Uncommented, updated i18n support.
5487         
5488         * arena.c, ascii.c, data-in.c, descript.q, error.c, expr-evl.c,
5489         expr-opt.c, expr-prs.c, filename.c, frequencies.q, groff-font.c,
5490         output.c, postscript.c, sfm-read.c, som-high.c, vars-prs.c: Made
5491         the declarations of macros taking arguments a lot nicer.
5492
5493 Sun Jun  1 17:22:04 1997  Ben Pfaff  <blp@gnu.org>
5494
5495         * error.h: Removed CE, CW aliases for SE, SW.
5496
5497         * q2c.c: Removed explicit streq() definition since it's duplicated
5498         in str.h.
5499         
5500         * approx.h, error.h, font.h, hash.h, misc.h, output.h, somP.h,
5501         stats.h, str.h, tokens.h: Made the declarations of macros taking
5502         arguments a lot nicer-looking of <pinard@iro.umontreal.ca>.
5503         Comment fixes.
5504
5505 Sun Jun  1 12:02:06 1997  Ben Pfaff  <blp@gnu.org>
5506
5507         * cmdline.c: Comment fixes.
5508         (pick_compat) Changed return type to int.  Now, instead of setting
5509         glob var `compat' to the emulation, returns the emulation.  All
5510         references changed.
5511         (parse_command_line) Added terminating null to end of
5512         `long_options' array definition.
5513         (pre_syntax_message) Fixes.
5514         (usage) Shows the default emulation in the syntax message by
5515         calling pick_compat().
5516
5517         * getline.c: (getl_add_include_dir) Separates paths with
5518         PATH_DELIMITER, not DIR_SEPARATOR.
5519
5520         * glob.c: (init_glob) Fixed references to DEFAULT_VER_PCP40,
5521         DEFAULT_VER_WIN61, DEFAULT_VER_X40.
5522
5523         * output.c: (outp_configure_macro) Make earlier definitions for a
5524         particular key override later ones for the same key.
5525         
5526 Fri May 30 19:40:49 1997  Ben Pfaff  <blp@gnu.org>
5527
5528         * ascii.c: Comment fixes.
5529
5530         * output.c: (outp_get_paper_size)
5531         s/STAT_OUTPUT_INIT_FILE/STAT_OUTPUT_PAPERSIZE_FILE/.
5532         
5533 Sun May 25 22:34:07 1997  Ben Pfaff  <blp@gnu.org>
5534
5535         * ascii.c, postscript.c, sfm-read.c, sfm-write.c, sort.c: Include
5536         <errno.h>.  GNU libc 2 enforces this!
5537
5538         * command.c: (parse_cmd) Fixed problem with `else' clause being
5539         paired with wrong `if'.  Comment fix.
5540
5541 Fri May  9 16:53:52 1997  Ben Pfaff  <blp@gnu.org>
5542
5543         * getline.c: [!HAVE_LIBREADLINE] (read_console) Changed
5544         blp_getline() to getline().
5545
5546         * output.c: (outp_eval_dimension) Changed the fix from last time;
5547         there was no variable `a'.
5548
5549         * q2c.c: (get_line) Fixed boundary condition overrun bug.
5550
5551 Mon May  5 21:58:22 1997  Ben Pfaff  <blp@gnu.org>
5552
5553         * output.c: (outp_evaluate_dimension) Fixed handling of negative
5554         numbers having fractional parts.  Added case of a fraction without
5555         a whole-number part.
5556
5557 Fri May  2 22:08:05 1997  Ben Pfaff  <blp@gnu.org>
5558
5559         * ascii.c: (ascii_text_get_font_position) Removed.
5560
5561         * expr.h, exprP.h: Disabled debugging.
5562
5563         * groff-font.c, postscript.c: Changed `groff' to `Groff' in
5564         several places.
5565
5566         * output.h: (struct outp_class_struct) Removed
5567         text_get_font_position method.  All references deleted.
5568
5569         * postscript.c: Big change here.  Fontmaps were completely
5570         eliminated because of a change in philosophy.  Comment fixes.
5571         (struct ps_fontmap, ps2dit_map, font_family, dit2family_map)
5572         Removed.
5573         (struct ps_driver_ext) `position', `fontmap', `prop_name',
5574         `fixed_name' members removed.  New members `prop_family',
5575         `fixed_family'.  `family' member changed to type char *.
5576         (static var ps_fontmaps) Removed.
5577         () Removed.
5578         (ps_init_driver) Removed obsolete references, updated.
5579         Initializes `translate_x', `translate_y', `scale'.  Doesn't read
5580         fontmap, of course.  Refers to font names through internal_name
5581         rather than subversive means.  Frees proper items.
5582         (static var option_tab[]) Removed `fontmap-file' option; renamed
5583         `fixed-font', `prop-font'.
5584         (ps_option) Corresponds to option_tab[].
5585         (read_fontmap, release_fontmap, ps_to_dit, compare_ps2dit,
5586         hash_ps2dit, compare_dit2family, hash_dit2family, compare_family,
5587         hash_family) Removed.
5588         (postopen) Generates font names from family names.  Gets
5589         PostScript font name properly.  New prologue file comment `!!!'
5590         style.
5591         (ps_open_page) Adds translate_x, translate_y to BP prologue
5592         function; gives SF argument floating-point format.
5593         (ps_text_set_font_by_name) Doesn't try to map PostScript->Groff
5594         font name.  Doesn't change font family.
5595         (ps_text_set_font_by_position) Generates Groff font name from font
5596         family name instead of through table lookup.
5597         (ps_text_set_font_by_family) Renamed `ps_text_set_font_family',
5598         all references changed.  Reduced to simple string assignment.
5599         (ps_get_font_name) Removed.
5600         (ps_get_font_family) Reduced to string return.
5601         (text) Doesn't save `position' since it no longer exists.  Ugly
5602         kluge to save font family--fix soon?
5603         (load_font) Removed PostScript name argument.
5604         
5605 Thu May  1 14:58:59 1997  Ben Pfaff  <blp@gnu.org>
5606
5607         * postscript.c: Comment fix.
5608         (ps_open_page) Puts scale factor in PostScript output.
5609         
5610 Sat Apr 26 11:49:32 1997  Ben Pfaff  <blp@gnu.org>
5611
5612         * Makefile.am: Distcleans q2c.
5613
5614 Wed Apr 23 21:33:48 1997  Ben Pfaff  <blp@gnu.org>
5615
5616         * ascii.c: (delineate) Sets text size even if width is zero.
5617
5618         * command.c: Comment fix.
5619         (static var cmd_table[]) Re-enabled EVALUATE command.
5620         (parse_cmd) Lotsa comment fixes.  Fixed infinite loop in parsing
5621         of comments in script files.  Now more liberal on criteria for
5622         performing a state transition--if *anything* happened correctly,
5623         not just if *everything* happened correctly.
5624
5625         * data-out.c: (convert_F) Comment fix.  Why in the fsck does
5626         Checker segfault on formatting large numbers and why in the fsck
5627         hadn't I noticed this before?
5628
5629         * expr.h, exprP.h: No longer turn off GLOBAL_DEBUGGING.
5630
5631         * list.q: (cmd_list) Commented out the actual output routine
5632         because of various problems.  Probably will abandon the idea of
5633         using the general `crushed tables' for the LIST procedure.
5634
5635         * temporary.c: (restore_dictionary) Sets var_by_name to NULL after
5636         clearing it.  Allocates a new var_by_name dictionary before trying
5637         to add members to it.
5638
5639         * vars-atr.c: [DEBUGGING] (dump_one_var_node) Removed argument
5640         `sib'.  Changed type of `node' argument.
5641         [DEBUGGING] (dump_var_tree) Replaced avlwalk() with
5642         avl_walk_inorder().
5643         (clear_variable) Only dumps the var tree if var_by_name non-NULL.
5644         [DEBUGGING] Only deletes the variable from var_by_name if that var
5645         non-NULL.
5646
5647 Fri Apr 18 16:48:41 1997  Ben Pfaff  <blp@gnu.org>
5648
5649         * Makefile.am: Added include files to SOURCES.  Added
5650         frequencies.q to EXTRA_DIST.  Removed include/ from INCLUDES.  Now
5651         includes rules for q2c.  Added `boast' target.
5652
5653 Fri Apr 18 15:42:22 1997  Ben Pfaff  <blp@gnu.org>
5654
5655         * Makefile.am: Maintainer-clean Makefile.in.
5656         
5657         * Makefile.am: Fixed redundant EXTRA_DIST line.
5658
5659         * ascii.c: Comment fixes.
5660         (ascii_line_vert) Fixed overly aggressive range check.
5661
5662         * display.c: Removed dead code.
5663
5664         * list.q: Turn debugging on.
5665         (flush_table) New debug code.
5666
5667         * sfm-read.c: (read_value_labels) malloc's the structure before
5668         trying to assign to its members.
5669
5670         * sfm-write.c: Comment fix.
5671
5672         * som-high.c: (som_submit_table) Sets som.t and som.d on each call
5673         to output_table().
5674         (output_table) No arguments anymore--gets them through `som'
5675         global.  New debug code.  In crushed tables, now sets `htv' as
5676         well as `hv' to avoid bad confusion later.
5677         (dump_crush_page) New debug code.
5678
5679         * som-low.c: (som_dump_crush_page) New debug code.
5680
5681 Thu Mar 27 01:11:29 1997  Ben Pfaff  <blp@gnu.org>
5682
5683         All source files: Broke long lines into multiple lines.
5684         
5685         * ascii.c: (ascii_close_page) Uses host_system var in place of
5686         HOST_SYSTEM constant.
5687
5688         * cmdline.c: (var syntax_message[]) Broke into
5689         pre_syntax_message[] and post_syntax_message[].
5690         (usage) Outputs both parts, separated by driver list.
5691
5692         * error.h: Fixed broken formatting.
5693
5694         * expr-opt.c: (str_search, str_rsearch) New functions.
5695
5696         * misc.c: (blp_getdelim) Removed.  All references changed to
5697         `getdelim'.
5698         (str_search, str_rsearch) Removed.
5699         (memrmem) New function.
5700
5701         * misc.h: (blp_getline) Removed.  All reference changed to
5702         `getline'.
5703
5704         * stat.h: New file.
5705
5706         * filename.c: Includes "stat.h", not <sys/stat.h>.
5707         (blp_getenv) Uses host_system var instead of HOST_SYSTEM constant.
5708
5709         * output.c: (outp_list_classes) Changed output formatting.
5710
5711         * sfm-write.c: (write_header) Uses host_system var instead of
5712         HOST_SYSTEM constant.
5713         (write_rec_7_34) Extracts version numbers from the version string.
5714         Untested.
5715
5716         * sort.c: Includes "stat.h", not <sys/stat.h>.
5717
5718         * str.c: (strcasecmp) Removed.
5719
5720         * title.c: (cmd_document) Uses host_system var instead of
5721         HOST_SYSTEM constant.
5722
5723         * version.c: Generated on-the-fly by the Makefile instead of being
5724         static.
5725
5726         * str.h: Comment fixes.  Doesn't substitute for missing memmove or
5727         memcpy.
5728         [!HAVE_STRNCASECMP] Declares strncasecmp().
5729
5730         * version.h: Removed stray character.  Comment fixes.
5731         (vars host_system, build_system) New vars.
5732
5733 Mon Mar 24 21:47:31 1997  Ben Pfaff  <blp@gnu.org>
5734
5735         * Most source files: Changed formatting of copyright notice; fixed
5736         FSF address; reformatted to better conform to GNU standards;
5737         comment fixes.  Added markups to prevent GNU indent from messing
5738         up my beautiful formatting :-).
5739         
5740         * q2c.c: (get_line) Ignores lines that begin with `/* *INDENT' so
5741         that GNU indent markups can be passed through without problems.
5742
5743 Wed Feb 19 21:30:31 1997  Ben Pfaff  <blp@gnu.org>
5744
5745         * get.c: Turned off debugging.
5746
5747         * glob.c: (init_glob) Turned on save-file compression by default.
5748
5749         * sfm-write.c: (sfm_write_case) Fixed bug which resulted in less
5750         compression than was possible in save files.
5751
5752 Sun Feb 16 20:57:20 1997  Ben Pfaff  <blp@gnu.org>
5753
5754         * data-out.c: (convert_F) Comment fixes.  Debug message fixes.
5755
5756         * frequencies.q: Removed Fiasco extensions.  Updated calculation
5757         algorithms.  Polished output format. 
5758         (struct frq_info_struct) Removed members `max_degree', `min_n',
5759         all references removed.
5760         (macro frq_extensions) Removed.
5761         (static vars min_n, max_degree) Removed, all references removed.
5762         (internal_cmd_frequencies) Doesn't handle extensions.  Doesn't
5763         calculate `min_n', `max_degree'.
5764         (postcalc) Passes new arg to dump_statistics().
5765         (dump_full) Honor NOLABEL option.  Buggy?  Adds variable name
5766         title.
5767         (dump_condensed) Adds variable name title.
5768         (sum_freqs) Removed.
5769         (calc_stats) Updated calculation algorithm.
5770         (dump_statistics) Removed warning for too-few observations.
5771         Changed table formatting.  Adds variable name title if passed new
5772         arg is nonzero.
5773
5774         * output.h: Comment fix.
5775
5776         * recode.c, sample.c, sort.c: Disabled debug code.
5777
5778         * som-frnt.c: (som_set_value, som_set_float, som_set_text)
5779         Improved debug code.
5780
5781         * var.h: (enum series frq_*) Removed Fiasco extensions.
5782
5783 Sat Feb 15 21:26:53 1997  Ben Pfaff  <blp@gnu.org>
5784
5785         * command.c: Added PROCESS IF to command table.
5786
5787         * Lots & lots of places, removed checks for NULLs preceding calls
5788         to free_expression(), which itself checks.
5789
5790         * descript.q: Removed Fiasco extensions.  Removed optimizations
5791         for non-weighted active files.  Implemented some options.
5792         Finished polishing output format.  Comment fixes.  Merged
5793         `descript.g'.
5794         (static vars n_glob_miss_list, n_glob_valid, n_glob_missing,
5795         max_degree, min_n) Removed.
5796         (macro dsc_extensions) Removed.
5797         (struct dsc_info_struct) Removed `min_n' member, all references
5798         fixed.
5799         (internal_cmd_descriptives) Removed calculation of min_n,
5800         max_degree.  Only deals with one `calc' routine instead of two
5801         flavors.
5802         (precalc) Eliminated redundancy.  Updated for changes to
5803         descriptives_proc structure.
5804         (calc) Moved here from `descript.g'.  Rewritten to calculate
5805         statistics via `moments about the mean' rather than by summing,
5806         summing squares, summing cubes, and so on.
5807         (postcalc) Rewritten for new-style statistical calculation.
5808         (display) Removed support for displaying variables across rows.
5809         No longer crushes the descriptives table.  Removed ancient code.
5810         Added display of N, by variable and listwise.
5811
5812         * descript.g: Removed; merged into `descript.q'.
5813
5814         * expr-evl.c: (evaluate_expression) Now returns a double.  For
5815         numeric results, it returns the result as well as storing it in
5816         the passed `value' structure if non-NULL.  For string results it
5817         just returns 0.0 and it must be passed non-NULL.  Many references
5818         to this function were optimized by use of this change, especially
5819         but not exclusively in `compute.c'.
5820
5821         * frequencies.g: Comment fix.
5822
5823         * glob.c: (glob var process_if_expr) New global var.
5824
5825         * postscript.c: (static var option_tab[]) Corrected entry for
5826         `fixed_size'.
5827         (postopen) Sets x->size to x->prop_size.
5828         (ps_text_set_font_by_name) Sets font size as well as typeface for
5829         PROP and FIXED fonts.
5830         
5831         * sel-if.c: (cmd_process_if) New function.
5832
5833         * sfm-write.c: (struct sfm_fhuser_ext) New member `n_cases'.
5834         (sfm_write_dictionary) Sets `n_cases' to 0.
5835         (sfm_write_case) Increments `n_cases'.
5836         (sfm_close) Attempts to seek the system file back to the header
5837         and write the number of cases in its proper slot.
5838
5839         * som-frnt.c: (som_insert_table) Masks off expansion options since
5840         only SOPT_X_NORM seems to work sensibly.
5841
5842         * som-low.c: (get_cell_size) Fixed bug when a table cell was sized
5843         with a `fixed' value of 2.
5844
5845         * sort.c: (cmd_sort_cases) Cancels PROCESS IF.
5846
5847         * sysfile-info.c: (cmd_sysfile_info) Doesn't display more than 10
5848         value labels; uses SOPT_NONE instead of SOPT_X_BOTH.
5849
5850         * var.h: (enum series dsc_*) Removed Fiasco extensions.
5851         (struct descriptives_proc) Removed `miss_noweight'; new members
5852         `X_bar', `M2', `M3', `M4', `min', `max'.
5853
5854         * vars-atr.c: (discard_variables) Cancels PROCESS IF.
5855
5856         * vfm.c: (close_active_file) Cancels PROCESS IF.
5857         (write_case) Doesn't process cases unselected by PROCESS IF.
5858
5859 Fri Feb 14 23:32:58 1997  Ben Pfaff  <blp@gnu.org>
5860
5861         * glob.c: (glob var err) Removed.
5862
5863         * sysfile-info.c: (cmd_sysfile_info) When adjusting table size,
5864         doesn't have to take into account number of value labels since
5865         they're in a subtable anyway.  Also, doesn't display more than 10
5866         value labels since we can't yet break pages in subtables.
5867
5868 Tue Feb  4 15:15:50 1997  Ben Pfaff  <blp@gnu.org>
5869
5870         * som-frnt.c: (som_change_table_size) Simple change for elegance
5871         that shouldn't change behavior.
5872         (som_set_value) Comment fix.
5873
5874         * som-high.c: (som_submit_table) Message fix.
5875
5876 Wed Jan 22 21:54:00 1997  Ben Pfaff  <blp@gnu.org>
5877
5878         * command.c: Added SYSFILE INFO to command table.
5879
5880         * file-handle.q: (fh_handle_filename) New function.
5881
5882         * get.c: (save_trns_proc) Fixed a bug in padding of output data
5883         with spaces.
5884
5885         * main.c: (parse) New return value for command functions, -3.
5886
5887         * misc.h: Comment fix.
5888
5889         * output.h: Comment fixes.
5890         (macro COMPONENTS) Removed.
5891
5892         * postscript.c: (write_text) Modified literal_chars[] so that `('
5893         and ')' are not written to the output in strings as literals.
5894
5895         * sfm-read.c: (sfm_read_dictionary) New argument.
5896         (read_header) New argument.  Sets the information structure's
5897         values from the header information.  
5898         (read_variables) [__CHECKER__] Redefines isalnum()--some sort of
5899         bizarre Checker problem, I guess.
5900         (read_variables) Proper cleanup on lossage.
5901
5902         * sfm.h: (struct sfm_read_info) New struct for use by
5903         sfm_read_dictionary().
5904
5905         * som-frnt.c: (som_create_table) New argument CREATE_FLAGS,
5906         currently used just for tables that can be dynamically resized and
5907         thus have to be allocated with arena_malloc() instead of
5908         arena_alloc().  All references changed.
5909         (som_change_table_size) New function.
5910         (som_insert_table) Bugfix: now inserts `cell', not `c'!
5911
5912         * som-high.c: [GLOBAL_DEBUGGING] (check_table) Moved to som-low.c.
5913         (som_submit_table) [GLOBAL_DEBUGGING] Doesn't call check_table()
5914         any more.
5915
5916         * som-low.c: (draw_cell) Calls draw_table_cell() for SCON_TABLE
5917         cells.
5918         (draw_intersection) Now takes an argument specifying the table in
5919         question.  All references changed.
5920         (draw_table_cell) New function.
5921         (som_get_table_size) [GLOBAL_DEBUGGING] Calls check_table().
5922         (som_get_table_size) Many nice new explanatory comments.
5923         [GLOBAL_DEBUGGING] (check_table) Moved here from som-high.c.
5924
5925         * som.h: New enum series SOM_CREATE_* for use as create flags with
5926         som_create_table().
5927
5928         * str.h: Moved a comment here from TODO.
5929
5930         * sysfile-info.c: New file.  Reference implementation.
5931
5932 Sun Jan 19 14:22:11 1997  Ben Pfaff  <blp@gnu.org>
5933
5934         * command.c: Added RENAME VARIABLES to table of commands.
5935
5936         * data-in.c: (dls_error) Sets `cust_field'.
5937         (parse_N) Message fix.
5938         (parse_day_count) New function.
5939         (to_roman) Never outputs VX as a `short form' of V.
5940         (parse_month) Fixed parsing of Roman numerals.
5941         (parse_trailer) Message fix.
5942         (parse_DATE, parse_ADATE, parse_EDATE, parse_SDATE, parse_JDATE,
5943         parse_QYR, parse_MOYR, parse_WKYR, parse_DTIME) Issue a message if
5944         the date is invalid.
5945         (parse_SDATE) Fixed swapped day, year.
5946         (parse_JDATE) Fixed bug for dates in 1582.
5947         (parse_DTIME) Allows days not between 1 and 31.
5948         (parse_numeric) Makes local copy of f.type for easier usage.
5949         FMT_DOLLAR fixed.
5950
5951         * data-out.c: (convert_F) When outputting as scientific, properly
5952         sets f.type as fp->type.
5953         (insert_commas) Fixed operator precedence problem with setting of
5954         nitems.  Changed strcpy to memcpy (no null terminator). 
5955         (convert_date) Fixed FMT_JDATE: added 1900 to year.
5956         (convert_CCx) Essentially rewritten, but now it works.
5957
5958         * display.c: (cmd_display) Added DISPLAY FILE LABEL (undocumented
5959         feature of Fiasco).
5960         (display_documents) Implemented.
5961
5962         * error.c: (glob var cust_field) New var.
5963         (vmsg) Displays cust_field as part of message classes DE and DW.
5964
5965         * formats.c: (debug_print) Fixed to compile under updated
5966         dictionary format.
5967
5968         * get.c: (cmd_get, cmd_save_internal) Close file handle on
5969         failure.
5970
5971         * misc.c: (parse_format_specifier) Formatting fix.
5972
5973         * modify-vars.c: (struct var_modification) Renamed `n_reorder' as
5974         `n_rename' for clarity.
5975         (cmd_modify_vars) Initializes `forward' and `positional' at
5976         appropriate times.  Frees lists of vars to rename on failure.
5977         Comment fix.  Frees memory on success.  
5978         (rearrange_dict) Simplified `for' loop condition.
5979
5980         * rename-vars.c: New file (reference implementation).
5981         
5982         * set.q: (internal_cmd_set) Fixed `emu' test condition.
5983
5984         * sfm-read.c: (read_header) File label is created only if file
5985         label in file is not blank.
5986         (read_variables) Initializes `dict' local variable.
5987         (read_documents) Proper behavior on lossage.
5988
5989         * sfm-write.c: (write_header) Doesn't blank out the file label
5990         (why was this here to begin with?!)
5991
5992         * temporary.c: (save_dictionary) File label is copied only if
5993         non-NULL.  Doesn't try to xstrdup() dictionary documents.
5994         Adapted so as to not irritate Checker.
5995         (free_dictionary) Only destroys var_by_name if non-NULL.
5996
5997         * title.c: (cmd_file_label) Doesn't skip FILE, LABEL tokens.
5998         (cmd_document) Doesn't skip DOCUMENT token.  Adds some header
5999         lines to the document, indents the document.  Also, it works now.
6000         (add_document_line) New function.
6001
6002         * var.h: (struct dictionary) Reordering.
6003
6004         * vars-prs.c: (parse_variables) On lossage, only local_free()'s
6005         bits if it was allocated to begin with.
6006
6007 Thu Jan 16 13:08:57 1997  Ben Pfaff  <blp@gnu.org>
6008
6009         * command.c: Added MODIFY VARS to list of commands.
6010
6011         * configure.in: Updated custom macros for autoconf 2.12.  Removed
6012         mmap reference; fixed termcap library reference.
6013
6014         * display.c: (display_variables) Fixed a few bugs although it's
6015         still not well written.
6016
6017         * error.c: [!__CHECKER__] (chkr_disp_call_chain) New function.
6018         (induce_segfault) Calls chkr_disp_call_chain() instead of
6019         inducing an actual SIGSEGV.
6020
6021         * expr-opt.c: (evaluate_tree) Swapped order of arguments to
6022         str_search() and str_rsearch().  Fixed tests for matches on
6023         OP_INDEX and OP_RINDEX.
6024
6025         * filename.c: (good_getcwd) Removed as the new libc for Checker
6026         doesn't contain this bug, apparently.
6027
6028         * misc.c: (str_search, str_rsearch) Changed order of arguments for
6029         consistency with GNU memmem.
6030         (blp_getdelim) Changed `len' from `int' to `size_t'.
6031
6032         * modify-vars.c: Reference implementation.
6033
6034         * som-frnt.c: (zero_length) New global var.
6035         (som_create_table) Message fix.
6036
6037         * som.h: Added gcc attributions to som_set_text(),
6038         som_output_text() prototypes.  blank_line() refers to
6039         zero_length[] instead of a literal null string to suppress gcc
6040         warnings.
6041
6042         * sort.c: (do_external_sort) Fixed fencepost error on lossage.
6043         (allocate_cases) Decrements x_max so the last element of x[] can
6044         be used by the algorithm.
6045
6046         * var.h: Changed minor details of `variable' declaration.  
6047         (struct modify_vars_proc) New struct.
6048         (struct variable) Added field p.mfv.
6049
6050         * vars-atr.c: Comment fix.
6051
6052         * vars-prs.c: (fill_all_vars) More optimal implementation.
6053
6054         * vfm.c: (dump_splits) Sets the last byte of temp_buf to a null
6055         character, which it shouldn't have to do but printf() seems to
6056         read the null byte even though I supply a maximum length...
6057
6058 Fri Jan 10 20:22:08 1997  Ben Pfaff  <blp@gnu.org>
6059
6060         * command.c: Removed command alias X for QUIT.
6061         (parse_cmd) Fixed comment parsing.
6062
6063         * dfm.c: (struct dfm_fhuser_ext) Fields `len', `size' are now of
6064         type size_t.
6065         (read_record) Fixed references to len, size.
6066         (dfm_get_record) Restructured.
6067
6068         * file-handle.h: (struct file_handle) Field `lrecl' now of type
6069         size_t.
6070
6071         * file-handle.q: (internal_cmd_file_handle) Checks for nonpositive
6072         record length.
6073
6074         * modify-vars.c: New file.  Not complete.
6075         
6076         * set.q: (set_ccx) Fixed operator precedence problem regarding ^
6077         and ==.
6078
6079         * sfm-read.c: (bswap_flt64, read_header, write_variable) Fixed
6080         problems caused by int/size_t differences.
6081
6082         * sort.c: (output_record, merge_once) Cast `size_t's to `int's in
6083         appropriate spots.
6084
6085         * str.c: (strcasecmp) Fixed bug that cropped up when the strings
6086         being compared were of equal length.
6087
6088 Thu Jan  2 19:08:23 1997  Ben Pfaff  <blp@gnu.org>
6089
6090         * command.c: Added DOCUMENT, DROP DOCUMENTS, FILE LABEL.
6091
6092         * lexer.c: (get_dotted_rest_of_line) New function.
6093
6094         * sel-if.c: (cmd_filter) Cannot choose string or scratch variables
6095         as filters.
6096
6097         * sfm-read.c: (sfm_read_dictionary) Calls read_documents() to read
6098         type 6 records.  Frees the dictionary properly.
6099         (read_header) Initializes the dictionary instead of letting
6100         read_variables() do it.  Sets the dictionary file label from the
6101         system file.
6102         (read_documents) New function.
6103
6104         * sfm-write.c: (sfm_write_dictionary) Calls write_documents() to
6105         write type 6 record if appropriate.
6106         (write_header) Writes file label from dictionary.
6107         (write_documents) New function.
6108
6109         * temporary.c: (save_dictionary, restore_dictionary,
6110         free_dictionary) Properly handle new fields in dictionary struct.
6111
6112         * title.c: (get_title) Returns after failure().
6113         (cmd_file_label, cmd_document, cmd_drop_documents) New functions
6114         for new commands FILE LABEL, DOCUMENT, DROP DOCUMENTS.  Untested.
6115
6116         * var.h: (struct dictionary) New fields `label', `n_documents',
6117         `documents'.
6118
6119 Wed Jan  1 22:08:10 1997  Ben Pfaff  <blp@gnu.org>
6120
6121         * command.c: Added FILTER to list of commands.
6122
6123         * frequencies.g: [WEIGHTING] Removed test for weighting!=-1 since
6124         it's always true.
6125
6126         * get.c: (cmd_save_internal) Removed weighting code since it's now
6127         handled by sfm-write.c.  Properly commented out debug code.
6128
6129         * glob.c: (glob var weighting) Removed.
6130
6131         * sel-if.c: Comment fixes.
6132         (cmd_filter) New function.
6133
6134         * sfm-read.c: (struct sfm_fhuser_ext) New field `weight_index'.
6135         (sfm_read_dictionary) Sets weighting variable direct in the
6136         created dictionary now.  (Apparently we previously didn't support
6137         weighting on GET?)
6138         (read_header) Sets weight_index field in sfm_fhuser_ext from
6139         header read from disk.
6140
6141         * sfm-write.c: (sfm_write_dictionary) Comment fix.
6142         (write_header) Now sets the weighting in the header from the
6143         passed primary dictionary instead of from the sfm_write_info.
6144
6145         * sfm.h: (struct sfm_write_info) Removed field `weight'.
6146
6147         * som-high.c: (dump_crush_table) Fixed a couple of assertions that
6148         broke on boundary conditions.
6149
6150         * var.h: (struct dictionary) New fields `weight_var',
6151         `weight_index', and `filter_var'.
6152         (glob var weighting) Removed.  This is now part of struct
6153         dictionary.  All references changed; the less mechanical changes
6154         are described above.
6155
6156         * vars-atr.c: (find_dict_variable) New function.
6157
6158         * vfm.c: (static var filter_index) New variable.
6159         (open_active_file) Initializes filter_index from default_dict.
6160         (write_case) Calls proc_func() only if the filter variable is
6161         nonzero; this implements FILTER behavior.
6162
6163         * weight.c: (static var weight_varname) Removed.
6164         (cmd_weight) Modified default_dict instead of glob vars.
6165         (update_weighting) Changed the signature to modify a dictionary
6166         instead of glob vars.  Now returns the weighting variable.
6167         (get_weighting_variable) Removed; its function is absorbed by
6168         update_weighting().
6169         (stop_weighting) Operates on a dictionary now.
6170
6171 Wed Jan  1 17:00:59 1997  Ben Pfaff  <blp@gnu.org>
6172
6173         * sort.c: Removed debugging info from messages.
6174         (do_external_sort) Cleans up after itself by deleting the
6175         temporary directory on failure.  (On success it is deleted by the
6176         input program.)
6177         (allocate_cases) Removed debug code.  Added clean up code.
6178         (output_record) Removed debug code.
6179         (merge) Added code to close all the input files that are currently
6180         open.  This is a likely location for bugs, because I'm not sure
6181         about boundary conditions.  Removed an unnecesary heap_delete().
6182         (merge_once) Removed input file "optimization" that in fact
6183         screwed up the rest of the code.  Message and comment fixes.
6184
6185 Sun Dec 29 21:36:48 1996  Ben Pfaff  <blp@gnu.org>
6186
6187         * error.c: [__CHECKER__] (induce_segfault) Flushes output streams.
6188
6189         * heap.c: (heap_delete) New argument.
6190
6191         * sort.c: Finished implementation of external sort.
6192
6193         * vfm.c: (read_from_disk) Returns after a disk error.
6194
6195 Sun Dec 22 23:10:39 1996  Ben Pfaff  <blp@gnu.org>
6196
6197         * sort.c: (static var state) Removed.
6198         (static vars max_handles, tmp_basename, tmp_extname,
6199         huffman_queue) New variables.
6200         (do_external_sort) Moved most code to new functions.
6201         Creates huffman_queue.
6202         (allocate_file_handles, allocate_cases) New functions.
6203         (static vars run_no, run_length, file_index, case_count) New
6204         variables. 
6205         (output_record) Returns success.  Now really writes to the output
6206         file.
6207         (begin_run, end_run) New functions.
6208         (write_initial_runs) Returns success.  Initializes run_no to -1.
6209         Calls begin_run(), end_run() at appropriate times.  Outputs debug
6210         messages.
6211         (write_to_sort_cases) Calls begin_run(), end_run() at appropriate
6212         times.
6213         (merge) New function.
6214
6215         * heap.c, heap.h: New files.  Hopefully in near-final form.
6216
6217 Sat Dec 21 21:51:04 1996  Ben Pfaff  <blp@gnu.org>
6218
6219         * glob.c: Added write_active_file to global vars.
6220
6221         * sort.c: Several new miscellaneous static variables.
6222         (cmd_sort_cases) Big comment fix.
6223         (perform_case_2) Renamed `do_external_sort' and completely
6224         rewritten.
6225         (case_2_proc_func) Removed.
6226         (output_record, write_initial_runs, write_to_sort_cases,
6227         compare_record) New functions.
6228
6229         * vfm.c: [DEBUGGING] (index_to_varname) Excised bit rot.
6230
6231 Tue Dec 17 18:57:59 1996  Ben Pfaff  <blp@gnu.org>
6232
6233         * sort.c: (perform_case_2) Changed the method for allocation of
6234         lots of memory--now allocates one case at a time in hopes that
6235         more cases can be allocated with heavily fragmented memory.
6236
6237         * var.h: (write_active_file) New global var.
6238
6239         * vfm.c: (procedure, close_active_file, write_case,
6240         SPLIT_FILE_procfunc) Now allow beginfunc, procfunc, and endfunc
6241         arguments to procedure() to be NULL.  All references to
6242         procedure() that made use of dummy functions were changed to NULL
6243         functions.
6244         (open_active_file) If write_active_file is non-NULL, the output
6245         device becomes DEV_PGM (a new enum).
6246         (close_active_file) Sets write_active_file to NULL.
6247         (read_from_memory) Comment fix.
6248         (record_case) Calls write_active_file() when the output device is
6249         DEV_PGM.
6250
6251 Sun Dec 15 15:32:16 1996  Ben Pfaff  <blp@gnu.org>
6252
6253         * sort.c: New file.
6254
6255         * autorecode.c: (cmd_autorecode) Fixed parsing of options.
6256         Fixed checking for duplicate varnames.
6257         (recode) xmalloc()'s the transformation instead of arena_alloc()'ing
6258         it.
6259         (autorecode_trns_free) Destroys hash tables for each recoding
6260         specification.
6261         (autorecode_proc_func) Compares NULL to *vpp instead of vpp.
6262
6263         * command.c: Added SORT CASES to cmd_table.
6264         (null_func, null_int_func) Prototyped.
6265
6266         * descript.g: (calc_weight, calc_noweight) Computes own case
6267         number now.
6268         
6269         * frequencies.q: (dump_statistics) Fixed problem with
6270         too-few-cases warning message.
6271
6272         * get.c: (cmd_save_internal) Handles weighting properly.
6273
6274         * hash.c: (hsh_dump) Output format changed.
6275         (force_hsh_insert) Actually works now, prototype changed.
6276
6277         * list.q: (static var case_num) New variable.
6278         (cmd_list) Initializes case_num.
6279         (list_cases) Increments case_num.
6280
6281         * var.h: Added definitions for SORT CASES.  Comment fixes.
6282
6283         * vfm.c: Some definitions moved to new file vfmP.h.  Comment
6284         fixes.  `active' renamed vfm_active, `rep' renamed
6285         vfm_replacement, all references changed.
6286         (procedure) The procfunc no longer receives a case number.  All
6287         references changed.
6288         (write_case) Subtle reordering.
6289         (SPLIT_FILE_procfunc) Counts cases differently.  Slightly less
6290         redundant.
6291
6292         * weight.c: (get_weighting_variable) New function.
6293
6294         * vfmP.h: New file with definitions from vfm.c.
6295
6296 Sat Dec 14 10:35:30 1996  Ben Pfaff  <blp@gnu.org>
6297
6298         * command.c: (FILE_TYPE_okay) Commented out some tests because
6299         they're clumsy and not yet needed.
6300
6301         * var.h: Most *_trns structures moved to their respective source
6302         files.  Some were moved into a new file, do-ifP.h.  Comment fixes.
6303         (union any_trns) Changed to a typedef for trns_header.
6304         (struct input_program_pgm) Removed.
6305
6306         * vars-prs.c: (parse_variables) Only local_free()'s bits if it
6307         was allocated in the first place.
6308
6309 Fri Dec 13 21:30:53 1996  Ben Pfaff  <blp@gnu.org>
6310
6311         * autorecode.c: New file.
6312         
6313         * command.c: Added AUTORECODE to command table; re-enabled SET.
6314
6315         * data-out.c: (convert_F) Handles infinities and NaNs properly.
6316
6317         * error.c: (vmsg) Comment fixes.
6318
6319         * hash.c: Comment fix.
6320         (hashpjw_d) New function.
6321         (hashpjw) Reimplemented as call to more general function
6322         hashpjw_d().
6323         (internal_comparison_fn) Initializes pointers properly.
6324         (hsh_sort) [GLOBAL_DEBUGGING] New debugging code.
6325         (force_hsh_insert, force_hsh_find) New debugging wrapper
6326         functions.
6327
6328         * main.c: (main) Message fix.
6329
6330         * output.c: (outp_read_devices) Message fix.
6331
6332         * set.q: Comment fixes.
6333         (custom_results) Implemented Wnd/X form of subcommand.
6334         (set_routing) New function.
6335         (internal_cmd_set) Implemented ERRORS, MESSAGES.
6336
6337         * settings.h: (SET_ROUTE_*) New enum series.
6338         (set_results) Renamed set_results_file, all references changed.
6339         (set_messages) Removed.
6340         (glob vars set_errors, set_messages, set_results) New vars.
6341
6342         * title.c: (get_title) Remembers to xstrdup() the result of
6343         get_rest_of_line().
6344
6345         * var.h: (arc_item, arc_spec, autorecode_trns) New structures for
6346         use by AUTORECODE.
6347         (union any_trns) New element `arc'.
6348
6349 Fri Dec  6 23:53:47 1996  Ben Pfaff  <blp@gnu.org>
6350
6351         * command.c: (output_line) Removed references to set_screen.
6352
6353         * error.c: (static var terminating) New var.
6354         (hcf) Sets terminating to 1.
6355         (vmsg) If terminating is nonzero, does not attempt to call hcf().
6356         This prevents an infinite loop if an error occurs within hcf().
6357
6358         * expr-evl.c: (evaluate_expression) [__CHECKER__] Replaced case
6359         statement circumlocution with `case 42000' trick.
6360         (evaluate_expression) New support for OP_STR_MIS.
6361
6362         * expr-opt.c: (evaluate_expression) [__CHECKER__] Replaced case
6363         statement circumlocution with `case 42000' trick.
6364         (dump_node) Handles OP_STR_MIS.
6365
6366         * expr-prs.c: (MISSING_func, SYSMIS_func) Rewrote to handle string
6367         variables exceptions.
6368         (parse_function) Message fix.
6369         (ops[]) Added OP_STR_MIS.
6370
6371         * expr.h: Added OP_STR_MIS to OP_* enum.  Comment fixes.
6372
6373         * exprP.h: [__CHECKER__] Removed case statement circumlocution.
6374
6375         * glob.c: Removed set_scrnfile glob var.
6376         (init_glob) set_errorbreak set to 0 by default.
6377
6378         * groff-font.c: Changed included files.
6379         (groff_read_font) Initializes font_arena local var correctly.
6380         (default_font) New function.
6381
6382         * output.c: Comment fixes.
6383         (glob var disabled_devices) New variable.
6384         [GLOBAL_DEBUGGING] (static var iterating_driver_list) New
6385         variable.
6386         [GLOBAL_DEBUGGING] (reentrancy) New function.
6387         [GLOBAL_DEBUGGING] (outp_read_devices, outp_done, find_driver,
6388         outp_iterate_enabled_drivers) Calls to reentrancy().
6389         (destroy_list) New function.
6390         (outp_done) Moved code to destroy_list().
6391         (parse_options) Parses `listing', `screen', `printer' options
6392         internally.
6393         (configure_driver) Sets new `device' member of driver.
6394         (outp_iterate_enabled_drivers, outp_enable_device) New functions.
6395
6396         * output.h: Comment fixes.  New enum series OUTP_DEV_*.
6397         (struct outp_driver_struct) New member `device'.
6398
6399         * postscript.c: (find_encoding_file) Doesn't display its own error
6400         messages.
6401         (default_encoding) New function.
6402         (switch_font) Calls default_encoding() if no encoding can be
6403         found.
6404         (text) Makes up a character metric if none exists for the desired
6405         character.
6406         (load_font) Properly copies a fallback filename.  Calls
6407         default_font() for a font if none at all are known.
6408
6409         * set.q: Comment fixes.  Removed OUTPUT subcommand.
6410         (custom_listing) Calls outp_enable_device() to enable/disable
6411         listing device.
6412         (turn_screen_on) Removed.
6413         (internal_cmd_set) Calls outp_enable_device() to enable/disable
6414         screen, printer devices.
6415
6416         * settings.h: Comment fixes.
6417         (glob vars set_output, set_printer, set_screen, set_scrnfile)
6418         Removed.
6419
6420         * som-high.c: (som_submit_table, som_eject_page) Use
6421         outp_iterate_enabled_drivers() instead of iterating
6422         outp_driver_list directly.
6423
6424 Wed Dec  4 21:34:17 1996  Ben Pfaff  <blp@gnu.org>
6425
6426         * data-in.c: (parse_EDATE, parse_SDATE) New functions.
6427         (parse_string_as_format) Handles new formats.
6428         (parse_numeric) Now handles DOT and PCT formats.
6429
6430         * data-out.c: (convert_E, convert_F, insert_commas) Handle DOT
6431         format now.
6432         (convert_date) Handle EDATE and SDATE formats.
6433         (convert_CCx) Now if there's not room for the currency characters,
6434         converts it as F format if it's positive instead of giving up
6435         quickly.  Also fixed save-and-restore bug with decimal point
6436         characters.  
6437         (convert_format_to_string) Handles new formats.
6438
6439         * misc.c: (formats[]) Added new formats.
6440         (convert_fmt_ItoO) Supports new formats.
6441
6442         * sfm-read.c: (parse_format_spec) Supports new formats.  Better
6443         data checking.  New argument, all references changed.
6444
6445         * sfm-write.c: (write_format_spec) Supports new formats.
6446
6447         * var.h: New formats FMT_DOT, FMT_PCT, FMT_EDATE, FMT_SDATE.
6448         Comment fixes.
6449
6450 Sun Dec  1 17:19:00 1996  Ben Pfaff  <blp@gnu.org>
6451
6452         * cmdline.c: Comment fixes.
6453         (parse_command_line) Changed return type to void.
6454
6455         * data-in.c: (parse_string_as_format) Added FMT_CCA...FMT_CCE to
6456         switch.
6457         (parse_numeric) Handles international numbers (comma as decimal
6458         point).  Some reformatting.
6459
6460         * data-list.c: (parse_free) Default output format is now
6461         set_format instead of hard-coded F8.2.
6462         (read_from_data_list_list) Emits error message on undefined data
6463         only if set_undefined is nonzero.
6464
6465         * data-out.c: (convert_E) Changes decimal point from period to
6466         comma if appropriate.  Restructured.  Better comments.
6467         (convert_F) Changes decimal point from period to comma if
6468         appropriate.
6469         (insert_commas) Major bug with handling of negative values fixed.
6470         Also, inserts periods instead of commas if appropriate.
6471         (convert_CCx) New function.
6472         (convert_format_to_string) Added FMT_CCA...FMT_CCE to switch.
6473         (num_to_string) Changed `.' to set_decimal.
6474
6475         * dfm.c: Comment fixes.
6476         (dfm_close) Frees ext->line even in inline_file.
6477         (open_inline_file) New function.
6478         (open_file_r) When opening the inline file: now properly
6479         recognizes `BEGIN DATA.' line, and calls open_inline_file() to
6480         finish up.
6481         (read_record) Calls fh_close_handle() instead of dfm_close() to
6482         close the inline file.  Makes a copy of the line getl_buf to avoid
6483         interlock problems.
6484         (dfm_get_record) Restructured.  Now checks the return value of
6485         open_file_r().
6486         (cmd_begin_data) Moved open code into open_inline_file().  Relaxed
6487         checking for use of inline file.  No longer tries to close inline
6488         file.
6489
6490         * error.c: (glob var error_already_flagged) New var.
6491         (vmsg) Message change.  Now checks max number of errors/warnings,
6492         acts on it.
6493
6494         * file-handle.q: (fh_handle_name) Now allows closing of
6495         inline_file.
6496         (fh_init_files) Reformatted.
6497
6498         * get.c: (trim_dictionary) Checks SCOMP option instead of COMP.
6499
6500         * getline.c: (getl_include) Fixed bug that popped up when called
6501         when file queue was empty.
6502         (read_console) Resets error_count, warning_count,
6503         error_already_flagged to zero.
6504
6505         * glob.c: Many changes to update list of variables.
6506         (init_compat_dependent) Now this function is called whenever
6507         `compat' changes.  It now sets set_seed only if it hasn't
6508         previously been referenced.  It now calls
6509         lex_init_compat_dependent().
6510
6511         * include.c: (cmd_include_at) Frees temporary buffer instead of
6512         line buffer.  
6513         (cmd_include) Doesn't make copy of include file name.
6514
6515         * lexer.c: Comment fixes.
6516         (init_lex) Moved some code into new function
6517         lex_init_compat_dependent().
6518         (lex_init_compat_dependent) New function.
6519         (hex_val) Simplified.
6520         (preprocess_line) Uses set_endcmd instead of hardcoding `.'.
6521
6522         * main.c: Comment fixes.
6523         (main) Reformatted.
6524
6525         * misc.c: (formats[]) Added FMT_CCA...FMT_CCE.
6526         (check_input_specifier) Disallows FMT_CCA...FMT_CCE.
6527         (convert_fmt_ItoO) Detects FMT_CCA...FMT_CCE.
6528         (setup_randomize) Sets set_seed_used.
6529
6530         * set.q: Comment fixes.
6531         (custom_results) Conditionalizes on `compat'.
6532         (custom_log) Calls custom_journal().
6533         (set_ccx) New function.
6534         (cmd_set) Calls init_compat_dependent() when `compat' changes.
6535         Calls set_ccx() to handle CCA...CCE.  Sets set_grouping
6536         when set_decimal changes.  Range-checks values for MITERATE,
6537         MNEST.  Message fixes.
6538
6539         * settings.h: Comment fixes.
6540         (struct set_cust_currency) New struct.
6541         (set_cc[], set_grouping, set_seed_used) New global vars.
6542
6543         * var.h: (FMT_CCA...FMT_CCE) New output formats.
6544         (FCAT_OUTPUT_ONLY) New FCAT_* constant.
6545
6546 Thu Nov 28 23:14:07 1996  Ben Pfaff  <blp@gnu.org>
6547
6548         * glob.c: Revised variables to correspond to settings.h.
6549         (init_glob) Initializes variables from settings.h properly.
6550
6551         * set.q: Began long-overdue major revision to correspond to new
6552         philosophy.  Most code changed. 
6553
6554         * settings.h: Mostly changed; reorganized, reordered, large new
6555         comment.
6556
6557 Thu Nov 28 19:46:10 1996  Ben Pfaff  <blp@gnu.org>
6558
6559         * get.c: (cmd_save_internal) No longer forces compression off.
6560
6561         * sfm-read.c: (read_compressed_data) If eof is reached when
6562         reading a new instruction octet, only signal error if we're in the
6563         middle of a case.
6564
6565         * sfm-write.c: (COMPRESSION_BIAS) New #define.
6566         (struct sfm_fhuser_ext) New member `end'.
6567         (write_header) Refers to COMPRESSION_BIAS instead of magic 100.0.
6568         (ensure_buf_space) New function.
6569         (sfm_write_case) Reimplemented in order to support compression.
6570         (sfm_close) Writes out the remaining contents of the compression
6571         buffer if any.
6572
6573 Wed Nov 27 23:18:35 1996  Ben Pfaff  <blp@gnu.org>
6574
6575         * command.c: Defined SAVE and XSAVE commands in command table.
6576
6577         * common.h: second_lowest_value is of type flt64, not double.
6578
6579         * file-handle.h: Comment fix.
6580
6581         * get.c: Comment fixes.
6582         (static var `trns') New.
6583         (save_write_case_func, save_trns_proc, save_trns_free, null_func,
6584         cmd_save_internal, cmd_save, cmd_xsave) New functions.
6585         (dict_delete_run) Clears the variables and frees them now.
6586         (trim_dictionary) Sets default for compression.
6587         On KEEP subcommand, frees deleted variables as well as clearing
6588         them.  Finally got the sense of the test for deleting all
6589         variables correct.
6590         [DEBUGGING] (dump_dict_variables) Message fix.
6591
6592         * glob.c: (init_glob) set_compression set to 1 by default.
6593
6594         * list.q: Properly #includes config.h.
6595
6596         * misc.h: New macro REM_RND_UP.
6597
6598         * settings.h: Comment fix.
6599
6600         * sfm-read.c: (structs sysfile_header, sysfile_format,
6601         sysfile_variable; inline function bswap_int32) Moved to new file
6602         sfmP.h.
6603         (corrupt_msg) [__CHECKER__] No longer induces segfault.
6604         (sfm_read_dictionary) Fixed bug caused by failing to initialize
6605         var_by_index.
6606         (read_machine_flt64_info) Fixed some problems caused by confusion
6607         between flt64 and double types.
6608         (read_header) Message fix.
6609         (read_variables) Fixed set of cases in which we byte-swap sv.print
6610         and sv.write.  Fixed confusion of flt64 and double.
6611
6612         * sfm.h: (struct sfm_write_info) New.
6613
6614         * som-high.c: (som_draw_title) Properly frees `s'.
6615
6616         * temporary.c: (save_dictionary) Comment fix.
6617
6618         * var.h: Comment fixes.  New FMT_* enum, FMT_NUMBER_OF_FORMATS.
6619         (struct trns_header) Formatting fix.
6620         (struct save_trns) New.
6621
6622         * vars-atr.c: (discard_variables) Comment fix.
6623
6624         * sfm-write.c: New file, baseline release.
6625
6626         * sfmP.h: New file, baseline release.
6627
6628 Sun Nov 24 14:53:53 1996  Ben Pfaff  <blp@gnu.org>
6629
6630         * cmdline.c: (parse_command_line) `--version' output updated.
6631         (glob var syntax_message[]) Added my e-mail address.
6632
6633         * file-handle.q, lexer.c, vfm.c: Changed many instances of
6634         `illegal' to `invalid'.
6635
6636         * sfm-read.c: (struct sfm_fhuser_ext) New fields used as
6637         uncompression buffer.
6638         (sfm_close) Frees decompression buffer.
6639         (sfm_read_dictionary) Initializes decompression buffer.
6640         (buffer_input, read_compressed_data) New functions.
6641         (sfm_read_case) Restructured; now calls read_compressed_data() to
6642         handle compressed system file data.
6643
6644         * var.h: Comment fix.
6645
6646 Mon Nov 11 15:34:09 1996  Ben Pfaff  <blp@gnu.org>
6647
6648         * dfm.c: (dfm_close) Does not set h->{ext,class} because the
6649         caller handles it.
6650          
6651         * get.c: New comments.  New static var `get_file'.
6652         (cmd_get) Now fully implemented.  Calls discard_variables();
6653         initializes fv and lv for all variables; new debug code; sets
6654         up the dictionary; sets up the input program.
6655         (read_from_get, cancel_get) New functions.
6656
6657         * sfm-read.c: Comment fixes.
6658         (sfm_close) New static function.
6659         (sfm_read_dictionary) Properly sets up the class of the
6660         file_handle.  No longer cares what size the data is in records of
6661         type 7.  Also, on failure, properly cleans up the file_handle and
6662         free()s some stuff.
6663         (read_variables) No longer thinks it knows `nval' of the
6664         dictionary.  Now sets p.get.fv, etc., instead of speculatively
6665         setting fv itself.
6666         (read_value_labels) Fixed off-by-one error in indexing of
6667         var_by_index[].
6668         (sfm_read_case) New function.
6669         (sfm_r_class) New static var.
6670
6671         * var.h: (get_proc) New struct.
6672         (struct variable) New member p.get.
6673
6674 Thu Nov  7 20:52:28 1996  Ben Pfaff  <blp@gnu.org>
6675
6676         * get.c: Removed GTSV_OPT_MAP because of a misinterpretation of
6677         the manual's meaning.
6678         (rename_variables) New function.
6679         (trim_variables) Doesn't try to parse MAP any more.  Removed debug
6680         code.  Now properly reorders the dictionary on the KEEP keyword.
6681
6682         * sfm-read.c: (read_value_labels) Fixed some bugs regarding
6683         garbage collection.
6684
6685         * vars-atr.c: (clear_variable) New argument `dictionary *'.
6686         (rename_variable) New function.
6687         (free_val_lab) Reformatted.
6688
6689 Thu Nov  7 17:29:16 1996  Ben Pfaff  <blp@gnu.org>
6690
6691         * var.h: Reindented entire file.  Comment fixes.
6692         (glob vars var, var_by_name, nvar, N, nval, n_splits, splits)
6693         Removed.
6694         (glob var default_dict) New.
6695         (struct indirect_dictionary) Removed.
6696
6697         * Many other source files were changed to add `default_dict.'
6698         before all references to the dictionary of the active file.
6699         
6700         * vars-atr.c: (make_indirect_dictionary) Removed.
6701
6702         * glob.c: Reindented all variable declarations.  Updated for
6703         changed var.h.  Comment fixes.
6704
6705         * temporary.c: (restore_dictionary, save_dictionary) Simplified
6706         because now we can mainly copy dictionary structs.
6707
6708         * vars-prs.c: (is_dict_varname, parse_dict_variable,
6709         parse_variables) Takes dictionary instead of indirect_dictionary
6710         first argument.
6711         (parse_variables) Instead of calling make_indirect_dictionary,
6712         just sets DICT to &default_dict if DICT is NULL.  Of course, lots
6713         of `*dict.' references had to be changed to `dict->'.  Removed
6714         debug code.
6715
6716 Thu Nov  7 15:48:52 1996  Ben Pfaff  <blp@gnu.org>
6717
6718         * get.c: Added GTSV_OPT_* series of enums.
6719         (trim_dictionary, dict_delete_run) New functions.
6720         [DEBUGGING] (dump_dict_variables) New function.
6721         (cmd_get) Calls trim_dictionary() to get dictionary fully set-up.
6722         [DEBUGGING] Calls dump_dict_variables() to display results.
6723
6724         * glob.c: (cmp_variable) Now a public function declared in var.h.
6725
6726         * sfm-read.c: Turned off debug code.  Comment fixes.
6727         (read_machine_int32_info, read_machine_flt64_info) New functions
6728         to parse type 7 records.
6729         (sfm_read_dictionary) Properly byteswaps several fields now.
6730         Calls read_machine_*_info() to parse type 7 subtypes 3 and 4
6731         records.  [DEBUGGING] Dumps dictionary.
6732         (read_variables) Sets `index' field of variables created properly.
6733         Constructs avl tree of variables in dictionary.  [DEBUGGING] No
6734         longer dumps dictionary.
6735         (read_value_labels) Properly byteswaps fields.  [DEBUGGING] New
6736         debug code.
6737         [DEBUGGING] (dump_dictionary) No longer stubbed out.
6738
6739         * temporary.c: (restore_dictionary) Destroys `var_by_name' glob
6740         var before destroying any variables just to save a little time.
6741
6742         * var.h: (struct variable) Reordered in order to make name[] the
6743         first member; this makes pointers to `variable' pointers to the
6744         variable name, simplifying avl trees, etc.
6745         (struct indirect_dictionary) New struct.
6746
6747         * vars-atr.c: (find_variable) Rewritten for efficiency.
6748         (make_indirect_dictionary, is_dict_varname, parse_dict_variable)
6749         New functions.
6750         (is_varname) Rewritten for efficiency.
6751         (parse_variables) New argument, which is a `dictionary *'.  All
6752         references changed.  This function now reads variable names from
6753         the dictionary passed, or from the default dictionary if NULL.
6754
6755 Tue Nov  5 18:34:59 1996  Ben Pfaff  <blp@gnu.org>
6756
6757         * misc.h: Added new macro DIV_RND_UP to perform integer division,
6758         rounding up.  Changed many references to ROUND_UP to use this
6759         instead.
6760
6761         * sfm-read.c: Includes avl.h.
6762         (corrupt_msg) Induces a segfault under Checker.
6763         (macro assertive_bufread) New.  Many references to bufread() now
6764         use this instead.
6765         (sfm_read_dictionary) Split up into several functions.  Added code
6766         to read dictionary records following the the type 2 records.  Not
6767         quite complete.  New variable `var_by_index'.
6768         (read_header, read_variables) New functions extracted from
6769         sfm_read_dictionary().
6770         (read_value_labels) New function.
6771         (bufread) Checks ferror() if fread() doesn't return the expected
6772         value; if ferror() is zero it's just EOF.
6773         (dump_dictionary) Stubbed out.
6774
6775         * BTW: The source code now exceeds 50000 lines!
6776         
6777 Mon Nov  4 22:03:28 1996  Ben Pfaff  <blp@gnu.org>
6778
6779         * command.c: Added GET to cmd_table[].
6780
6781         * list.q: Removed reference to alloca headers.
6782         (cmd_list) Gave prototype.
6783
6784         * sfm-read.c: Added DEBUGGING comments.
6785         (sfm_read_dictionary) Checks bias correctly.  Sets
6786         dict->var_by_name to NULL.  Calculates long_string_count
6787         correctly.  realloc's dict->var[] array to minimum size.
6788         [DEBUGGING] Calls dump_dictionary.
6789         [DEBUGGING] (dump_dictionary) New function.
6790
6791         * temporary.c: (save_dictionary) Sets var_by_name to NULL.
6792         (restore_dictionary) If the dictionary contains a non-NULL
6793         var_by_name, uses that instead of generating one.
6794         (free_dictionary) Destroys var_by_name.
6795
6796         * var.h: (struct dictionary) Added field `var_by_name'.
6797
6798         * get.c: New file, not complete.
6799
6800 Sun Nov  3 12:24:36 1996  Ben Pfaff  <blp@gnu.org>
6801
6802         * mis-val.c: New enums MV_NOR_*.  New struct num_or_range.
6803         (parse_num_or_range) New function.
6804         (parse_numeric) Reimplemented in order to support LOW THRU <n> and
6805         <n> THRU HIGH missing values.
6806
6807         * output.h: [__GNUC__>1 && __OPTIMIZE__] (width, height) Made
6808         __attribute__((const)).
6809
6810         * q2c.c: (get_token) Merged isdigit || isalpha into isalnum.
6811
6812         * sfm-read.c: Finished reference implementation.
6813
6814         * sfm.h: Includes var.h.
6815
6816         * var.h: Comment fixes.
6817         (struct `variable') Reordered some fields.
6818
6819         * vars-atr.c: (is_num_user_missing) Added support for MISSING_*
6820         constants added previously.
6821
6822 Wed Oct 30 17:13:08 1996  Ben Pfaff  <blp@gnu.org>
6823
6824         * common.h: Comment fixes.  Added declaration of
6825         `second_lowest_value' as variable or macro.  Made `compat_type',
6826         `pgm_state_type' into anonymous enums.
6827
6828         * display.c: Comment fix.
6829
6830         * glob.c: [ENDIAN==UNKNOWN] Added definition for `endian' global
6831         var.
6832         [!defined SECOND_LOWEST_VALUE] Added definition for
6833         `second_lowest_value' global var.
6834         (compat, pgm_state global vars) Changed types to `int'.
6835         (init_glob) Initializes `second_lowest_value'.
6836
6837         * sfm-read.c: Continued work, not complete.
6838
6839         * var.h: Added new MISSING_* constants to handle LOWEST and
6840         HIGHEST.
6841
6842 Sat Oct 26 23:06:06 1996  Ben Pfaff  <blp@gnu.org>
6843
6844         * sfm-read.c: New file, not complete.
6845
6846         * cases.c: (vec_insert) Changed vector expansion algorithm.
6847         (vec_delete) Fixed bug that screwed up deletion sometimes, it was
6848         mucking up the RECODE transformation in particular.
6849         (envector) Harmless change in notation.
6850
6851         dfm is now fairly well tested again.  
6852         * dfm.c: (dfm_get_record) Only returns ext->ptr if ext is
6853         non-NULL--duh.
6854         (cmd_begin_data) if(ext->line) replaced by if(ext && ext->line).
6855
6856         * recode.c: Comment fix.
6857
6858         * sfm.h: Interface should be fairly final now, or at least for a
6859         day or so...
6860
6861         * vfm.c: [DEBUGGING] (index_to_varname) New function.
6862         (open_active_file) [DEBUGGING] Translates ccase indices into
6863         variable names now to make it easier to understand what's really
6864         going on.
6865
6866 Sat Oct 26 20:46:31 1996  Ben Pfaff  <blp@gnu.org>
6867
6868         * data-in.c: Comment fix.
6869
6870         * data-list.c: Includes dfm.h.
6871         (do_reading) Uses new function dfm_push_cust().
6872
6873         * data-out.c: (convert_time, convert_WKDAY, convert_MONTH) Added
6874         `return 1;' at end.
6875
6876         * file-handle.h: Completely changed.  Some parts split off into
6877         new file dfm.h.  Implemented in file-handle.q.
6878         (enum FH_*) Removed.
6879         (struct fh_ext_class) New struct.
6880         (struct file_handle) Retained only these fields: name, norm_fn,
6881         fn, recform, lrecl, mode.  New fields class, ext.
6882         (get_handle_by_name, get_handle_by_filename, parse_file_handle,
6883         close_handle, handle_name) Added `fh_' prefix to name, all
6884         references changed.
6885
6886         * dfm.h: New file, implemented in dfm.c.
6887         (get_record, put_record, fwd_record, bkwd_record, set_record,
6888         get_cur_col) Functions moved from file-handle.h, now prefixed with
6889         `dfm_'.
6890         (dfm_push_cust) New function.
6891
6892         * sfm.h: New file.  Incomplete.
6893
6894         * dfm.c: All functions adjusted/rewritten for new dfm/fhp
6895         interface.  Functions reordered, comments changed.  Not well
6896         tested, probably full of bugs.
6897         (struct dfm_fhuser_ext) New struct.
6898         (dfm_close) New function.
6899         (open_file_r) Pickier about finding `BEGIN DATA.' line.
6900         (open_file_w) User messages changed.
6901         (get_record) Comment fixed.
6902         (read_record) Increments ext->ln even for inline_file.  Calls
6903         dfm_close() for inline_file when `END DATA.' encountered.
6904         (dfm_get_record) Experimental restructuring.
6905         (dfm_push_cust) New function.
6906         (cmd_begin_data) Detects whether the inline file was fully read by
6907         checking whether it is still open; detects whether it was read at
6908         all by checking whether the line number is greater than zero.
6909
6910         * file-handle.q: All functions adjust/rewritten for new dfm/fhp
6911         interface.  Functions reordered, comments changed.  Not well
6912         tested, probably full of bugs.
6913         (init_file_handle) Removed initializers for obsolete fields, added
6914         new fields.
6915         (fh_close_handle) Much simpler, now mainly calls the class
6916         function.
6917         (fh_init_files) Renamed inline file internal filename.
6918
6919         * file-type.c: Includes dfm.h.
6920         (read_from_file_type) Doesn't use dfm internal state anymore.
6921
6922         * inpt-pgm.c, print.c: Include dfm.h.
6923
6924         * recode.c: (internal_cmd_recode) Casts strlen() return value to
6925         int in comparison with other int.
6926
6927         * som-high.c: (build_target) Fixed operator precedence problem in
6928         if statement (& versus ==).
6929
6930 Sat Oct 26 10:39:25 1996  Ben Pfaff  <blp@gnu.org>
6931
6932         * dfm.c: (read_record) Can now read fixed-length records; not
6933         tested.
6934         (put_record) Can now write fixed-length records; not tested.
6935
6936         * file-handle.h: FH_* defines changed to enums.  New enum series
6937         FH_RF_*, FH_MD_*.
6938         (struct file_handle) New members recform, lrecl, mode.
6939
6940         * file-handle.q: Parser changed.
6941         (internal_cmd_file_handle) Added support for new /RECFORM, /MODE,
6942         /LRECL subcommands.  These are compatible with Windows.
6943         (init_file_handle) Initializes recform, mode fields.
6944
6945         * q2c.c: (get_line) When outputting `!' comment lines, now
6946         increments the output file line number so that `#line' directives
6947         are correct.
6948         (make_identifier) New function that converts an arbitrary string
6949         into a valid C identifier.
6950         (dump_vars) Calls make_identifier() in two places in order to
6951         suppress some errors for bad identifiers.
6952         (make_match) Allows TRUE as synonym for YES and FALSE as synonym
6953         for NO.  Allows numbers to be prefixed by underscores to make them
6954         acceptable C identifiers but still to be parsed as numbers by the
6955         Fiasco lexer.
6956
6957 Thu Oct 24 20:13:42 1996  Ben Pfaff  <blp@gnu.org>
6958
6959         * command.c: Re-enabled RECODE, SAMPLE, SELECT IF.
6960         
6961         * dfm.c: Comment fixes. (get_record) Gives error if file handle
6962         was opened for writing.
6963         (open_file_w) New function.
6964         (read_record) Uses strncasecmp if available.  Improved error
6965         messages, comments.
6966         (put_record) New function.
6967
6968         * file-handle.h: Moved function comments into dfm.c and
6969         file-handle.q.  Comment fixes.  Removed declarations of
6970         tilde_expand() and normalize_filename().
6971         (struct file_handle) Changed `open' from boolean to enumerated
6972         field to allow for three states--closed, open for reading, open
6973         for writing--all references changed.
6974
6975         * file-handle.q: Includes filename.h.
6976
6977         * print.c: (CMD_* enums) Renamed PRT_* and moved into var.h; all
6978         references changed.
6979         (alloc_line) Makes allowance for line terminator characters in
6980         calculations.
6981         (print_trns_proc) Now handles OUTFILE, WRITE differences.
6982         (print_space_trns_proc) Handles OUTFILE differences.
6983
6984         * recode.c, sample.c: Comment fixes.
6985
6986         * var.h: (struct print_trns) Changed boolean field `eject' to
6987         bitmapped field `options'; all references changed.  New enums
6988         PRT_* for use with this field.
6989
6990         * exception.h, test-exception.c: Removed.
6991
6992 Thu Oct 24 17:47:14 1996  Ben Pfaff  <blp@gnu.org>
6993
6994         * ascii.c: (delineate) Turned off debug output.
6995
6996         * common.c: [Checker and Linux] (__assert_fail, __eprintf) Moved
6997         to error.c.
6998
6999         * data-in.c: (parse_string_as_format) Sets the entire string value
7000         to spaces, not just the short string part of it.  Is this correct
7001         now? 
7002
7003         * data-out.c: (convert_date) Fixed DATETIME format problems with
7004         decimal places, removed debug code.
7005
7006         * dfm.c: (open_file_r) Fixed bug where an error would occur in the
7007         middle of parsing BEGIN DATA that would cause the lexer to read
7008         from a wild pointer `prog'; now calls new function
7009         preprocess_line() in lexer.c.
7010
7011         * error.c: [__CHECKER__] (hcf) Calls induce_segfault() on improper
7012         termination.
7013         [Checker and Linux] (__assert_fail, _eprintf) Moved from common.c.
7014         Now call induce_segfault() to induce the segfault.
7015         (induce_segfault) New function.
7016
7017         * expr-opt.c: Comment fix.
7018         (parse_sysvar) New function.
7019         (parse_primary) Added system variable support--calls
7020         parse_sysvar().
7021         (global var ops) Added OP_CASENUM operator.
7022
7023         * expr.h: Comment fixes.
7024         (OP_* enum) added OP_CASENUM operator.
7025         (struct casenum_node) New struct.
7026         (union any_union_union) New member `cas' of type `casenum_node'.
7027
7028         * glob.c: (global var last_vfm_invocation) New var.
7029         (init_glob) Initializes last_vfm_invocation.
7030
7031         * lexer.c: (lookahead) Fixed reversed condition on if statement.
7032
7033         * getline.c: (get_line) Split into get_line() and preprocess_line().
7034         (preprocess_line) New function.
7035
7036         * var.h: Declares last_vfm_invocation.
7037
7038         * vfm.c: (procedure) Sets last_vfm_invocation.
7039
7040 Wed Oct 23 21:53:43 1996  Ben Pfaff  <blp@gnu.org>
7041
7042         * command.c: (parse_cmd) Fixed bad assertion related to
7043         lookahead().
7044
7045         * data-in.c: (parse_month) Implemented to parse months according
7046         to full interpretation of standard.
7047         (to_roman) New function.
7048         (parse_wk_delimiter) Bug fix (forgot to skip `WK' in string).
7049         (parse_weekday) Bug fix (forgot to skip all the day name).
7050
7051         * data-list.c: (read_from_data_list_fixed) Fixed bug that screwed
7052         up parsing of multirecord data items.  Also fixed user message.
7053
7054         * data-out.c: Comment fix.
7055         (year2, year4, convert_date, convert_time, convert_WKDAY,
7056         convert_MONTH) New functions to support time & date output.
7057         (convert_format_to_string) Calls new time & date output routines.
7058
7059         * expr-prs.c: (nary_num_func) Found a bug, but didn't fix it yet.
7060
7061         * lexer.c: (lookahead) Noted a previously unnoticed caveat in
7062         comment.
7063
7064         * main.c: [DEBUGGING] (dump_token) Updated to handle getline.h.
7065
7066         * misc.c: (global var formats) Fixed declarations of DATETIME,
7067         TIME, DTIME.
7068
7069         * postscript.c: (text) Fixed a pair of bugs in the reallocation of
7070         the output_char buffer.
7071
7072         * vars-prs.c: (parse_DATA_LIST_vars) Fixed a failure to free
7073         memory bug.  Fixed user messages.
7074
7075 Tue Oct 22 17:27:04 1996  Ben Pfaff  <blp@gnu.org>
7076
7077         * Removed #pragma argsused from lots of places.
7078         
7079         * data-in.c: Implemented zoned decimal and time-date formats.
7080         Untested.  This is a huge chunk of code--maybe 1000 lines and 50
7081         new functions.
7082
7083         * data-out.c: Implemented zoned decimal format.
7084
7085         * expr.h: Moved yrmoda() declaration here from exprP.h.
7086
7087         * misc.c: (global var formats) Minor fixes--added
7088         FCAT_SHIFT_DECIMAL to formats N and Z.
7089         (convert_fmt_ItoO) Added support for format Z.
7090
7091         * som-frnt.c: (som_set_value) Fixed bug regarding string values.
7092
7093 Mon Oct 21 20:39:59 1996  Ben Pfaff  <blp@gnu.org>
7094
7095         * command.c: (parse_cmd) [GLOBAL_DEBUGGING] Inserted call to
7096         som_check_workspace() that is activated between commands.
7097
7098         * data-list.c: (dump_fixed_table, dump_free_table) Finished these
7099         for good, I hope.
7100
7101         * list.q: (begin_row) Changed title expansion style from
7102         SOPT_X_VERT to SOPT_X_SHSP.
7103
7104         * som-frnt.c: Now includes `somP.h'.
7105         (som_push_workspace, som_pop_workspace) New functions that, taken
7106         together, form a solution to the recursive table building problem
7107         mentioned yesterday.  Surrounded every table output routine
7108         throughout the program with calls to these functions.
7109         [GLOBAL_DEBUGGING] (som_check_workspace) New function.
7110         (som_create_table) Checks that there's an active workspace.
7111         (som_destroy_all_tables, som_crush) Removed.
7112
7113         * som-high.c: (global var som_preserve_tables) Removed, all
7114         references deleted.
7115         (som_submit_table) Checks that there's an active workspace.
7116         (dump_columnated_table) Doesn't columnate tables that would have
7117         just one row per column.
7118         (dump_crush_page, som_dump_crush_page) Removed debugging code.
7119         (som_dump_crush_page) Moved row number labels from left side of
7120         tables to right side.
7121         (som_get_table_size) Added support for SOPT_X_SHSP.
7122
7123         * som.h: New cell expansion type SOPT_X_SHSP.
7124
7125         * somP.h: (global vars arena_stack, n_arena_stack, m_arena_stack)
7126         New vars.
7127         (global var curtab_arena) Moved from som-frnt.c.
7128
7129 Sun Oct 20 13:45:28 1996  Ben Pfaff  <blp@gnu.org>
7130
7131         * ascii.c: [GLOBAL_DEBUGGING] (SUPPRESS_WARNINGS) New debug option
7132         that causes bad location warnings to be suppressed.
7133         (delineate) Saves current font when calling draw_text(); fixed
7134         handling of NULLs when backing up.  Also fixed line-wrapping bug.
7135
7136         * command.c: Re-enabled `LEAVE', `NUMERIC', `PRINT', `PRINT EJECT',
7137         `PRINT FORMATS', `PRINT SPACE', `STRING', `TITLE', `WRITE'.
7138
7139         * common.c: Added code to cause assertion failure to dump core
7140         when run under Checker.
7141
7142         * data-list.c: (dump_fixed_table) Fixed some inconsistencies, but
7143         there are still bugs.
7144
7145         * glob.c: (__eprintf) Removed.
7146
7147         * list.q: Inserted som_preserve_tables kluge that prevents tables
7148         from being thrown away due to recursive table building through
7149         som_output_line being called from a transformation during the LIST
7150         procedure invocation.  This is a general problem that must be
7151         solved in a better way since it applies to all procedures in
7152         general.
7153         (begin_row) Changed title options to SOM_X_VERT from SOM_X_BOTH.
7154         (flush_table) Removed SOM_TOPT_PRESERVE from submission options.
7155
7156         * numeric.c: Fixed several errors in the form of msg() calls.
7157
7158         * print.c: Updated for use of som.
7159         (dump_table) Reimplemented.
7160         (print_trns_proc) Calls som_eject_page() instead of eject_page().
7161         Calls som_output_text() instead of outs_line().
7162
7163         * som-frnt.c: (som_destroy_all_tables) Sets som_preserve_tables to
7164         0.
7165         (som_output_text) Function moved from som-low.c.  Interface
7166         changed.
7167
7168         * som-high.c: (som_preserve_tables) New global public variable
7169         declared in som.h.
7170         (som_submit_table) Destroys the tables only if som_preserve_tables
7171         is 0.
7172         (paginate_horizontally) Bugfix: sets som.mpw even if there's only
7173         one subrow per row.  Now labels subrows if there's more than one
7174         subrow per row.
7175         (dump_crush_table) Added wishlist comment.
7176         (som_eject_page) New public function declared in som.h.
7177
7178         * som-low.c: (som_dump_crush_page) Draws row labels if there's
7179         more than one subrow per row.
7180         (som_output_text) Moved to som-frnt.c.
7181
7182         * som.h: (SOM_TOPT_PRESERVE) Removed.
7183
7184         * title.c: (get_title) Changed interface.
7185         (cmd_title) Changed `title' to `outp_title'.
7186         (cmd_subtitle) Changed `subtitle' to `outp_subtitle'.
7187
7188 Sun Oct 20 09:04:15 1996  Ben Pfaff  <blp@gnu.org>
7189
7190         * list.q: (flush_table) Conforms to new partial options in
7191         som_submission_form.
7192
7193         * som-high.c: (paginate_horizontally) Changed form of subrow
7194         number labels.
7195         (build_target) Omits spacing before table if
7196         SOM_TOPT_PARTIAL_OMIT_TOP is selected.
7197         (dump_crush_page) Changed interface.  Only trims bottom rule if
7198         SOM_TOPT_PARTIAL_OMIT_BTM is not selected.
7199         (dump_crush_table) Handles partial tables.
7200         (output_row_label) New function.
7201         (som_dump_crush_page) Emits subrow number labels.  Draws vertical
7202         rule on the right edge of narrow subrows.
7203
7204         * som.h: Changed SOM_SUB_PARTIAL_* series of submission type
7205         constants to a series of SOM_TOPT_PARTIAL_* submission options.
7206         All references updated.
7207
7208 Fri Oct 18 19:46:49 1996  Ben Pfaff  <blp@gnu.org>
7209
7210         * misc.c: Comment fix.
7211
7212         * som-high.c: (examine_table) Treats crushed tables separates for
7213         purpose of determining header size.
7214         (paginate_horizontally) Allots space for line numbers in crushed
7215         tables with lots of subrows per row.  Calculates the `maximum page
7216         width', the width of the widest horizontal page.
7217         (build_target) Removed trim argument; all references changed.
7218         Stricter assertions.  (dump_crush_page) New function.
7219         (dump_crush_table) Reimplemented.
7220
7221         * som-low.c: (som_dump_page) Uses new RULE_ROW &c. constants.
7222         (som_dump_crush_page) Reimplemented, interface changed.
7223
7224         * somP.h: Many many new helper macros for use with crushed tables.
7225         (global var som) Removed `tv', `cum_y' members; all references
7226         removed.  New members `mpw', `digit_space'.
7227
7228 Sun Sep 29 19:37:03 1996  Ben Pfaff  <blp@gnu.org>
7229
7230         * arena.c: (arena_alloc) [!DISCRETE_BLOCKS] Removed `size'
7231         variable, changed to constant 1024.
7232         (arena_ca_strdup) Changed `sizeof(a_string)' to
7233         `sizeof(c_string)'.
7234         (arena_ca_strdup) [!DISCRETE_BLOCKS] Changed bad cast from
7235         `(c_string *)' to `(char *)'; this fixed some offset problems.
7236
7237         * filename.c: (readlink_malloc) Changed initial allocation from
7238         100 bytes to 128.
7239         (good_getcwd) Changed from xmalloc() to local_alloc(); removed
7240         comment.
7241
7242         * postscript.c: (read_fontmap) Fixed leak by changing &owner to
7243         &fm->owner in several places.
7244
7245         * som-high.c: (output_table) Changed interface to rest of world.
7246         (examine_crush_table) Removed.  Crushed tables are re-broken now,
7247         in preparation for rewrite.
7248
7249         * som.h: Comment fix.
7250
7251 Sat Sep 28 21:28:07 1996  Ben Pfaff  <blp@gnu.org>
7252
7253         * ascii.c: (ascii_init_driver) Disposes of x->file.filename and x
7254         itself in the cleanup stage.
7255
7256         * descript.q: (display) At least temporarily, changed the table
7257         format to a crushed table.
7258
7259         * list.q: (begin_row) At least temporarily, added horizontal lines
7260         between cases.
7261
7262         * som-high.c: (examine_crush_table) Sets som.hh to the width of
7263         the horizontal "headers," that is, to the width of the far left
7264         and far right rules.
7265         (justify_pagination) Sets som.th to the width of the widest row
7266         in the crushed table.  Fixed inner loop off-by-one error.
7267
7268         * som-low.c: (som_dump_crush_page) Added code to draw horizontal
7269         rules.
7270
7271         * somP.h: Comment fix.
7272
7273 Fri Sep 27 20:08:39 1996  Ben Pfaff  <blp@gnu.org>
7274
7275         * filename.c: (open_file_ext) Now, doesn't set f->file to NULL
7276         before closing it; also, opens the constructed filename `s'
7277         instead of f->filename.
7278
7279         * postscript.c: Moved initialization of x->loaded, x->prop,
7280         x->fixed, x->current, also the add_encoding() calls, into
7281         postopen().
7282         (preclose) Destroys x->combos; sets x->loaded, x->combos to NULL;
7283         sets x->last_font to NULL; sets x->next_combo to zero.
7284
7285         * som-high.c: (crushed_row_height) Moved definition farther up.
7286         (som_submit_table) Doesn't calculate line width, font size until
7287         after calling open_page(), to accomodate changes to PostScript
7288         driver.
7289         (vert_headers) Removed; equivalent functionality moved to
7290         examine_table(), examine_crush_table().
7291         (justify_pagination) Replaced with different algorithm.
7292         (dump_crush_table) Bugfix that caused tables to fail to be clipped
7293         at the bottom of the page.
7294
7295 Thu Sep 26 22:20:26 1996  Ben Pfaff  <blp@gnu.org>
7296
7297         * command.c: Added cmd_list back into cmd_table.
7298
7299         * freq.c, frequencies.q, repeat.c, list.q, vars-atr.c, vfm.c:
7300         Comment fix: `#define DEBUGGING' --> `#define DEBUGGING 1'.
7301
7302         * list.q: (flush_table) Updated to new som_submission_form format.
7303
7304         * som-frnt.c: Comment fix.
7305
7306         * som-high.c: Changed `#endif' to `#undef EXTERN'.
7307         (output_table) Calls som_get_table_size() directly; handles
7308         crushed tables.
7309         (examine_crush_table) New function; calls vert_headers().
7310         (examine_table) Moved some code into new function, vert_headers().
7311         (justify_pagination) New function.
7312         (dump_plain_table) Removed `static' from `cy'.
7313         (dump_crush_table) New function.
7314
7315         * som-low.c: (som_dump_crush_page) New function.
7316
7317         * som.h: Comment fixes.
7318         (enum SOM_TOPT_CRUSH) New.
7319         (SOM_SUB_PARTIAL_BEG, SOM_SUB_PARTIAL_MID, SOM_SUB_PARTIAL_END)
7320         Temporarily set to zero to make do with LIST procedure.
7321
7322         * somP.h: Re-ordering.
7323
7324 Wed Sep 25 19:36:11 1996  Ben Pfaff  <blp@gnu.org>
7325
7326         * som.c: Split into som-frnt.c, som-high.c, som-low.c.
7327
7328         * somP.h: New file for use by som-high.c, som-low.c.
7329
7330         * q2c.c: Added definition for VME.
7331         (get_line) Now dumps `!' comment lines to the output file
7332         verbatim.
7333
7334         * crosstabs.q, descript.q, file-handle.q, frequencies.q, list.q,
7335         set.q: Changed format of `!' comment lines.
7336
7337 Tue Sep 24 18:39:09 1996  Ben Pfaff  <blp@gnu.org>
7338
7339         * All source files: Added copyright notice.
7340
7341         * common.c: (xmalloc, xrealloc, xstrdup) Cast size_t's to unsigned
7342         longs in msg() calls.
7343
7344         * con32s.c: (xmalloc, xrealloc) Updated from common.c.
7345
7346         * q2c.c: (xmalloc, xrealloc, xstrdup) Updated from common.c.
7347
7348 Sat Sep 21 23:16:31 1996  Ben Pfaff  <blp@gnu.org>
7349
7350         * output.c: (outp_read_devices) Changed criteria for
7351         distinguishing different types of lines.
7352
7353 Fri Sep 20 22:52:28 1996  Ben Pfaff  <blp@gnu.org>
7354
7355         * cmdline.c: Changed syntax message.
7356
7357         * filename.c: (good_getcwd) Bug fix (?).
7358         (normalize_filename) [__BORLANDC__] Uses _fullpath() library
7359         function.
7360         (search_path) Appends DIR_SEPARATOR to directory name only if it
7361         does not already end with one.
7362
7363         * glob.c: Checks STAT_PAGER envvar before PAGER.
7364
7365         * output.c: Checks environment variables instead of just local
7366         macros.
7367
7368 Tue Sep 10 21:39:00 1996  Ben Pfaff  <blp@gnu.org>
7369
7370         * arena.c: (arena_destroy) Swatted a subtle bug that cropped up
7371         when the pointer passed to the function was within the arena
7372         itself, so that it couldn't properly be set to NULL _after the
7373         arena was freed_.
7374
7375         * command.c: Re-enabled DISPLAY.
7376
7377         * display.c: Rewritten to handle tables.  Untested.
7378
7379         * filename.c: (search_path) Fixed memory leak.
7380
7381         * frequencies.q: (cmd_frequencies) Frees v_variables.
7382         (postcalc) Calls cleanup_freq_tab() after displaying statistics.
7383         (cleanup_freq_tab) New function to garbage collect.
7384         (dump_full) Elegantized.
7385
7386         * main.c: New comment.
7387
7388         * output.h: New tag for tagged quotes: TAG_NEWLINE.
7389
7390         * postscript.c: Comment fix.
7391         (release_fontmap, free_font_entry) New functions.
7392         (ps_init_driver) Sets free_font_entry() as the freefunc for
7393         hashtable `loaded'.  Calls release_fontmap() when destroying a
7394         driver; also frees the output filename; also frees the
7395         ps_driver_ext block.
7396         (free_ps_encoding) Frees the filename as well as the encoding
7397         block.
7398         (output_encodings) Frees the line buffer and pops the msg-filename
7399         stack.
7400         (read_fontmap) Frees the fontmap filename and the line buffer.
7401         (postopen, preclose) Misc. garbage collection fixes.
7402         (ps_open_page) Destroys the `combos' hash table; sets `last_font'
7403         to NULL; this fixes some output problems.
7404         (text) Handles TAG_NEWLINE.  Untested.
7405
7406         * som.c: (cell_byte_size) Merged SCON_VALUE and SCON_TEXT cases.
7407         (som_set_string) Removed.  All references changed to
7408         `som_set_text'.
7409         (som_set_text) Rewritten.  New interface.  More general.
7410
7411         * som.h: Minor format changes.
7412         (struct som_value_cell) Removed; all references changed to
7413         `som_text_cell'.
7414         (enums SOT_*) Changed.
7415
7416 Mon Sep  9 21:43:13 1996  Ben Pfaff  <blp@gnu.org>
7417
7418         * command.c: Re-enabled SPLIT FILE.
7419
7420         * postscript.c: Comment fix.
7421
7422         * som.h: Added `SOT_NONE'.
7423
7424         * split-file.h: (cmd_split_file) Removed superfluous parenthesis.
7425
7426         * vfm.c: (dump_splits) Reimplemented.
7427
7428 Sat Sep  7 22:35:12 1996  Ben Pfaff  <blp@gnu.org>
7429
7430         * Compiled the project under gcc 2.7.2, which gave some new
7431         warnings.  This led to many additions of casts from unsigned to
7432         int sprinkled throughout the code.
7433         
7434         * arena.c: Many uses of `unsigned' changed to `size_t'.
7435
7436         * command.c: Added END FILE, END REPEAT to command table.
7437         (var cmd_end_repeat) Renamed cmd_end_repeat_p.
7438         (find_command, FILE_TYPE_okay) Not commented out anymore.
7439         (parse_cmd) Calls FILE_TYPE_okay again.
7440         (output_line) Added calls to som_output_text() to put the line
7441         in the output files.
7442
7443         * common.c: (macro VME) Format changes.
7444         (xstrdup) Asserts that its argument is not NULL.
7445         
7446         * data-list.c: Implemented dump_fixed_table().
7447         
7448         * inpt-pgm.c: Formatting changes.  Comment changes.
7449         (end_case_proc) Renamed end_case_trns_proc.
7450         (cmd_end_file, end_file_trns_proc) New functions.
7451
7452         * misc.c: Many uses of `int' and `unsigned' changed to `size_t'.
7453
7454         * misc.h: (local_strdup) New macro corresponding to strdup() but
7455         allocating its data through local_alloc() if possible--that is, if
7456         GNU C is in use.
7457
7458         * postscript.c: Comment changes.
7459         (quote_ps_name, quote_ps_string, output_encodings) New functions.
7460         (output_line, add_string) New macros supporting
7461         output_encodings().
7462         (postopen) Fixed contents of ${fixed-font} and ${prop-font}
7463         substitution vars.  Calls output_encodings() when a line
7464         consisting of `!encodings' is encountered.
7465         (preclose) Some code moved into quote_ps_string().
7466         (dump_line) Changed into macro supporting dump_fancy_line().
7467         (switch_font) Now outputs DSC "%%IncludeResource: font (...)"
7468         command when appropriate.
7469         (write_text) Fixed `literal_char' array (I think it's fixed, at
7470         least.)
7471         (text) Fixed bug when width was zero.  Now exits immediately on
7472         zero height_left.  Now, when executing `goto restart;', checks
7473         that cp<end, so that we don't read beyond end-of-string.  Also,
7474         outputs the correct code to the output file by outputting the code
7475         from the metric instead of the internal metric index.
7476
7477         * repeat.c: (cmd_end_repeat) New function.
7478
7479         * som.c: (var som) `headers' renamed `options' and semantics
7480         changed.  All references changed.
7481         (draw_title) `if(px!=-1 || px!=-1)' --> `if(px!=-1 || py!=-1)'.
7482         (build_target) Only inserts spacing if SOM_TOPT_SPACING not
7483         selected.
7484         (som_text_table) Removed.
7485         (som_output_text) New function.
7486
7487         * som.h: (struct som_submission_form) Removed `header', `reuse',
7488         replaced with bitmapped field `options'.
7489         (SOM_TOPT_*) New enum set for som_submission_form.options.
7490         (SOT_*) New enum set for som_output_text().
7491
7492         * temporary.c: (copy_variable) When copying the var label, only
7493         calls xstrdup() if it's non-NULL.
7494
7495         * var.h: (enum type `vartype') Removed; all references changed to
7496         `int'.
7497
7498         * vars-atr.c: (init_variable) Changed local var `nbytes' from
7499         `int' to `size_t'.
7500
7501 Thu Sep  5 22:05:56 1996  Ben Pfaff  <blp@gnu.org>
7502
7503         * font.h: Comment changes.
7504
7505         * groff-font.c: (groff_read_font) Initializes `name' field to
7506         NULL.  Handles `encoding' field.
7507
7508         * hash.c: (hsh_dump) [GLOBAL_DEBUGGING] Output formatting changes.
7509
7510         * postscript.c: (struct font_entry) Removed `position' field.
7511         (struct ps_font_combo) New struct.
7512         (struct ps_driver_ext) Removed field `next_position'.  New fields
7513         `combos', `next_combo'.  `last_font' field changed from
7514         `font_entry *' to `ps_font_combo *'.
7515         (ps_init_driver) Reformatted; handles new fields.  When
7516         OPO_AUTO_ENCODE is set, adds the two default fonts' encodings to
7517         the encoding list.
7518         (get_encoding, find_encoding_file) New functions.
7519         (add_encoding) Some code moved out into find_encoding_file().
7520         (postopen) Changed value for ${title}.
7521         (preclose) Sets `loaded' field to NULL after destroying the hash
7522         table.
7523         (ps_open_page) Added comment.  Inits the `combos' and `next_combo'
7524         fields.
7525         (ps_text_set_font_by_position) Figures out the current family if
7526         not known.
7527         (compare_ps_combo, hash_ps_combo, free_ps_combo) New functions.
7528         (switch_font) Implemented.
7529         (write_text) Calls switch_font() more often.  Format changes.
7530         #undefs its macros after they're no longer useful.
7531         (text) Changed `continue' at one point to a jump to the top of the
7532         loop because we don't want `separate' reset to 0 at that point.
7533         (load_font) No longer sets `position' in the font_entry created.
7534
7535 Wed Sep  4 21:45:35 1996  Ben Pfaff  <blp@gnu.org>
7536
7537         * font.h: (struct font_desc) New member `encoding', which is not
7538         properly handled yet.
7539
7540         * glob.c: (init_glob) Some new i18n code, which is probably
7541         screwed up.
7542
7543         * output.c: (outp_read_devices, outp_get_paper_size) Changed
7544         `size' local from `int' to `size_t'.
7545
7546         * postscript.c: New driver configuration parameter `auto-encode'.
7547         New enums OPO_AUTO_ENCODE, ODA_COUNT.
7548         (struct font_entry) New member `position'.
7549         (struct ps_driver_ext) Reordered.  New hash table member
7550         `encodings'; new members `next_position', `next_encoding',
7551         `last_font'.  Members `current', `prop', `fixed' changed from type
7552         `font_desc *' to `font_entry *'; all references changed.
7553         (struct ps_encoding) New struct.
7554         (read_ps_encodings, compare_ps_encoding, hash_ps_encoding,
7555         free_ps_encoding, add_encoding) New functions.
7556         (ps_init_driver) Added OPO_AUTO_ENCODE to default
7557         x->output_options.  Initializes new members of ps_driver_ext.
7558         Changed default value for prologue_fn, encoding_fn.  Calls
7559         read_ps_encodings after loading default fonts.
7560         (option_tab[], ps_option) Handle new configuration parameter.
7561         (switch_font) New function.
7562         (struct output_char) `font' member changed from `font_desc *' to
7563         `font_entry *'.  New member `separate'.
7564         (read_fontmap) Changed `size' from `int' to `size_t'.
7565         (output_line, put_number) New macros for write_text().
7566         (write_text) Optimizes text output by consolidating multiple
7567         calls to PostScript `show' operator.
7568         (text) Keeps track of when text arguments can't be consolidated by
7569         write_text(), and marks those spots in the output stream.
7570         (load_font) Sets `position' of the allocated font_entry to -1, cuz
7571         the font hasn't been switched to by switch_font(), which is where
7572         the position is important--the PostScript is what cares about the
7573         position.
7574
7575 Sat Aug 31 23:52:38 1996  Ben Pfaff  <blp@gnu.org>
7576
7577         * hash.c: (hsh_destroy) Ignores NULL argument.  Doesn't try to
7578         call a NULL free_func.
7579         (hsh_rehash) Elegantized.
7580         (hsh_probe) Fix bug that manifested when the table was expanded
7581         and thus had to change location in memory.  Good thing
7582         too--otherwise could have been much more subtle.
7583         (hsh_find) [GLOBAL_DEBUGGING] Not stubbed out anymore.
7584         (hsh_foreach) New function for hash table iteration.
7585
7586         * hash.h: (struct hsh_iterator) New.
7587
7588         * lexer.c: (parse_tagged_quote) Font and family name strings in
7589         tags are now null-terminated.
7590
7591         * output.c: (outp_evaluate_dimension) Fixed over-aggressive unit
7592         parsing.
7593         (internal_get_paper_size, outp_get_paper_size) Fixed; now work as
7594         documented.  (Never before tested?)
7595
7596         * output.h: Comment changes.
7597
7598         * postscript.c: New driver options `optimize-text-size',
7599         `optimize-line-size', `max-fonts-simult'.  New enum set for
7600         specing cached line types.  Comment fixes.
7601         (struct line_form) New struct.
7602         (struct ps_driver_struct) New members `text_opt', `line_opt',
7603         `max_fonts', `lines'.
7604         (ps_init_driver) Initializes new members of ps_driver_struct.
7605         (user option type enum set) New member `nonneg_int_arg'.
7606         (static var option_tab[]) Supports new options.
7607         (ps_option) Handles new options.
7608         (find_ps_file) Made static.  No longer calls hsh_dump().
7609         (ps_get_var) Made static.
7610         (preclose) Dumps out proper DSC trailer.
7611         (ps_open_page) Elegantized.
7612         (ps_close_page) Calls dump_lines() if appropriate.
7613         (ps_line_horz, ps_line_vert, ps_line_intersection) Reduced to
7614         wrappers around line().
7615         (int_2_compare, compare_line, dump_line, dump_fancy_line,
7616         dump_lines, hash_line, free_line, line) New functions for support
7617         of line caching.
7618         (write_text, text) Made static.
7619         (text) Added to font support, not finished.
7620
7621 Thu Aug 29 21:36:41 1996  Ben Pfaff  <blp@gnu.org>
7622
7623         * font.h: (struct font_desc) New members ascent, descent.
7624
7625         * groff-font.c: (groff_read_font) Calculates font ascent and
7626         descent from the ascent and descent of the `d' and `p' characters,
7627         respectively, as per a suggestion on comp.fonts.
7628
7629         * postscript.c: (ps_open_page, ps_close_page, ps_line_horz,
7630         ps_line_vert, ps_line_intersection) Rewritten to deal with changed
7631         prologue.
7632         (write_text) Handles text right-justification and centering (not
7633         full justification).  Still very inefficient.  (One output line
7634         per character?!)
7635         (struct output_char) Added fields for font and font size.
7636         (text) Many bugfixes.
7637
7638 Sat Aug 24 23:26:00 1996  Ben Pfaff  <blp@gnu.org>
7639
7640         * cmdline.c: (usage) Calls outp_list_classes().
7641
7642         * font.h: Comment fix.
7643
7644         * groff-font.c: New exported global var `space_index'.
7645         (groff_init) New function to initialize `space_index'.
7646         (hash_kern) Casts result to unsigned.
7647         (font_name_to_index) Renamed font_char_name_to_index.  All
7648         references changed.  Also, now returns the value of `space_index'
7649         when passed an ASCII space character as an argument.  Fixed
7650         handling of nulls.
7651         (font_get_kern_adjust) Changed i from `int' to `unsigned'.
7652         Handles passed NULL pointers properly.
7653
7654         * lexer.c: (parse_tagged_quote) Comment fix.  Better range
7655         checking.
7656
7657         * output.c: (outp_list_drivers) Removed.  Removed all references.
7658         
7659         * output.h: Comment fixes.
7660
7661         * postscript.c: (ps_open_global) Calls groff_init().
7662         (output_char) New structure.
7663         (write_text) New function.
7664         (text) No longer stubbed out!  Now the output is correct--with a
7665         few exceptions, one of them being that the page has to be held
7666         upside down into a mirror.
7667
7668 Sun Aug 11 21:31:22 1996  Ben Pfaff  <blp@gnu.org>
7669
7670         * font.h: Comment fix.
7671         
7672         * font.c: (name_to_index) Renamed font_name_to_index, made extern.
7673         All callers changed.
7674         (number_to_index) Renamed font_number_to_index, made extern.  All
7675         callers changed.
7676         (font_get_kern_adjust, font_get_char_metrics) New functions.
7677
7678         * output.h: New constant OUTP_T_INTERNAL_DRAW.
7679
7680         * postscript.c: Changed default line width back to 1/2 point.
7681         (ps_line_horz, ps_line_vert, ps_line_intersection) Now lines are
7682         in the center of the space allotted for them, not just a fixed
7683         offset from the edge of the space; this fixes some bugs.
7684         (ps_line_intersection) Now supports all command line styles.
7685         (ps_text_get_size) Bug fix in computation of em width.
7686         (text) New function, the meat behind ps_text_metrics and
7687         ps_text_draw.  Not complete.
7688         (ps_text_metrics, ps_text_draw) Removed the stub taken from
7689         ascii.c; call text().
7690
7691 Sat Aug 10 23:28:17 1996  Ben Pfaff  <blp@gnu.org>
7692
7693         * arena.c: (arena_free) Assert that the argument is non-NULL.
7694         
7695         * groff-font.c: (add_kern) Calls arena_free() for old_kern if and
7696         only if old_kern is non-NULL.
7697
7698         * postscript.c: (ps_init_driver) Changed default line width to 1
7699         point.
7700         (postopen) New prologue variables.
7701         (ps_line_horz, ps_line_vert, ps_line_intersection) Implements some
7702         more of the common line styles properly, but not all.
7703         (ps_text_metrics) Fixed problem with this stubbed out version that
7704         kept it from taking font sizes into account.
7705
7706 Thu Aug  8 22:31:11 1996  Ben Pfaff  <blp@gnu.org>
7707
7708         * arena.c: (arena_malloc) Bug fix.
7709         (arena_dump) [GLOBAL_DEBUGGING] New function.
7710
7711         * ascii.c: Comment fix.
7712         (count_fancy_chars, delineate) Now static functions.
7713         
7714         * filename.c: (interp_vars) Bug fixes.
7715
7716         * font.h: Comment fixes.
7717
7718         * glob.c: (init_glob) Sets set_viewwidth, set_viewlength at
7719         beginning in case we have an error message to display before
7720         initializing the display.
7721
7722         * groff-font.c: Comment fix.  Changed rehash threshold from 2/3
7723         full to 1/2 full.
7724         (groff_read_font) Bug fixes.
7725         (name_to_index) Increments hash.used.  Sets `name' field of hash
7726         entry properly.
7727         (add_kern) Sets kern_max_used after rehashing.  Other bug fixes.
7728
7729         * hash.c: Return type changed.
7730
7731         * postscript.c: Continued development.  Now marks lines on the
7732         paper, but very buggy.
7733
7734 Sat Aug  3 20:50:35 1996  Ben Pfaff  <blp@gnu.org>
7735
7736         * Changed comments in many source files from `/* xxx /* yyy */' to
7737         `/* xxx */ /* yyy */' for cleanliness.
7738
7739         * arena.c: (arena_sd_strdup) New function.
7740         
7741         * ascii.c: (struct ascii_driver_ext) New member `file'.
7742         (ascii_init_driver) Fills out member `file' for initing; uses
7743         close_file_ext for closing drivers.
7744         (ascii_option) Changed %.*s back to %s because the a_string's are
7745         always null-terminated.
7746         (postopen, preclose) New functions.
7747         (ascii_open_page) Uses new style of open_file_ext.
7748         (ascii_option, commit_line_buf, output_lines) Use ext->file.file
7749         instead of this->output.
7750         (__assert_fail) Removed.
7751
7752         * cmdline.c: Changed syntax_message[].
7753
7754         * error.c: #include's <readline/history.h> only if the history
7755         library is available, not if just the readline library is
7756         available.
7757
7758         * filename.c: (expand_line) Removed alloca() support.
7759         (interp_vars) No longer tilde-expands argument.  Limit on output
7760         length removed.
7761         (tilde_expand) Now treats argument as path rather than filename.
7762         [!unix] Now is a no-op function.
7763         (search_path) Better verbose message formatting.
7764         (open_file, close_file) Comment fixes.
7765         (close_file) [!unix] Doesn't bother with pipes.
7766         (open_file_ext) Completely rewritten, interface revamped.
7767         (close_file_ext) New function.
7768
7769         * font.h: Comment changes.
7770
7771         * frequencies.q: Removed AIX alloca support since it doesn't use
7772         alloca.
7773
7774         * hash.c: Comment changes & additions.
7775         (hsh_create) Initializes entire table instead of first M entries.
7776         (hsh_probe) Stupid bug fixed.  Now it works.
7777         (hsh_dump) [GLOBAL_DEBUGGING] New function.
7778
7779         * main.c: (parse) Detects EOF properly in token-eating loop.
7780         Should the STOP token have its value changed to 0?
7781
7782         * misc.c: (blp_getdelim) [HAVE_GETDELIM] Now it's a macro.
7783         (blp_getline) Now it's a macro.
7784
7785         * output.h: (struct outp_driver) Removed members output, filename.
7786         
7787         * output.c: (outp_init) [!NO_POSTSCRIPT] Installs PostScript
7788         drivers in driver table.
7789         (outp_read_devices) Frees buf.  Warns if there are no active
7790         output drivers.
7791         (outp_configure_clear) Sets outp_configure_vec to NULL after
7792         deleting its elements.
7793         (configure_driver, destroy_driver) Removed references to output,
7794         filename members of outp_driver.
7795         (outp_evaluate_dimension, internal_get_paper_size,
7796         outp_get_paper_size) New functions.
7797
7798         * postscript.c: Continued development.  Now links but doesn't make
7799         any marks on the page.  Lotsa bugs I suppose.
7800
7801         * str.c: (strcasecmp) [!HAVE_STRCASECMP] New function.
7802
7803         * str.h: Comment changes.
7804
7805 Sat Jul 27 22:32:38 1996  Ben Pfaff  <blp@gnu.org>
7806
7807         * Removed dependencies on non-nested comments in several files.
7808         Also removed references to (unix || __unix__) in #if's since
7809         prefh.orig makes those two equivalent.
7810         
7811         * ascii.c: (ascii_open_global) Creates ascii_arena.
7812         (ascii_close_global) Destroys ascii_arena.
7813         (ascii_init_driver) Doesn't create ascii_arena.
7814         (ascii_copy_driver) Removed.
7815         (ascii_option) Possible bugfix regarding %s vs. %.*s with a_string's.
7816         (outp_class ascii_class) Removed ascii_copy_driver reference.
7817
7818         * frequencies.q: Now can display all statistics except median.
7819         Still not finished.
7820
7821         * output.c: Handles outp_class.ref_count so output class
7822         destructors are called properly.
7823         (add_class) Sets ref_count to 0.
7824         (configure_driver) Initializes class if ref_count++ is 0.
7825         (destroy_driver) Destructs class if --ref_count is 0.  Frees the
7826         class output file name.
7827         
7828         * output.h: (struct outp_class) Removed copy_driver, inited.
7829         Added ref_count.
7830
7831         * postscript.c: Completely replaced but not finished.
7832         
7833 Tue Jul 23 21:48:36 1996  Ben Pfaff  <blp@gnu.org>
7834
7835         * approx.h: #includes <float.h>.
7836
7837         * arena.h, arena.c: Many functions changed to take an arena **
7838         instead of an arena *, for consistency.  All callers changed.
7839         (arena_alloc) Now creates a new arena if passed *A that is NULL.
7840         (arena_destroy) Sets *A to NULL.
7841         
7842         * ascii.c: (delineate) Implements OUTP_T_VERT correctly.  Removed
7843         assertion that `width' be positive.
7844
7845         * command.c: Removed #if's from cmd_table.
7846         (walk_cmdtable_func) [0] New function (debug code).
7847         (init_cmd_parser) [0] Dumps out cmd_table (debug code).
7848         (parse_cmd) Doesn't return failure for unimplemented commands.
7849
7850         * common.h: (SYSMIS) Changed from DBL_MAX to -DBL_MAX.
7851         (SYSCODE) New constant macro.
7852
7853         * descript.q: Checks for positive n_variables before performing
7854         analysis.
7855
7856         * file-handle.q: (get_handle_by_filename) Bug fix: passes &f to
7857         avl_find instead of &fp as arg 2.
7858
7859         * frequencies.g, frequencies.q: Continued updating; now compiles &
7860         works again, but not complete.
7861
7862         * main.c: Changes to user messages.
7863
7864         * misc.c: (reverse) [0] New function.
7865
7866         * settings.h: Comment removed.  #includes "common.h".
7867
7868         * som.c: (som_set_null) New function.
7869         (som_set_value, som_set_string, som_set_text) More detailing
7870         assertions.
7871         (som_set_float) Implemented function.
7872         (dump_columnated_table) Bug fix regarding page breaks.
7873         (draw_cell) Bug fix regarding text that spilled out of a cell.
7874         (draw_intersection, draw_horz_rule, draw_vert_rule) No longer draw
7875         null lines.
7876         (get_cell_size) Support SCON_EMPTY cells.
7877         (get_table_size) When calculating rules' widths and heights, mask
7878         out SLIN_SPACING bit.  Added SOPT_X_HLTL support.
7879         
7880         * som.h: (som_any_cell) New option SOPT_X_HTLT.  Removed
7881         SOPT_X_SHADE.
7882         (struct som_submission_form) New member `header'; all users
7883         changed.
7884
7885         * val-labs.c: (get_label) User messages changed.
7886
7887         * var.h: Changed FREQUENCIES structures.
7888
7889         * vars-atr.c: (is_num_user_missing, is_str_user_missing) Made
7890         inline.
7891         
7892 Fri Jul 19 19:11:13 1996  Ben Pfaff  <blp@gnu.org>
7893
7894         * approx.h: Definition of EPSILON now depends on system's
7895         DBL_EPSILON.  Removed GNU C specific code.
7896         (cmpapx) Renamed approx_compare.
7897
7898         * frequencies.g, frequencies.q: Continued updating; still doesn't
7899         compile.
7900
7901         * groff-font.c: (name_to_index) Fix bug that kept it from
7902         compiling.
7903
7904         * hash.c, hash.h: Completed work.
7905
7906         * var.h: Changes to freq_tab, frequencies_proc.
7907         
7908 Wed Jul 17 21:23:36 1996  Ben Pfaff  <blp@gnu.org>
7909
7910         New hashing code.
7911         * hash.c, hash.h: New files.  Not completed.
7912         * Makefile.am: Added hash.c to source file list.
7913         * font.h: (struct font_desc) New member kern_size_p.
7914         * groff-font.c: Uses hash.h.
7915         (hashpjw) Moved to hash.c.
7916         (next_prime_power) Rewrote, renamed hsh_next_prime, moved to
7917         hash.c.
7918         (static var hash) New member size_p.
7919         * var.h: Includes hash.h.
7920         (struct freq_tab) Changed AVL_TREE to hash_tab.
7921
7922         * vars-prs.c: Comment, formatting fixes.
7923
7924         * frequencies.g, frequencies.q: Continued updating.  Not yet
7925         working.
7926
7927         * formats.c: Bug fix.
7928
7929 Tue Jul 16 22:10:04 1996  Ben Pfaff  <blp@gnu.org>
7930
7931         Increasing parallelism between DESCRIPTIVES and FREQUENCIES.
7932         * descript.g: Comment fixes.
7933         * descript.q: Comment fixes.  Moved some declarations into var.h.
7934         Made dsc_info a static table.  Updated FIXMEs.
7935         (internal_cmd_descriptives) Beautified.
7936         
7937         * frequencies.q: Started updating into working order.
7938         * frequencies.g: New file analogous to descript.g.
7939         * var.h: Comment fixes.  Added structures for FREQUENCIES.
7940         
7941         * som.c: Removed vestiges of crushing and partial table support.
7942
7943 Sun Jul 14 15:45:31 1996  Ben Pfaff  <blp@gnu.org>
7944
7945         * Many more changes to som.c especially, but these will not be
7946         documented as I have resolved to remove them.  This patchlevel is
7947         being released solely so that I can fall back to it if I decide
7948         that removing the changes is not a good idea.
7949
7950 Sat Jul 13 09:58:44 1996  Ben Pfaff  <blp@gnu.org>
7951
7952         * som.c: (global var som) New member `cum_y'.
7953         (build_target) Properly handles titles for partial tables.
7954         (dump_partial_beg, dump_partial_mid, dump_partial_end)
7955         Merged into single new function dump_partial().  Fixed problem
7956         with titles on partial tables.
7957         (dump_table) Calls dump_partial() for all parts of partial tables.
7958         (dump_page) Criteria for drawing title changed.
7959         
7960 Fri Jul 12 22:03:36 1996  Ben Pfaff  <blp@gnu.org>
7961
7962         * command.c: (cmd_table) Added LIST, WEIGHT.
7963
7964         * command.c: (cmd_remark) No longer frees `s' since it's not
7965         dynamically allocated.
7966         
7967         * data-out.c: (convert_f) Now correctly handles the case where
7968         abs(v->f)<1 but v->f rounds to a value of 1.00 given the specified
7969         number of decimals.
7970         (som_destroy_all_tables) Removed argument.  All callers changed.
7971         (som_vline, som_hline) Argument validity checking corrected.
7972         (som_set_value) Implemented half-heartedly.
7973         (replicate_table) Copies tables piece-by-piece when using Checker.
7974
7975         * som.h: New line style SLIN_1THIN, currently equivalent to
7976         SLIN_0.  New enum set SOM_SUB_*.
7977         (struct som_submission_form) Removed `seq_no'.  Added `type'.
7978         
7979         * list.q: Newly working file; uses partial tables.
7980         
7981         * som.c: (som_reduce_table) Renamed som_set_table_height().
7982         (som_crush) Removed argument `group'.
7983         (global var som) Removed `nt', `seq_no'.  Added `type'.
7984         (som_submit_table) Arguments changed.
7985         (output_table) Removed partial table code.
7986         (build_target) New arg; partial table support added.  All callers
7987         changed.
7988         (dump_plain_table) Removed partial table code.
7989         (dump_partial_beg, dump_partial_mid, dump_partial_end) New functions.
7990         (dump_table) Supports partial tables.
7991         (dump_page) New argument to allow not drawing top and/or bottom
7992         headers.  All callers changed.  Supports partial tables.
7993
7994 Sat Jul  6 22:22:25 1996  Ben Pfaff  <blp@gnu.org>
7995
7996         * data-out.c: Changed `#include <approx.h>' to `#include
7997         "approx.h".
7998         (convert_F) Comment fix.  Now won't print `-.000', etc.
7999
8000         * descript.q: Now Z-scores work, although there appears to
8001         be a bug (which might actually be in data-out.c:convert_F()).
8002         (descriptives_trns_proc, descriptives_trns_free) New functions.
8003         (run_z_pass) Implemented.
8004         
8005         * var.h: Comment fixes.
8006         (dsc_z_score, descriptives_trns) New structs.
8007         (descriptives_trns) Added to any_trns as `dsc'.
8008
8009         * error.c, error.h: New error class, IS (Installation Script
8010         error), used in those instances where the error is in the
8011         installation, but there is a script file or installation file that
8012         can be usefully referred to.
8013         
8014         * output.c: Change many IE classes to IS classes.
8015
8016         * cases.c, command.c, common.c, crosstabs.q, expr-evl.c,
8017         frequencies.q, list.q, vars-prs.c, vfm.c: Removed reference to
8018         HAVE_MALLOC_H because Borland C++ alloca() is broken, so why
8019         include the corresponding header?
8020         
8021         * glob.c: (init_glob) Don't malloc term_buffer under Checker.
8022         Don't bail out if termcap can't be read.
8023
8024         * som.c: (som_destroy_table) Removed.
8025         (som_reduce_table, som_destroy_all_tables) New functions.
8026         (som_crush) New function, not implemented.
8027         
8028         * som.h: New table option STAB_CRUSH.  Comment fix.  New struct
8029         som_submission_form.  Function prototypes revised.
8030
8031         Outputting huge tables (1000s of rows) a few rows at a time
8032         is supported, though untested.  May even break everything.
8033         Actually, the code doesn't even compile right now.
8034         * som.c: (struct som) New fields htv, nt, seq_no.
8035         (som_submit_table) Multiple arguments changed to a single
8036         pointer to struct submission_form.  Only increments subtable_num
8037         if seq_no is zero.  Only destroys table if it's not going to
8038         be reused.
8039         (replicate_table) New function.
8040         (output_table) Comment fix.
8041         (examine_table) Changed inline code to code calling
8042         replicate_table().  Calculates htv.  Supports partial tables.
8043         (draw_title) Removed comment.
8044         (build_target) Only allows for title on first part of partial
8045         tables.
8046         (dump_plain_table) Only resets table chunk number on first part
8047         of partial tables; FIXME: doesn't work quite right.  Supports
8048         partial tables.
8049         (dump_page) Titles only on first part of partial tables.
8050
8051 Fri Jul  5 20:16:19 1996  Ben Pfaff  <blp@gnu.org>
8052
8053         * Thanks to an unreliable IDE hard drive, I have spent the last
8054         day reconstructing my Debian GNU/Linux installation and redoing
8055         the previous day's changes--somehow I managed to save every file
8056         except for output.c and output.h.  So the following changes could
8057         really be considered independent of the output.c, output.h changes
8058         from Jul 4.
8059
8060         * output.h, output.c: Moved the outp_configure_vec global var,
8061         outp_names struct, and enum set OUTP_S_* from output.h to output.c.
8062         outp_configure_vec is now static.
8063         
8064 Thu Jul  4 20:20:24 1996  Ben Pfaff  <blp@gnu.org>
8065
8066         * The entire philosophy behind configuration of the output drivers
8067         changed.  Now there is a termcap-type configuration where drivers
8068         to be read are determined beforehand, rather than parsing the
8069         entire output init file and storing it in memory & deciding what
8070         to actually use later.  Faster & more memory-efficient at the same
8071         time, cool.
8072         
8073         * output.c: Comment fix.  Removed outp_init_drivers global var.
8074         Removed all references to synonyms.  New structure outp_defn.  New
8075         global vars outp_macros, outp_configure_vec.
8076         (search_name, delete_name, add_name, check_configure_vec,
8077         expand_name, find_defn_value) New static functions.
8078         (outp_configure_clear, outp_configure_add, outp_configure_macro,
8079         outp_read_devices) New extern functions.
8080         (outp_init) Much functionality moved into outp_read_devices.
8081         (outp_read_devices) Format of output init file changed; name of
8082         file is `devices' rather than `output' to avoid Makefile
8083         conflicts.
8084         (outp_clear) Renamed outp_done.
8085         (outp_list_classes) Bug fix, cleaned up.
8086         (outp_list_drivers) Not implemented anymore.
8087         (outp_configure_driver) Now a static function; simplified; now
8088         interpolates macros; supports new structure.
8089         (outp_enable_driver, match_synonym) Removed; all references
8090         removed.
8091         (find_driver) First argument removed.
8092         
8093         * output.h: Global var outp_init_drivers removed; new structure
8094         outp_names; new enum set OUTP_S_*; new global var
8095         outp_configure_vec; function prototypes for output.c exports
8096         updated.
8097         
8098         * main.c: (main) Calls outp_read_devices() after parsing the
8099         command line.
8100         
8101         * cmdline.c: (parse_command_line) New option -v --verbose;
8102         --version changed to -V.  --device option changed syntax to just
8103         take a single device name.  Accepts key=value declaration of
8104         output init file macros.  Syntax message updated.
8105
8106         * filename.c: (expand_line) New function.
8107         (interp_environ_vars) Renamed interp_vars; no longer uses
8108         fixed-size buffer.
8109         (blp_getenv) Allows $ARCH and $VER pseudo-environment-vars to be
8110         overridden by real environment vars.
8111         (search_path) Uses verbose_msg() instead of #ifdef'd printf().
8112         * filename.h: interp_environ_vars() renamed interp_vars().
8113         
8114         * error.c, error.h: Added extern variable `verbosity', message
8115         class MM.
8116         
8117         * error.c: (vmsg) Support message class MM.
8118         (verbose_msg) New function.
8119
8120         * descript.q: (generate_z_varname) Bug fix in generation of
8121         Z-score varnames.
8122         (dump_z_table) Bug fix in column headers.
8123         
8124         * ascii.c: (ascii_init_driver) Changed minimum number of lines per
8125         page from 29 to 15.  Don't set a default for ops[OPS_INIT,
8126         OPS_DONE].  Writes the uninit string when the driver is closed.
8127         (ascii_open_page) Write the init string before the first page.
8128         (output_shorts) Form of main loop changed from `while' to `for'.
8129         Bug fix with overstrikes: the character is printed *after* the
8130         backspace.  Eliminated a lot of `& 0xff' modifiers.
8131         (advance_to_left_margin) New function.
8132         (return_carriage, output_lines) Handle left margin.
8133
8134 Thu Jul  4 00:35:59 1996  Ben Pfaff  <blp@gnu.org>
8135
8136         * ascii.c: New option `carriage-return-style'.
8137
8138         * ascii.c: (count_fancy_chars) New function.
8139         (delineate, text_metrics) Use new function; bug fixes regarding
8140         rich text strings.
8141         (text_draw) Bug fix with rich text.
8142         (output_string, output_shorts) Reordered.
8143         (output_shorts) Now handles boxchars and some overstrike font
8144         changes.
8145         (output_char, return_carriage) New functions.
8146         (output_lines) Now handles overstriking and font changes properly;
8147         some code moved to output_shorts.
8148
8149 Tue Jul  2 22:13:23 1996  Ben Pfaff  <blp@gnu.org>
8150
8151         [GLOBAL_DEBUGGING]
8152         * ascii.c: New member `debug' in ascii_driver_ext.
8153         (ascii_init_driver, delineate) Uses new member.
8154
8155         Now you can set a vertical height on writing text.
8156         * ascii.c: (delineate) Keeps track of vertical position.
8157         (text_draw) No longer considers fully justified text an internal
8158         error.
8159         
8160         * output.h: New flag OUTP_T_VERT; other OUTP_T_ values changed.
8161
8162         Tables' titles are drawn; they can have variable height.
8163         * som.c: `som' struct has new member, title_height.
8164         (draw_title) New argument.  Moved within file.  All caller
8165         changed.
8166         (build_target) New argument, amount of space needed for first row.
8167         Calculates height of title, takes that into account.  All callers
8168         changed.
8169         (dump_plain_table, dump_columnated_table) Took calculation of y1,
8170         y2 out of loop.
8171         (dump_columnated_table) [GLOBAL_DEBUGGING] Debugging code
8172         improved.
8173         (dump_columnated_table) Organized for readability.
8174         (dump_page) Makes use of som.title_height.
8175
8176         * som.c: Many comment bug fixes.
8177
8178         * descript.q: (try_name, generate_z_name) Bug fix regarding
8179         generation of Z-score variable names.
8180         * var.h: Removed num from descriptives_proc; all referents removed.
8181
8182 Mon Jul  1 22:13:39 1996  Ben Pfaff  <blp@gnu.org>
8183
8184         * ascii.c: (ascii_line_horz, ascii_line_vert,
8185         ascii_line_intersection) Added debugging code.
8186
8187         Added a descriptive line above each table to describe it.
8188         * command.c: (parse_cmd) Calls som_new_series.
8189         
8190         * som.c: New static vars table_num, subtable_num.  New `som'
8191         member `title'.
8192         (dump_page) New arguments.
8193         (som_submit_table) Handle new variables.
8194         
8195         * som.c, som.h: (som_submit_table) New arguments.  All callers
8196         changed.
8197         (som_new_series) New function.
8198         (build_target) Makes room for extra line.
8199         (draw_title) New function.
8200         (dump_page) Calls draw_title.  Bug fix: doesn't always set
8201         som.ext->cp to 0.
8202         
8203         Columnation of tables support.
8204         * som.h: Deleted fr, lr, ri from som_table.  Reorganized.
8205         
8206         * som.c: Deleted references to fr, lr, ri.
8207         (som_columnate) Bux fix: sets group member of table.
8208         (som_add_options) Function removed.
8209         (dump_table) Split into three functions; extensively reworked.
8210         
8211         * descript.q: (dump_z_table) Better output table formatting; added
8212         title support to correspond to som.h changes.
8213         (display) Title support.
8214
8215         * output.h: Added OUTP_T_NONE.
8216         
8217 Mon Jul  1 13:00:00 1996  Ben Pfaff  <blp@gnu.org>
8218
8219         * descript.q: Improved handling of Z scores; still not perfect.
8220         
8221         * output.h, ascii.c: Added hook for getting em width of current
8222         font.
8223         
8224         * som.c: Uses new em-width hook.  Added debugging code to
8225         several functions.
8226         (som_columnate) New argument.
8227         (som_add_options) Removed.
8228
8229 Jun 29 17:40:47 1996  Ben Pfaff  <blp@gnu.org>
8230
8231         * som.h, som.c, output.c, output.h, ascii.c: Updated to work with
8232         rules as a property of the table instead of as a property of the
8233         cells.
8234         
8235         * ascii.c: Added `header' to table of options.
8236         
8237         * descript.q: Added even shorter statistic names; modified to work
8238         with new som interface.
8239         
8240         * misc.c (blp_getdelim): Bug fix.
8241         
8242         * version.c: includes 'conf.h'.
8243         
8244 ----------------------------------------------------------------------
8245 Local Variables:
8246 mode: change-log
8247 version-control: never
8248 End: