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