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