68d0d089f0714f2d687f962c72bf22304d52ccb0
[pspp-builds.git] / src / ChangeLog
1 Mon Apr  4 22:27:34 2005  Ben Pfaff  <blp@gnu.org>
2
3         * aggregate.c: (parse_aggregate_functions) If dict_create_var()
4         fails, don't dereference the resulting null pointer (PR 12427).
5         Also, fix double free error.
6
7 Sat Mar 19 23:06:02 2005  Ben Pfaff  <blp@gnu.org>
8
9         * aggregate.c: (parse_aggregate_functions) Fix N_NO_VARS format.
10         (accumulate_aggregate_info) Set int1 to 1 for SUM.
11         (dump_aggregate_info) Only make SUM non-missing if there was at
12         least one variate.
13
14 Sat Mar 19 14:48:19 2005  Ben Pfaff  <blp@gnu.org>
15
16         * aggregate.c: (dump_aggregate_info) Properly test whether the
17         destination variable is numeric, when making the result
18         system-missing for columnwise missing values.
19
20 Mon Mar 14 21:52:34 2005  Ben Pfaff  <blp@gnu.org>
21
22         * misc.h: Remove GCC specializations.
23
24 Mon Mar 14 21:07:23 2005  Ben Pfaff  <blp@gnu.org>
25
26         Make sort stable (PR 12313).
27         
28         * sort.c: Don't need to include some headers anymore.
29         (static var min_buffers) New variable.
30         (static var max_buffers) New variable.
31         (static var allow_internal_sort) New variable.
32         (cmd_sort_cases) Add test mode.
33         (sort_execute) Rephrase.
34         (do_internal_sort) Don't try internal sorting if
35         allow_internal_sort is set.
36         (struct external_sort) Renamed `initial_runs' to `runs' and
37         updated all references.
38         (macro MIN_BUFFER_TOTAL_SIZE_RECS) Removed.
39         (macro MIN_BUFFER_SIZE_BYTES) Removed.
40         (macro MIN_BUFFER_SIZE_RECS) Removed.
41         (compare_initial_runs) Removed.
42         (struct record_run) Add member `idx'.
43         (write_initial_runs) Pass increasing values to process_case() as
44         index.
45         (process_case) Add `idx' parameter and use it to initialize new
46         `idx' member.
47         (allocate_cases) Limit allocated buffers to max_buffers.
48         (compare_record_run) Use new `idx' member for last resort
49         comparison, for stability.
50         (end_run) Call casefile_sleep() on irs->casefile, to prevent
51         running out of file descriptors.
52         (struct merge_state) Removed.
53         (merge) Don't need to allocate cases.  Always use MAX_MERGE_ORDER
54         unless we have fewer runs left.  Always merge consecutive runs,
55         for stability.  Return the final run.
56         (mod) Removed.
57         (choose_merge) New function.
58         (merge_once) Rewritten.
59
60 Mon Mar 14 21:05:42 2005  Ben Pfaff  <blp@gnu.org>
61
62         * cmdline.c: (static var testing_mode) Move into
63         parse_command_line().
64         
65 Mon Mar 14 21:05:13 2005  Ben Pfaff  <blp@gnu.org>
66
67         * algorithm.c: (remove_range) New function.
68         (remove_element) New function.
69
70         * dictionary.c: (dict_delete_var) Use remove_element().
71
72         * flip.c: (cmd_flip) Ditto.
73
74 Sun Mar 13 22:52:05 2005  Ben Pfaff  <blp@gnu.org>
75
76         * file-handle.q: (struct file_handle) `open_mode' should not be
77         const.
78         
79 Sun Mar 13 22:40:54 2005  Ben Pfaff  <blp@gnu.org>
80
81         First phase of making SORT CASES stable (PR 12313).
82
83         * sort.c: (struct indexed_case) New structure.
84         (do_internal_sort) Rewrite to make internal sorting stable.
85         (compare_case_dblptrs) Removed.
86         (compare_indexed_cases) New function.
87
88 Sun Mar 13 22:38:40 2005  Ben Pfaff  <blp@gnu.org>
89
90         Clean-ups.
91
92         * casefile.c: (casereader_read_xfer_assert) New function.
93
94         * dictionary.c: (dict_compact_case) New function.
95
96         * flip.c: (struct flip_pgm) New member idx_to_fv.
97         (cmd_flip) Initialize idx_to_fv member.
98         (destroy_flip_pgm) Free idx_to_fv member.
99         (flip_sink_write) Use struct flip_pgm member instead of case_sink
100         member.
101         (flip_sink_write) Ditto.
102
103         * vfm.c: (write_case) Use dict_compact_case() instead of
104         compact_case().
105         (compact_case) Removed.
106         (storage_source_create) Removed `dict' parameter.  All references
107         updated.
108
109         * vfm.h: (struct case_source) Removed `value_cnt' member.  All
110         references removed.
111         (struct case_sink) Removed `dict', `idx_to_fv' members.  All
112         references removed.
113
114 Sun Mar 13 22:35:55 2005  Ben Pfaff  <blp@gnu.org>
115
116         More AGGREGATE fixes.
117
118         * aggregate.c: (accumulate_aggregate_info) Implement NMISS and
119         NUMISS for strings.  Fix FOUT, POUT, FGT, FLT, FIN, FOUT for
120         strings.
121         (initialize_aggregate_info) Fix initialization for MIN, MAX for
122         strings.
123
124 Sat Mar 12 23:26:21 2005  Ben Pfaff  <blp@gnu.org>
125
126         Start work on testing and debugging AGGREGATE.
127
128         * aggregate.c: (cmd_aggregate) Use discrete bool variables instead
129         of a bit-map.  Require proper subcommand ordering.  Make OUTFILE
130         subcommand mandatory.
131         (parse_aggregate_functions) Check that PIN, POUT, FIN, FOUT
132         functions' arguments are in the correct order and swap them if
133         not.
134         (accumulate_aggregate_info) Make SUM include weights.  Add various
135         string functions.
136         (dump_aggregate_info) Add various string functions.
137         (initialize_aggregate_info) Initialize int1 for MIN, MAX.
138
139         * sort.c: (sort_parse_criteria) Add parameter for returning
140         whether any directions were specified.  All callers updated.
141
142 Sun Mar 13 14:54:27 WST 2005 John Darrington <john@darrington.wattle.id.au>
143
144         * t-test.q: Fixed erroneous logic in compare_group_binary.
145
146 Sat Mar 12 13:29:21 2005  Ben Pfaff  <blp@gnu.org>
147
148         * split-file.c: (cmd_split_file) Ignore LAYERED and SEPARATE
149         keywords (PR 11628).
150
151 Sat Mar 12 13:17:12 2005  Ben Pfaff  <blp@gnu.org>
152
153         * vfm.c: (procedure_with_splits) Fix PR 11492: end_func() must be
154         called *before* close_active_file().
155
156 Sat Mar 12 12:20:57 2005  Ben Pfaff  <blp@gnu.org>
157
158         * file-handle.q: (struct file_handle) Change open_mode from
159         character pointer to 3-char array, for safety.  Updated all
160         references.
161
162 Sat Mar 12 12:15:49 2005  Ben Pfaff  <blp@gnu.org>
163
164         Thanks to Ben Kujala <bkujala@oregonchildcare.org> for reporting
165         these bugs.
166         
167         * pfm-read.c: (read_header) Improve error message for many cases
168         in which the input is not actually a portable file.
169
170         * file-handle.q: (fh_open) When we give an error message, actually
171         return NULL.
172
173 Fri Mar 11 11:50:30 2005  Ben Pfaff  <blp@gnu.org>
174
175         * format.c: (check_common_specifier) New function for checks
176         common to check_input_specifier() and check_output_specifier().
177         (check_input_specifier) Use check_common_specifier().
178         (check_output_specifier) Use check_common_specifier().
179         (check_string_specifier) Removed.
180         (check_specifier_type) New function.
181         (check_specifier_width) New function.
182         (get_format_var_width) Fix bug.
183
184         * formats.c: (internal_cmd_formats) Only accept numeric variables.
185
186         * lexer.c: (check_id) Rename lex_id_to_token(), make public,
187         update all references.  Make case-insensitive.
188
189         * pfm-read.c: Essentially rewrite the whole file.  Now much
190         cleaner.
191
192         * print.c: (check_string_width) New function.
193         (fixed_parse_compatible) Use check_string_width(),
194         check_specifier_type().
195         (dump_fmt_list) Ditto.
196
197         * str.c: (st_trim_copy) New function.
198         (st_uppercase) New function.
199
200         * vars-atr.c: (var_is_valid_name) New function.
201         
202         * expressions/parse.c: (type_coercion_core) Use
203         check_specifier_type().
204         
205 Fri Mar 11 11:31:24 2005  Ben Pfaff  <blp@gnu.org>
206
207         * expressions/evaluate.c: (cmd_debug_evaluate) Fix memory leaks.
208
209         * expressions/parse.c: (no_match) Ditto.
210
211 Wed Mar  9 09:54:27 2005  Ben Pfaff  <blp@gnu.org>
212
213         * Makefile.am: (pspp_LDADD) Add libgsl-extras.a.
214
215         * expressions/helpers.c: (struct func_params) Removed.
216         (generalized_idf) Removed.
217         (cdf_beta) Removed.
218         (idf_beta) Removed.
219         (idf_fdist) Use gslextras_cdf_beta_Pinv() instead of idf_beta().
220
221         * expressions/operations.def: Implement IDF.BETA, CDF.BINOM,
222         CDF.GEOM, CDF.HYPER, CDF.NEGBIN, CDF.POISSON using gsl-extras.
223         Implement SIG.F, which I had overlooked previously.
224
225 Tue Mar  8 12:47:53 WST 2005 John Darrington <john@darrington.wattle.id.au>
226
227         * command.c command.def glob.[ch] cmdline.c: Made DEBUG cmds
228         available only in testing mode.
229
230 Sun Mar  6 23:25:40 2005  Ben Pfaff  <blp@gnu.org>
231
232         * data-in.c: Use `bool' throughout, where relevant.
233
234 Sun Mar  6 19:52:22 2005  Ben Pfaff  <blp@gnu.org>
235
236         DATA LIST with free-field formats should not have implied decimal
237         places (PR 12035).  Also clean up data-in.c a bit.
238
239         * data-in.h: (enum) Add DI_IMPLIED_DECIMALS.
240
241         * data-in.c: (apply_implied_decimals) New function.
242         (parse_numeric) Don't adjust exponent if DI_IMPLIED_DECIMALS not
243         set.  Also, get rid of gotos.
244         (parse_Z) Use apply_implied_decimals() if the field doesn't
245         contain a decimal point.
246         (parse_N) Use apply_implied_decimals().
247         (parse_IB) Ditto.
248         (parse_PIB) Ditto.
249         (parse_P) Ditto.
250         (parse_PK) Ditto.
251         (to_roman) Removed.
252         (parse_enum) New function.
253         (macro CHAR_IS_ROMAN) Removed.
254         (macro ROMAN_VALUE) Removed.
255         (parse_month) Use parse_enum().
256         (parse_weekday) Use parse_enum().
257         (parse_DATETIME) Use long for weekday.
258
259         * data-list.c: (read_from_data_list_fixed) Use
260         DI_IMPLIED_DECIMALS.
261
262 Sun Mar  6 17:07:20 2005  Ben Pfaff  <blp@gnu.org>
263
264         When the lexer sees something like `-5' in the input, it has to
265         decide whether it's a negative numeric constant token or a '-'
266         token followed by a positive numeric constant token.  It always
267         decides on the former, and then the parser can call
268         lex_negative_to_dash() if it wants the latter.  However, this
269         doesn't work for the case of `-0', because negative zero is
270         (portably) indistinguishable from positive zero.  So now we divide
271         T_NUM into two tokens, T_POS_NUM and T_NEG_NUM, to make the
272         distinction clear.  This requires a little bit of extra effort,
273         because there were several references to T_NUM in the code base.
274         
275         * lexer.c: (lex_get) Use T_NEG_NUM and T_POS_NUM to distinguish
276         positive and negative numeric constants.
277         (lex_double_p) Renamed lex_is_number().  Changed return type to
278         bool.  Updated all relevant references to T_NUM to instead use
279         this function.
280         (lex_double) Renamed lex_number().  All references updated.
281         (lex_integer_p) Renamed lex_is_integer().  Changed return type to
282         bool.  All references updated.
283         (lex_token_representation) Understand T_NEG_NUM and T_POS_NUM.
284         (lex_negative_to_dash) Ditto.
285         (dump_token) Ditto.
286         
287         * lexer.h: (enum) Add T_POS_NUM, T_NEG_NUM.  Remove T_NUM.
288
289 Sun Mar  6 22:09:20 2005  Ben Pfaff  <blp@gnu.org>
290
291         * expressions/operations.def: (NUMBER) Use DI_IMPLIED_DECIMALS.
292
293 Sun Mar  6 19:33:24 2005  Ben Pfaff  <blp@gnu.org>
294
295         * expressions/operations.def: (VEC_ELEM_NUM) Treat user-missing
296         values as system-missing.
297
298         * expressions/parse.c: (parse_vector_element) Fix order of
299         arguments in call to expr_allocate_binary().
300
301 Sun Mar  6 17:51:05 2005  Ben Pfaff  <blp@gnu.org>
302
303         * expressions/optimize.c: (optimize_tree) Fix optimization bug for
304         x**2.
305
306         * expressions/parse.c: (type_coercion_core) Set *node to NULL on
307         failure, as indicated by function comment.
308         (parse_binary_operators) Always return NULL on type_coercion()
309         failure.  Should have been doing this anyway, but bug in
310         type_coercion_core() filtered through.
311         (parse_add) Fix typo in user message.
312         (parse_primary) Understand T_NEG_NUM and T_POS_NUM.
313
314 Sun Mar  6 10:47:13 2005  Ben Pfaff  <blp@gnu.org>
315
316         * expressions/operations.def: Add VALUE function.
317
318         * expressions/parse.c: (parse_function) Need an unary composite
319         node for variables in A TO B, not a variable node.  Use
320         allocate_unary_variable().
321         (parse_primary) Use allocate_unary_variable().
322         (allocate_unary_variable) New function.
323
324 Thu Mar  3 23:53:32 2005  Ben Pfaff  <blp@gnu.org>
325
326         * expressions/PSPP_expressions.pm: Renamed it back to generate.pl
327         but fixed the real problem that was preventing the build from a
328         separate directory.  I liked it my way better ;-)
329         
330 Thu Mar  3 23:17:51 2005  Ben Pfaff  <blp@gnu.org>
331
332         * expressions/parse.c: (expr_parse) Fix parameter type.  Thanks to
333         John Darrington <john@darrington.wattle.id.au> for reporting this
334         bug.
335
336 Thu Mar  3 22:10:25 WST 2005 John Darrington <john@darrington.wattle.id.au>
337
338         * expressions/Makefile.am expressions/evaluate.h.pl
339           expressions/evaluate.inc.pl expressions/operations.h.pl
340           expressions/optimize.inc.pl expressions/parse.inc.p:
341
342           Renamed generate.pl to PSPP_expressions.pm and adjusted *.pl
343           to suit. 
344
345           Fixed everything so that it can be built from an arbitrary
346           directory.
347         
348 Thu Mar  3 22:08:35 WST 2005 John Darrington <john@darrington.wattle.id.au>
349
350         * Makefile.am : Fixed up CLEANFILES target.
351
352 Mon Feb 28 23:49:56 2005  Ben Pfaff  <blp@gnu.org>
353
354         * str.h: Changed `struct len_string' to `struct fixed_string', a
355         more accurate name.  Updated all references.
356
357 Mon Feb 28 23:35:30 2005  Ben Pfaff  <blp@gnu.org>
358
359         Redo calendar support.  Should now be bug-for-bug compatible.
360         
361         * calendar.c: New file.
362
363         * calendar.h: New file.
364
365         * data-in.c: Use new calendar functions.
366         (parse_sign) Change sense of return value.
367         (calendar_error) New function.
368         (ymd_to_ofs) New function.
369         (ymd_to_date) New function.
370         (parse_DATE) Use new function.
371         (parse_ADATE) Ditto.
372         (parse_EDATE) Ditto.
373         (parse_SDATE) Ditto.
374         (parse_JDATE) Ditto.
375         (parse_QYR) Ditto.
376         (parse_MOYR) Ditto.
377         (parse_WKYR) Ditto.
378         (parse_TIME) Ditto.
379         (parse_DTIME) Ditto.
380         (parse_DATETIME) Ditto.
381
382         * data-out.c: (convert_date) Use new calendar functions.
383
384         * error.c: (err_vmsg) Changed interface to be more sensible.
385         Updated all callers.
386         (dump_message) Don't double new-lines (why did we do this
387         anyway?).
388
389 Mon Feb 28 23:30:25 2005  Ben Pfaff  <blp@gnu.org>
390
391         * sfmP.h: (macro flt64) Moved here from pref.h.orig.
392         (macro FLT64_MAX) Moved here from pref.h.orig.
393
394 Mon Feb 28 23:28:01 2005  Ben Pfaff  <blp@gnu.org>
395
396         * set.q: Support SET EPOCH.
397         (static var set_epoch) New var.
398         (aux_stc_custom_epoch) New function.
399         (stc_custom_epoch) New function.
400         (get_epoch) New function.
401         (stc_custom_pager) [USE_INTERNAL_PAGER] Fix bug.
402
403         * format.c: Make it possible just to check whether a specifier is
404         valid without emitting an error message.
405         (parse_format_specifier_name) Change interface, update all
406         callers.
407         (check_input_specifier) Ditto.
408         (check_output_specifier) Ditto.
409         (parse_format_specifier) Ditto.
410
411 Mon Feb 28 23:24:08 2005  Ben Pfaff  <blp@gnu.org>
412
413         * command.def: Add DEBUG POOL.
414
415         * pool.c: (pool_destroy) Fix bug in deleting this pool from its
416         parent.
417         (pool_clear) Properly account for size of pool gizmo.
418         (pool_realloc) Ditto.
419         (pool_clone) New function.
420
421         * pool.h: Mark our allocation functions MALLOC_LIKE.
422
423 Mon Feb 28 23:21:26 2005  Ben Pfaff  <blp@gnu.org>
424
425         * Makefile.am: Move many definitions into new top-level
426         Make.build.  Add expressions to SUBDIRS.  Add calendar.c,
427         calendar.h.  Remove expr-evl.c, expr-opt.c expr-prs.c, expr.h,
428         exprP.h, expr.def.
429
430         * case.c: (case_resize) New function.
431         (case_swap) New function.
432
433         * casefile.c: Include mkfile.h.
434
435 Fri Feb 25 21:11:35 WST 2005 John Darrington <john@darrington.wattle.id.au>
436
437         * sfm-read.c: Fixed a buglet which caused a crash when trying
438         to read a non-existent file.
439
440 Sun Feb 13 16:11:13 2005  Ben Pfaff  <blp@gnu.org>
441
442         Fix PR 11955.
443
444         * aggregate.c: (parse_aggregate_functions) Code cleanup.
445         Important part: get rid of spurious copying of function->format to
446         destvar->print and destvar->write.
447
448 Fri Feb 11 00:08:36 2005  Ben Pfaff  <blp@gnu.org>
449
450         Fix PR 11916, which was confusing a variable's `index' member
451         with the variable's position in a var_set.  Although these are
452         usually the same, they are not for array `var_set's.
453         
454         Took advantage of this bug as an opportunity to clean up and
455         rewrite parse_var_set_vars().
456
457         * vars-prs.c: (parse_vs_variable_idx) New function.
458         (parse_vs_variable) Reimplement in terms of
459         parse_vs_variable_idx().
460         (parse_var_idx_class) New function.
461         (add_variable) New function.
462         (add_variables) New function.
463         (parse_var_set_vars) Rewritten.
464         (struct var_set) Change `lookup_var' member that returns a
465         variable into `lookup_var_idx' member that returns an int.
466         Updated the var set implementations in obvious corresponding ways.
467         Used compare_var_ptr_names(), hash_var_ptr_name() just added.
468         
469 Fri Feb 11 00:06:03 2005  Ben Pfaff  <blp@gnu.org>
470
471         Use our global variable compare & hash functions and give them
472         better names.  Add similar functions for dealing with double
473         pointers to variables.
474         
475         * vars-atr.c: (compare_variables) Renamed compare_var_names().
476         (hash_variable) Renamed hash_var_name().
477         (compare_var_ptr_names) New function.
478         (hash_var_ptr_name) New function.
479         
480         * t-test.q: (cmd_t_test) Use global compare_var_names(),
481         hash_var_name().
482         (compare_var_name) Removed.
483         (hash_var_name) Removed.
484
485 Fri Feb 11 00:04:39 2005  Ben Pfaff  <blp@gnu.org>
486
487         Fix dictionary bug.
488         
489         * dictionary.c: (compare_variable_dblptrs) Rename
490         compare_var_ptrs() and fix it to properly dereference the double
491         pointers.
492
493 Mon Feb  7 09:58:15 WST 2005 John Darrington <john@darrington.wattle.id.au>
494
495         crosstabs.q examine.q oneway.q q2c.c:  Added a q2c feature to 
496         declare subcommands as mandatory.  Closed bug #11843
497
498 Sat Feb  5 20:35:10 WST 2005 John Darrington <john@darrington.wattle.id.au>
499         
500         * getline.c command.[ch] command.def:  Added (very rudimentary)
501         support for line  completion when in interactive mode.  Partially 
502         addresses bug #11693
503         
504 Mon Jan 31 09:52:51 WST 2005 John Darrington <john@darrington.wattle.id.au>
505
506         * examine.q factor_stats.c oneway.q output.c pfm-read.c: Fixed some
507         problems revealed by valgrind.
508
509
510 Wed Jan 26 11:44:11 WST 2005 John Darrington <john@darrington.wattle.id.au>
511
512         * set.q: Affixed a fix to the previous fix such that we'll be OK now
513         whether or not PAGER is set.
514
515 Wed Jan 26 09:25:54 WST 2005 John Darrington <john@darrington.wattle.id.au>
516
517         * set.q: Copied the string produced by getenv("PAGER") thus avoiding
518         "invalid free" errors.  Hopefully fixes bug #11722
519
520         * compute.c expr-prs.c: Check that lvalues are populated before 
521         attempting to destroy them.  Closes bug #11676
522
523 Tue Jan 25 21:01:43 WST 2005 John Darrington <john@darrington.wattle.id.au>
524
525         * aggregate.c: Initialised the complete agr_proc structure.
526         Closes bug #11675
527
528
529 Sun Jan 23 23:02:21 2005  Ben Pfaff  <blp@gnu.org>
530
531         * print.c: (print_trns_free) Close the dfm writer if there is one,
532         fixing a memory leak.
533
534 Mon Jan 24 12:24:36 WST 2005 John Darrington <john@darrington.wattle.id.au>
535
536         * glob.c oneway.q q2c.c t-test.q vfm.c: Still *more* memory leaks 
537         fixed.
538
539
540 Fri Jan 21 19:54:14 WST 2005 John Darrington <john@darrington.wattle.id.au>
541
542         * linked-list.[ch] Added
543
544         * examine.q file-handle.[hq] font.h glob.c groff-font.c postscript.c 
545           set.q:    Yet more memory leaks
546
547 Tue Jan 18 23:12:40 WST 2005 John Darrington <john@darrington.wattle.id.au>
548
549         * t-test.q examine.q : More memory leaks fixed.
550
551 Tue Jan 18 19:26:59 WST 2005 John Darrington <john@darrington.wattle.id.au>
552
553         * examine.q  factor_stats.[ch] get.c pfm-read.c: Plugged numerous
554         memory leaks.
555
556 Mon Jan 10 14:43:45 WST 2005 John Darrington <john@darrington.wattle.id.au>
557
558         * ascii.c cartesian.c casefile.c chart.h devind.c 
559           examine.q frequencies.q
560           html.c output.h piechart.c plot-chart.c plot-hist.c
561
562           Integrated the chart rendering into the output stream
563           (currently only works for html).
564           
565           Removed gratuitous use of ifndef NO_CHARTS, and replaced with
566           dummy-chart.c for compiling without charts.
567
568         * mkfile.[ch] Created.  
569
570         * som.[ch] tab.[ch]: Changed name of som_table to som_entity
571         Added type element so we can tell if it's a chart or a table.
572
573         * chart.h examine.q piechart.c plot-chart.c plot-hist.c: changed the 
574         API of charts to be more like that of tables.
575
576 Thu Jan 13 21:00:02 WST 2005 John Darrington <john@darrington.wattle.id.au>
577
578         * casefile.c main.c: Moved the SIGINT handler from casefile.c to
579         main.c. Removed the handler for SIGQUIT.
580
581 Mon Jan 10 14:43:45 WST 2005 John Darrington <john@darrington.wattle.id.au>
582
583         * casefile.c: Added a signal handler to delete temp files on 
584         SIGINT and SIGQUIT
585
586         * permissions.c Inhibited the PERMISSIONS command when SAFER is on.
587
588         * command.def Added a lot more unimplemented commands.
589
590         * copyleft.[ch] cmdline.c Moved legal information to copyleft.c
591
592 Sat Jan  8 23:58:34 2005  Ben Pfaff  <blp@gnu.org>
593
594         * sort.c: (compare_initial_runs) Needed additional level of
595         dereferencing.
596         (merge_once) Fix plenty of stupid mistakes.
597
598 Sat Jan  8 23:55:27 2005  Ben Pfaff  <blp@gnu.org>
599
600         * casefile.c: (casefile_sleep) Need to flush_buffer() after
601         calling casefile_to_disk() or we will lose the last block in the
602         file if the casefile started out as disk-based.
603         (casefile_get_reader) Initialize reader->destructive to 0.
604         (cmd_debug_casefile) Add new test pattern.
605         (test_casefile) Define new test pattern to make sure
606         casefile_sleep() works properly.
607
608 Fri Jan  7 08:00:05 WST 2005 John Darrington <john@darrington.wattle.id.au>
609
610         * Makefile.am chart.[ch]  histogram.[ch] piechart.c (Modified);
611           plot-hist.c plot-chart.c (Added) Reorganised these files in an
612           attempt to seperate the creation and processing of charts from their
613           actuall renedering.
614
615         * examine.q frequencies.q generated charts conditional upon the NO_CHARTS
616           macro.
617
618 Thu Jan  6 18:48:58 WST 2005 John Darrington <john@darrington.wattle.id.au>
619
620         * main.c Added a signal handler for SIGFPE
621
622         * sort.c Somewhat more robust fix to the previous entry.
623
624 Wed Jan  5 21:23:31 2005  Ben Pfaff  <blp@gnu.org>
625
626         * sort.c: (merge) Fix assertion for proper Huffman merge pattern:
627         0 == 1 modulo 1.  See Knuth 5.4.9 (vol. 3, 2nd ed.,
628         pp. 361).  Thanks to John Darrington <john@cellform.com.au> for
629         reporting the bug.
630
631 Wed Jan  5 22:42:26 WST 2005 John Darrington <john@darrington.wattle.id.au>
632
633         * case.h Fixed bug # 11307
634         
635 Wed Jan  5 08:30:48 WST 2005 John Darrington <john@darrington.wattle.id.au>
636
637         * val-labs.c Fixed bug which caused a crash if VALUE LABELS had
638         a trailing slash.
639
640 Mon Jan  3 17:44:37 2005  Ben Pfaff  <blp@gnu.org>
641
642         * pfm-read.c: (read_variables) Remove direct manipulation of
643         v->aux, which is no longer needed.  Fixes PR 11483.
644
645 Sat Jan  1 19:01:16 WST 2005 John Darrington <john@darrington.wattle.id.au>
646
647         * data-list.c Fixed a bug in parsing delimiters.
648
649         * group.c vars-atr.c Fixed buglet in hash/compare functions for alpha
650         values.
651
652         * percentiles.c Properly handled calculation of Tukey hinges where
653         the number of data is small.
654
655         * oneway.q Used the generic value_to_string function for independent
656         variable instead of trying to do it ourselves.
657
658         * box-whisker.c Fixed a buglet which caused a crash if the number of
659         data was zero
660
661
662 Fri Dec 31 16:47:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
663
664         * examine.q box-whisker.c chart.h Implemented boxplots in EXAMINE
665
666         * percentiles.c Fixed some bugs when calculating percentiles when
667         there's a small number of cases.
668
669 Wed Dec 29 08:18:08 WST 2004 John Darrington <john@darrington.wattle.id.au>
670
671         * percentiles.[ch] Added. Calculates percentiles and Tukey hinges
672
673         * examine.q factor_stats.[ch]  Added calculation of percentiles
674
675 Fri Dec 24 15:09:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
676
677         * t-test.q Fixed bug #11227 Made t-test work when the independent
678         variable is alpha
679
680 Sat Dec 11 11:43:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
681
682         * factor_stats.c Fixed calculation of trimmed mean under various
683         special conditions.
684
685 Sat Dec  4 17:14:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
686
687         * histogram.c chart.[ch] factor_stats.c frequencies.q
688
689         Added code to calculate sensible histogram ranges and limits.
690
691 Thu Dec  2 13:37:43 WST 2004 John Darrington <john@darrington.wattle.id.au>
692
693         * chart.h Updated to reflect many API changes.
694
695         * cartesian.c chart.c Moved the definitions of chart_write_{xy}scale from 
696         cartesian.c and into chart.c
697
698         * factorstats.[ch] Added the histogram calculations
699
700         * casefile.c Removed an unused variable.
701
702         * frequencies.q examine.q histogram.c  Reworked the API for 
703         histograms.
704
705         * piechart.c  Revised the API for piecharts.
706
707         * var.h  Moved the definitions of freq_tab and freq out of var.h
708         and into frequencies.q where they belong.
709         
710 Tue Nov 30 21:10:20 2004  Ben Pfaff  <blp@gnu.org>
711
712         * flip.c: (flip_file) Check for off_t separately from fseeko(),
713         using AC_TYPE_OFF_T.
714
715 Tue Nov 30 08:47:41 2004  Ben Pfaff  <blp@gnu.org>
716
717         * flip.c: (flip_file) If fseeko() is not available, use long int
718         for off_t.  Thanks to "Marshall DeBerry" <mdb@radix.net> for
719         reporting the problem.
720
721 Mon Nov 29 12:20:59 WST 2004 John Darrington <john@darrington.wattle.id.au>
722
723         * examine.q factor_stats.[ch] Changed stderr to se_mean to avoid
724         conflict with stdio.
725
726 Sun Nov 21 10:32:41 WST 2004 John Darrington <john@darrington.wattle.id.au>
727
728         * var-labs.c (var_to_string) Now returns null if the variable is null
729
730         * value-labels.c (value_to_string) Made it return null if either the 
731         value or the variable is null.
732
733         * hash.c (hsh_clear) Fixed a buglet.
734
735         * examine.q  factor_stats.[ch] Largely  rewrote, because I'd started 
736         with  the wrong model.
737
738         * casefile.[ch] Added a function to return the casereader.case_idx 
739         member
740
741         * examine.q  Implemented the extreme values results.
742
743 John Darrington <john@darrington.wattle.id.au>
744
745         * settings.h set.c glob.[ch] frequencies.q q2c.c error.c lexer.[ch] 
746           output.[ch] getline.c 
747
748           Plugged some memory leaks
749
750 Mon Nov 15 23:47:40 2004  Ben Pfaff  <blp@gnu.org>
751
752         Adopt GSL random number generators, paving the way for providing
753         the complete suite of random number generators on expressions.
754         
755         * Makefile.am: Remove random.c, random.h.
756
757         * random.c: Removed.
758
759         * random.h: Removed.
760
761         * algorithm.c: (algo_default_random) Use GSL functions.
762
763         * casefile.c: (test_casefile) Use GSL RNG functions.
764
765         * expr-evl.c: (expr_evaluate) Use GSL RNG functions for OP_NORMAL,
766         OP_UNIFORM.
767
768         * sample.c: (cmd_sample) Use GSL RNG functions.
769         (sample_trns_proc) Ditto.
770
771         * set.q: (static var set_seed) Removed.
772         (static var seed_flag) Removed.
773         (static var rng) New variable.
774         (aux_stc_custom_seed) No seed value anymore, don't print anything.
775         (stc_custom_seed) Use new seed functions.
776         (seed_is_set) Removed.
777         (get_rng) New function that composes the entire external
778         interface.
779         (set_rng) New function.
780         (random_seed) New function.
781
782 Mon Nov 15 22:08:25 2004  Ben Pfaff  <blp@gnu.org>
783
784         * expr-evl.c: (expr_evaluate) Fix XDATE.JDAY formula.  Thanks to
785         John Darrington <john@darrington.wattle.id.au> for reporting this
786         bug.
787
788 Tue Nov 16 13:19:18 WST 2004 John Darrington <john@darrington.wattle.id.au>
789
790         * permissions.c command.def Added the PERMISSIONS command
791
792 Mon Nov 15 01:33:32 2004  Ben Pfaff  <blp@gnu.org>
793
794         * q2c.c: (dump_header) Don't try to emit #includes at very top of
795         output file because that will precede #include <config.h>, which
796         is bad.
797         (main) Add needed headers to /* (header) */ code.
798
799 Mon Nov 15 01:21:36 2004  Ben Pfaff  <blp@gnu.org>
800
801         Instead of making system or portable file readers responsible for
802         dropping and reordering variables, make them read full cases and
803         let the caller take care of any changes.
804
805         * get.c: New "case map" structure to handle this.  Use for GET,
806         IMPORT, MATCH FILES.  Essentially rewrite the whole file.
807
808         * pfm-read.c: (pfm_read_case) Read into provided case.  Signature
809         changed appropriately.
810
811         * sfm-read.c: (sfm_read_case) Ditto.
812
813 Mon Nov 15 00:47:45 2004  Ben Pfaff  <blp@gnu.org>
814
815         Decided that case_serialize() and case_unserialize() were too
816         abstract.  Also we need a couple more functions to avoid excessive
817         copying for data in/out fast paths.
818
819         * case.c: (case_serial_size) Removed.
820         (case_serialize) Rename case_to_values() and make its argument
821         explicitly an array of union values.
822         (case_unserialize) Rename case_from_values() and make its argument
823         explicitly an array of union values.
824         (case_data_all) New function.
825         (case_data_all_rw) New function.
826
827         * casefile.c: (struct casefile) Change buffer from array of
828         unsigned char to array of union value for better accuracy.
829         Redefine buffer_used and buffer_size in terms of values, not
830         bytes.  Remove case_size because it is now redundant with
831         value_cnt.  Fix up all references to these members.
832
833 Mon Nov 15 00:45:46 2004  Ben Pfaff  <blp@gnu.org>
834
835         * barchart.c: (struct subcat) Make `label' member const to silence
836         GCC warning with -Wwrite-strings.
837
838         * cartesian.c: (struct dataset) Ditto.
839
840         * case.c: Don't re-define NDEBUG if already defined.
841         Add lots of comments.
842
843         * str.c: Fix includes.
844
845         * crosstabs.q: Fix includes.
846
847         * examine.q: Fix includes.  Fix GCC warning about unused
848         variables.
849         
850         * frequencies.q: (stat macro) Removed and replaced where used by
851         its expansion.
852
853         * list.q: Fix includes.
854
855         * oneway.q: Fix includes.
856
857         * piechart.c: Fix includes.  Only define M_PI if not already
858         defined.
859
860         * sfm-read.c: (bswap) New function.
861         (bswap_int32) Write in terms of bswap.
862         (bswap_flt64) Ditto.
863
864         * str.c: (ds_data) Add external definition here, needed because
865         str.h has only an `extern inline' version.
866
867         * value-labels.c: Fix includes.
868
869 Mon Nov 15 00:40:55 2004  Ben Pfaff  <blp@gnu.org>
870
871         Instead of providing a system or portable file writer with a raw
872         case in the format needed for output, provide it with a regular
873         case.  The writer takes care of any needed translation.
874
875         * aggregate.c: Adopt new scheme for AGGREGATE.
876         (struct agr_proc) sfm_agr_case member removed.
877         (write_case_to_sfm) Removed because the new interface is easier to
878         use.
879
880         * get.c: Adopt new scheme for SAVE, XSAVE, EXPORT.
881
882         * pfm-write.c: Implement new scheme.
883
884         * sfm-write.c: Ditto.
885
886 Mon Nov 15 00:32:24 2004  Ben Pfaff  <blp@gnu.org>
887
888         Instead of treating `struct file_handle' as a class to subclass
889         into data files, system files, and portable files, instead use it
890         as a helper that coordinates access.  Now it is opaque, too.
891
892         This means that most references to a struct file_handle are now
893         changed into references to one of struct dfm_reader, struct
894         dfm_writer, struct sfm_reader, struct sfm_writer, struct
895         pfm_reader, or struct pfm_writer, according to what's being read
896         or written.
897
898         Most related changes are only worth summarizing briefly.
899
900         * dictionary.c: (dict_clear) Destroy aux data in deleted
901         variables.
902         (dict_clear_aux) New function.
903         (dict_create_var) Initialize aux, aux_dtor.
904         (dict_delete_var) Destroy aux data in deleted variable.
905
906         * file-handle.h: (struct fh_ext_class) Removed.
907         (struct file_handle) Removed.
908         (fh_init_files) Removed.
909
910         * file-handle.q: Changed references to a handle's `private' member
911         to direct references.
912         (struct private_file_handle) Renamed file_handle.
913         Add next, open_cnt, type, open_mode, aux members.
914         (struct file_handle_list) Removed.
915         (extern var inline_file) Removed.
916         (static var file_handles) Changed from file_handle_list * to
917         file_handle *.
918         (create_file_handle) Initialize new members.
919         (fh_close_handle) Removed.
920         (mode_name) New function.
921         (fh_open) New function.
922         (fh_close) New function.
923         (fh_parse_file_handle) Renamed fh_parse().
924
925         * glob.c: (init_glob) Remove fh_init_files() call.
926         
927         * aggregate.c: use sfm_writer.
928         (create_sysfile) Removed because the new interface is simpler.
929         
930         * apply-dict.c: Use sfm_reader.
931
932         * data-list.c: Use dfm_reader.
933
934         * file-type.c: Use dfm_reader.
935
936         * get.c: Use sfm_reader, sfm_writer, pfm_reader, pfm_writer.
937
938         * inpt-pgm.c: Use dfm_reader.
939
940         * print.c: Use dfm_writer.
941
942         * sysfile-info: Use sfm_reader.
943
944         * dfm-read.c: Adopt new file handle infrastructure.
945
946         * dfm-write.c: Ditto.
947
948         * pfm-read.c: Ditto.
949         
950         * pfm-write.c: Ditto.
951
952         * sfm-read.c: Ditto.
953
954         * sfm-write.c: Ditto.
955         
956 Mon Nov 15 00:31:44 2004  Ben Pfaff  <blp@gnu.org>
957
958         Break dictionary functions into separate header file.
959
960         * dictionary.h: New file.
961
962         * var.h: Moved dict_*() functions to dictionary.h.
963
964 Mon Nov 15 00:30:33 2004  Ben Pfaff  <blp@gnu.org>
965
966         Get rid of procedure-specific union in struct variable, using
967         instead a void * pointer and a destructor function.
968
969         Most related changes are only worth brief summaries.
970
971         * crosstabs.q: Fix includes.  Use new struct var_range in lieu of
972         old p.crs member in struct variable.
973         
974         * frequencies.q: Fix includes.  Use new struct var_freqs in lieu
975         of old p.frq member in struct variable.
976
977         * histogram.c: (draw_histogram) Takes new freq_tab arg because
978         it's no longer possible to grab this from var->p.frq.
979
980         * piechart.c: (draw_piechart) Ditto.
981
982         * group.c: (group_proc_get) New function.
983
984         * levene.c: Use group_proc_get() in lieu of old p.grp_data member
985         in struct variable.
986
987         * oneway.q: Ditto.
988
989         * t-test.q: Ditto.
990
991         * main.c: (execute_command) Clear aux data in default_dict after
992         each command.  (It's debatable whether this should be done.)
993
994         * matrix-data.c: Use new struct mxd_var in lieu of old p.mxd
995         member in struct variable.
996
997         * means.q: Get rid of integer mode, which is not included in
998         recent SPSS and was the only code that wanted per-variable private
999         data.
1000
1001         * var.h: (struct crosstab_proc) Removed.
1002         (struct frequencies_proc) Removed.
1003         (struct list_proc) Removed.
1004         (struct get_proc) Removed.
1005         (struct means_proc) Removed.
1006         (struct matrix_data_proc) Removed.
1007         (struct match_files_proc) Removed.
1008         (lots of enums) Removed.
1009         (struct variable) Removed members `p', `get'.  Add member
1010         `aux_dtor'.
1011
1012         * vars-atr.c: (var_attach_aux) New function.
1013         (var_detach_aux) New function.
1014         (var_clear_aux) New function.
1015         (var_dtor_free) New function.
1016         (discard_variables) Use NULL instead of inline_file.
1017
1018 Fri Nov 12 10:07:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
1019
1020         * value-labs.c  Fixed the implmentation of value_to_string, so 
1021         that it properly handles alpha values.
1022
1023         * oneway.q  Changed instances where labels were being probed manually, 
1024         to use the canonical {var,value}_to_string functions
1025
1026 Thu Nov 11 21:01:31 WST 2004 John Darrington <john@darrington.wattle.id.au>
1027
1028         * examine.q cartesian.c chart.[ch]   Added normal and detrended normal
1029         plots.  Changed the API of the cartesian plot to be a much lower level
1030         thing.
1031
1032 Sun Nov  7 17:25:04 WST 2004 John Darrington <john@darrington.wattle.id.au>
1033
1034         * examine.q Added some of the parametric calculations
1035
1036         * factor_stats.[ch]  Created
1037         
1038 Sat Nov  6 21:24:31 WST 2004 John Darrington <john@darrington.wattle.id.au>
1039
1040         * examine.q  Changed the definition of factors to be a composite, and
1041         dealt with the consequences.
1042
1043 Sat Nov  6 20:40:38 WST 2004 John Darrington <john@darrington.wattle.id.au>
1044
1045         * examine.q Fixed problem where examine wasn't dealing properly with 
1046         splits
1047
1048 Sat Nov  6 14:49:47 WST 2004 John Darrington <john@darrington.wattle.id.au>
1049
1050         * oneway.q Fixed problem where oneway wasn't dealing properly with 
1051         splits
1052
1053 Thu Nov  4 11:09:01 WST 2004 John Darrington <john@darrington.wattle.id.au>
1054
1055         * q2c.c examine.q  Fixed a bug (feature?) whereby arrays in the
1056         command which had settings didn't get the appropriate code
1057         generated.
1058
1059         * val.h value-labels.[ch] var-labs.c Added v*to_string functions
1060         to convert variables/values to strings.
1061
1062         * examine.q  Added framework for the EXAMINE command.
1063
1064 Mon Nov  1 12:46:17 WST 2004 John Darrington <john@darrington.wattle.id.au>
1065
1066         * q2c.c frequencies.q set.q t-test.q  Fixed the q2c parsing of DBL 
1067         subcommand types.  Changed frequencies.q to use it rather then the 
1068         custom parser.  Dealt with the consequences.  Added a test for NTILES
1069         subcommand of frequencies.
1070
1071 Sat Oct 30 09:16:29 WST 2004 John Darrington <john@darrington.wattle.id.au>
1072
1073         * oneway.q   Fixed up the behaviour when given missing values
1074
1075         * levene.c oneway.q Fixed a buglet with the levene statistic and
1076         incorporated the levene test into the oneway command.
1077
1078         * group.h  t-test.q  Moved the CMP_EQ and CMP_LE symbols out of 
1079         global scope, since they're only relevant to T-TEST
1080
1081 Fri Oct 29 17:39:03 WST 2004 John Darrington <john@darrington.wattle.id.au>
1082
1083         * group.c group.h group_proc.h levene.c oneway.q t-test.q
1084
1085         Made the t-test more consistent
1086         with the way it handles groups.  That is, it now uses a hash instead
1087         of an array of 2.  Also, made the levene.c file independent of the 
1088         implementation of the t-test.  So now levene should be fine for both
1089         t-test and anova.
1090
1091         * Added an oneway.q file for one way anova
1092
1093 Wed Jun  2 22:08:02 2004  Ben Pfaff  <blp@gnu.org>
1094
1095         * descript.c: (cmd_descriptives) Remove harmless but bogus test in
1096         STATISTICS parsing.
1097
1098 Mon May 31 20:45:24 2004  Ben Pfaff  <blp@gnu.org>
1099
1100         Fix memory leaks.
1101
1102         * data-list.c: (cmd_data_list) Free dls->delims on lossage.
1103         (data_list_trns_free) Free dls->delims.
1104
1105         * t-test.q: (tts_custom_pairs) Free vars.
1106         (ssbox_one_sample_init) Fix tab_vline() argument.
1107         (ssbox_independent_samples_init) Ditto.
1108         (trbox_paired_init) Ditto.
1109         (trbox_one_sample_init) Ditto.
1110
1111 Mon May 31 17:19:27 2004  Ben Pfaff  <blp@gnu.org>
1112
1113         Generalize casefiles to the extent that we can use them for
1114         sorting and other kinds of data transformations.  Change cases to
1115         be copy-on-write to improve memory efficiency in common cases.
1116         Every access to a member of a `struct ccase' was changed to be a
1117         call to a case_*() function, especially case_data(), case_num(),
1118         case_str(), or case_data_rw().  Many instances of a local variable
1119         named "case_num" were changed to "case_idx" as a consequence.
1120         Many `struct ccase *' were changed to actual `struct ccase'
1121         because of copying semantics of cases.  In several places there
1122         was a choice between updating debug code to work with the new ADTs
1123         or just deleting it because it was useless; I chose to delete it.
1124  
1125         * Makefile.am: (pspp_SOURCES) Add case.c, case.h.
1126
1127         * case.c: New file.
1128
1129         * case.h: New file.
1130
1131         * aggregate.c: (struct agr_proc) Change type of `sort' to
1132         sort_criteria *.  Add `break_vars', `break_var_cnt' members.
1133         Rename `vars' to `agr_vars', all references updated.  Change
1134         `agr_case' to type `struct ccase'.
1135         (cmd_aggregate) Deal with new members.  Use case_create(),
1136         sort_active_file_in_place(), sort_active_file_to_casefile().
1137         (agr_destroy) Deal with new members.
1138         (aggregate_single_case) Ditto.
1139         (dump_aggregate_info) Ditto.
1140         (initialize_aggregate_info) Ditto.
1141         (agr_to_active_file) Ditto.
1142         (presorted_agr_to_sysfile) Ditto.
1143         (sort_agr_to_sysfile) Removed.
1144
1145         * alloc.c: (out_of_memory) Make non-static.
1146
1147         * alloc.h: Prototype out_of_memory().
1148
1149         * casefile.c: Switched from a linked list in-memory representation
1150         to a two-level array-style representation.  The linked list was
1151         appropriate when we could stick a header onto cases, but that's no
1152         longer the case.  Also, the two-level array will allow for random
1153         in-memory access in case that's ever wanted.  Also added the
1154         concept of a `destructive casereader', one that destroys cases in
1155         the underlying casefile as they are read out.
1156         (macro CASES_PER_BLOCK) New macro.
1157         (struct casefile) New members `value_cnt', `case_list_size',
1158         `case_acct_size', `being_destroyed', `cases'.  Removed `head',
1159         `tail'.
1160         (struct casereader) Removed `cur'.  Added `destructive', `c'.
1161         (global var casefiles) Made static.
1162         (static var case_bytes) New var.
1163         (casefile_create) Takes a value count, not a case size in bytes,
1164         to conform to the case interface.  All callers updated.  Deal with
1165         new and removed members.
1166         (casefile_destroy) Deal with new and removed members.
1167         (casefile_sleep) New function.
1168         (casefile_get_case_size) Removed.
1169         (casefile_get_value_cnt) New function.
1170         (casefile_append) Rewritten to deal with new and removed members.
1171         (casefile_append_xfer) New function.
1172         (write_case_to_disk) Use case_serialize().
1173         (call_posix_fadvise) Removed because posix_fadvise64 segfaults.
1174         Couldn't figure out why.
1175         (casefile_to_disk) Don't call call_posix_fadvise.  Rewritten to
1176         deal with new and removed members.
1177         (merge) Removed.
1178         (merge_sort) Removed.
1179         (casefile_sort) Removed.
1180         (casefile_get_reader) Deal with new and removed members.
1181         (casefile_get_destructive_reader) New function.
1182         (reader_open_file) Make code more readable.  Create case for
1183         reader.
1184         (casereader_get_casefile) New function.
1185         (casereader_read) Deal with new and removed members.  Now returns
1186         a copy of the case, so that the caller is responsible for
1187         destroying the returned case.
1188         (casereader_read_xfer) New function.
1189         (casereader_destroy) Destroy reader's case.
1190         (test_casefile) Second arg is now a value count, all callers
1191         updated.  Now tests destructive readers too.
1192         (get_random_case) Deal with new case ADT.
1193         (write_random_case) Ditto.
1194         (read_and_verify_random_case) Ditto.
1195
1196         * crosstabs.q: Remove debug code.
1197
1198         * descript.q: (calc_descriptives) Deal with new case, casefile
1199         ADTs.
1200
1201         * dfm.c: (cmd_begin_data) There's no storage_source_class anymore.
1202
1203         * do-if.c: Remove unneeded header inclusion.
1204
1205         * expr-prs.c: Remove debug code.
1206
1207         * exprP.h: Remove debug code.
1208
1209         * flip.c: (flip_file) Use fseeko() if available.
1210
1211         * formats.c: Remove debug code.
1212
1213         * get.c: Remove debug code.
1214         (struct mtf_file) Change `input' from `union value *' to `struct
1215         ccase', all references updated.
1216
1217         * levene.c: (levene) Deal with new case, casefile ADTs.
1218
1219         * list.q: Remove debug code.
1220
1221         * loop.c: Remove debug code.
1222         
1223         * matrix-data.c: Remove debug code.
1224
1225         * means.q: Remove debug code.
1226
1227         * mis-val.c: Remove debug code.
1228
1229         * pfm-read.c: Remove debug code.
1230         (pfm_read_code) Change second arg from `union value *' to `struct
1231         ccase *', all references updated.
1232
1233         * recode.c: (string_to_long) Make first arg const.
1234         (convert_to_double) Ditto.
1235
1236         * repeat.c: Remove debug code.
1237
1238         * sample.c: Remove debug code.
1239
1240         * sfm-read.c: Remove debug code.
1241         (sfm_read_case) Change second arg from `union value *' to `struct
1242         ccase *'.
1243
1244         * sort.c: Redone in terms of casefiles.
1245         (enum sort_direction) Moved here from sort.h.
1246         (struct sort_criterion) New structure.
1247         (struct sort_criteria) New structure.
1248         (cmd_sort_cases) Rewritten.
1249         (prepare_to_sort_active_file) New function.
1250         (sort_active_file_in_place) New function.
1251         (sort_active_file_to_casefile) New function.
1252         (parse_sort) Renamed sort_parse_criteria(), rewritten & interface
1253         changed, all callers updated.
1254         (destroy_sort_cases_pgm) Renamed sort_destroy_criteria(),
1255         rewritten & interface changed, all callers updated.
1256         (sort_cases) Renamed sort_execute(), rewritten & interface
1257         changed, all callers updated.
1258         (struct internal_sort) Removed.
1259         (do_internal_sort) Rewritten, interface changed.
1260         (destroy_internal_sort) Removed.
1261         (compare_case_dblptrs) Use sort_criteria instead of sort_case_pgm.
1262         (struct initial_run) Removed; an initial run is now just a
1263         casefile.
1264         (compare_initial_runs) Rewritten.
1265         (struct external_sort) Changed almost completely.
1266         (do_external_sort) Rewritten, interface changed.
1267         (destroy_external_sort) Rewritten.
1268         [HAVE_MKDTEMP] (make_temp_dir) Removed.
1269         [!HAVE_MKDTEMP] (do_mkdir) Removed.
1270         [!HAVE_MKDTEMP] (make_temp_dir) Removed.
1271         (init_external_sort) Removed.
1272         (simulate_error) Removed.
1273         (rmdir_temp_dir) Removed.
1274         (get_temp_file_name) Removed.
1275         (open_temp_file) Removed.
1276         (close_temp_file) Removed.
1277         (remove_temp_file) Removed.
1278         (write_temp_file) Removed.
1279         (read_temp_file) Removed.
1280         (struct record_run) Change `record' from `struct case_lit *' to
1281         `struct ccase'.
1282         (struct initial_run_state) Remove `idx_to_fv', `free_list',
1283         `file_idx', `output_file'.  Add `run', casefile'.  Change
1284         `last_output' from `struct case_list *' to `struct ccase'.
1285         (write_initial_runs) Change interface, rewrite.
1286         (sort_sink_write) Renamed process_case(), changed interfaced,
1287         rewrote.
1288         (destroy_initial_run_state) Rewritten.
1289         (allocate_cases) Rewritten.
1290         (compare_record) Interface changed, rewritten.
1291         (start_run) Rewritten.
1292         (end_run) Rewritten.
1293         (output_record) Rewritten.
1294         (grab_case) Removed.
1295         (release_case) Removed.
1296         (struct merge_case) Change `cases' from double pointer to single
1297         pointer.
1298         (merge) Deal with new case and casefile ADTs.
1299         (struct run) Removed.
1300         (merge_once) Rewritten, interface changed.
1301         (fill_run_buffer) Removed.
1302         (sort_sink_make_source) Removed.
1303         (sort_sink_class) Removed.
1304         (struct sort_source_aux) Removed.
1305         (sort_source_read_helper) Removed.
1306         (sort_source_read) Removed.
1307         (read_sort_output) Removed.
1308         (read_internal_sort_output) Removed.
1309         (read_external_sort_output) Removed.
1310         (sort_source_destroy) Removed.
1311         (sort_source_class) Removed.
1312
1313         * sort.h: (struct sort_cases_pgm) Removed.
1314         (enum sort_direction) Moved to sort.c.
1315
1316         * t-test.q: (calculate) Deal with new case, casefile ADTs.
1317
1318         * tab.c: Remove debug code.
1319
1320         * var-labs.c: Remove debug code.
1321
1322         * var.h: (struct ccase) Removed.
1323         (struct case_list) Removed.
1324
1325         * vars-atr.c: (discard_variables) Use free_case_source().
1326
1327         * vars-prs.c: (parse_vs_variable) Make arg const.
1328         (parse_dict_variable) Ditto.
1329         (parse_variables) Make struct dictionary * arg const.
1330         (parse_var_set_vars) Make struct var_set * arg const.
1331         (struct var_set) Add const to some of the function pointers' args.
1332         (var_set_get_cnt) Make arg const.
1333         (var_set_get_var) Make first arg const.
1334         (var_set_lookup_var) Make first arg const.
1335         (dict_var_set_get_cnt) Make arg const.
1336         (dict_var_set_get_var) Make first arg const.
1337         (dict_var_set_lookup_var) Make first arg const.
1338         (var_set_create_from_dict) Make arg const.  Add cast to aux
1339         assignment.
1340         (struct array_var_set) Add const to var member.
1341         (array_var_set_get_cnt) Make arg const.
1342         (array_var_set_get_var) Make first arg const.
1343         (array_var_set_lookup_var) Make first arg const.
1344         (var_set_create_from_array) Make first arg const.  Insert cast.
1345
1346         * vfm.c: (struct write_case_data) Change trns_case, sink_case
1347         members from `struct ccase *' to `struct ccase'.
1348         (static var lag_queue) Change from double to single pointer.
1349         (procedure) Optimize trivial case.
1350         (internal_procedure) Deal with changed case, case_source ADTs.
1351         (create_trns_case) Changed interface, rewrote.
1352         (open_active_interface) Initialize modified lag queue.
1353         (write_case) Deal with changed case ADT.
1354         (lag_case) Deal with modified lag queue.
1355         (close_active_file) Destroy modified lag queue.
1356         Deal with changed case_source, case_sink ADTs.
1357         (destroy_storage_stream_info) Make null arg into no-op.
1358         (storage_sink_make_source) Set aux in created source.
1359         (storage_source_read) Deal with changed case, casefile ADTs.
1360         (storage_source_create) New function.
1361         (lagged_case) Rewrite.
1362         (free_case_source) New function.
1363         (free_case_sink) Rewrite.
1364         (struct split_aux_data) Changed prev_case from `struct ccase *' to
1365         `struct ccase'.
1366         (procedure_with_splits) Deal with changed prev_case.
1367         (procedure_with_splits_callback) Ditto.
1368         (multipass_split_aux_data) Changed prev_case from `struct ccase *' to
1369         `struct ccase'.
1370         (multipass_procedure_with_splits) Deal with changed prev_case.
1371         (multipass_split_callback) Ditto.
1372         
1373         
1374 Mon May 31 17:19:06 2004  Ben Pfaff  <blp@gnu.org>
1375
1376         The workspace idea didn't work out.
1377
1378         * Makefile.am: (pspp_SOURCES) Remove workspace.c, workspace.h.
1379         
1380         * workspace.c: Removed.
1381
1382         * workspace.h: Removed.
1383
1384 Sun May 30 18:35:19 2004  Ben Pfaff  <blp@gnu.org>
1385
1386         Fully implement arbitrary delimiters on DATA LIST, extending the
1387         half implementation that was already there.
1388
1389         * data-list.c: (struct data_list_pgm) Remove `delim', add
1390         `delims', `delim_cnt'.
1391         (cmd_data_list) Initialize new members.  Parse delimiters and
1392         clean up code a bit.
1393         (cut_field) Extract fields with arbitrary delimiters.  Also, fix
1394         handling of leading commas.
1395         (read_from_data_list_fixed) Expand tabs.  Adapt to new DFM
1396         interfaces.
1397         (read_from_data_list_free) Adapt to new DFM interfaces.
1398         (read_from_data_list_list) Ditto.
1399         (repeating_data_trns_proc) Ditto.
1400
1401         * dfm.c: Split up reader and writer into separate code, because
1402         they do different things.  Use struct string instead of explicit
1403         allocation code, for clarity.
1404         (enum dfm_reader_flags) New enum.
1405         (struct dfm_fhuser_ext) Removed.
1406         (struct dfm_reader_ext) New.
1407         (get_reader) New function, used by just about all the reader
1408         functions.
1409         (dfm_close) Removed.
1410         (close_reader) New function.
1411         (dfm_open_for_reading) Rewrite initialization of dfm_fhuser_ext.
1412         (dfm_open_for_writing) Ditto.
1413         (macro force_line_buffer_expansion) Removed.
1414         (count_tabs) Removed.
1415         (tabs_to_spaces) Removed.
1416         (read_record) Deal with new dfm_reader_ext.  Use struct string
1417         functions.  Don't convert tabs to spaces.
1418         (dfm_eof) New function.
1419         (dfm_get_record) Changed interface, rewrote.
1420         (dfm_expand_tabs) New function.
1421         (dfm_fwd_record) Renamed dfm_forward_record(), updated to new
1422         dfm_reader_ext, rewritten.
1423         (dfm_bkwd_record) Renamed dfm_reread_record(), updated to new
1424         dfm_reader_ext, rewritten.
1425         (dfm_set_record) Removed in favor of dfm_forward_columns().
1426         (dfm_forward_columns) New function.
1427         (dfm_get_cur_col) Renamed dfm_column_start, updated to new
1428         dfm_reader_ext, rewritten.
1429         (static var dfm_r_class) Use close_reader for the destructor.
1430         (struct dfm_writer_ext) New.
1431         (dfm_put_record) Updated to new dfm_writer_ext, rewritten.  Uses
1432         bounce buffer now instead of local allocation.
1433         (close_writer) New function.
1434         (static var dfm_writer_ext) Use close_writer for destructor.
1435         (cmd_begin_data) Adapt to new dfm_reader_ext.
1436
1437         * file-handle.q: Add support for per-file tab width.
1438         (struct private_file_handle) Add tab_width member.
1439         (q2c specifications) Add tabwidth subcommand.
1440         (cmd_file_handle) Put parsed tab width into private_file_handle.
1441         (create_file_handle) Set default tab width.
1442         (handle_get_tab_width) New function.
1443
1444         * file-type.c: (file_type_source_read) Adapt to new DFM interface.
1445
1446         * inpt-pgm.c: (reread_trns_proc) Ditto.
1447
1448         * matrix-data.c: (context) Ditto.
1449         (another_token) Ditto.
1450         (mget_token) Ditto.
1451         (force_eol) Ditto.
1452
1453 Sun May 30 18:33:59 2004  Ben Pfaff  <blp@gnu.org>
1454
1455         * casefile.c: (casefile_destroy) Fix memory leak by freeing
1456         cf->filename.
1457         (casereader_destroy) Don't close file descriptor -1.
1458
1459         * recode.c: (cmd_recode) Fix memory leak.
1460
1461         * set.q: (q2c specifications) Fix typo in user message.
1462
1463         * str.c: (st_bare_pad_len_copy) Change memcpy to memmove to avoid
1464         undefined behavior for overlapping arguments.
1465
1466 Sun May 30 18:31:48 2004  Ben Pfaff  <blp@gnu.org>
1467
1468         * casefile.c: valgrind doesn't implement posix_fadvise() yet, so
1469         don't call it when we're running under valgrind.
1470         (call_posix_fadvise) New function.
1471         (casefile_to_disk) Use call_posix_fadvise().
1472         (reader_open_file) Ditto.
1473         
1474 Sun May 30 18:20:12 2004  Ben Pfaff  <blp@gnu.org>
1475
1476         Update our string ADTs, struct string and struct len_string.  Get
1477         rid of pool support, which was largely unused.  Rename lots of
1478         functions to have more obvious or consistent names.
1479         
1480         * ascii.c: Get rid of ascii_pool.  It was only used for string
1481         allocations.
1482         (ascii_open_global) Don't create ascii_pool.
1483         (ascii_close_driver) Don't destroy ascii_pool.
1484         (ascii_postopen_driver) Don't use pool.
1485         (ascii_close_driver) Destroy strings manually.
1486
1487         * str.c: (ds_create) Remove pool argument, all references updated.
1488         (ds_init) Ditto.
1489         (ds_replace) Remove pool support, make more efficient when we
1490         don't need to reallocate.
1491         (ds_destroy) Remove pool support.
1492         (ds_rpad) New function.
1493         (ds_size) Renamed ds_capacity(), all references updated.
1494         (ds_value) Renamed ds_c_str(), all references updated.
1495         (ds_concat) Renamed ds_puts(), all references updated.
1496         (ds_concat_buffer) Renamed ds_concat(), all references updated.
1497         (ds_putchar) Renamed ds_putc(), all references updated.
1498         (ds_getline) Renamed ds_gets(), all references updated.
1499         (ls_create) Remove pool argument, all references updated.
1500         (ls_create_buffer) Ditto.
1501         (ls_destroy) Removed pool support.
1502         (ls_value) Renamed ls_c_str(), all references updated.
1503
1504         * str.h: (ls_length) [__GNUC__] Add inline version.
1505         (ls_c_str) [__GNUC__] Add inline version.
1506         (ls_end) [__GNUC__] Add inline version.
1507         (struct string) Remove pool member.  Rename `size' to `capacity',
1508         all references updated.
1509
1510         * tab.c: (text_format) Instead of using pool argument to
1511         ls_create_buffer(), call pool_register() on allocated data.
1512
1513 Mon Apr 26 22:40:07 2004  Ben Pfaff  <blp@gnu.org>
1514
1515         We're abusing the current ASCII driver by telling it to allocate a
1516         9999-line, 9999-character page in the tests.  This causes some
1517         systems to curl up and die because it allocates 20 MB of
1518         contiguous RAM.  This change alleviates at least part of the
1519         problem.  It is mostly a stop-gap until the new output system is
1520         ready.
1521         
1522         * ascii.c: (struct line) New structure.
1523         (struct ascii_driver_ext) Remove `page', `page_size', `line_len',
1524         `line_len_size', `n_output' members.  Add `lines', `lines_cap'.
1525         (ascii_preopen_driver) Initialize new members, not old ones.
1526         (ascii_close_driver) Destroy new members, not old ones.
1527         (ascii_open_page) Allocate new members, not old ones.
1528         (expand_line) Allocate room in line.
1529         (draw_line) Use new members.
1530         (ascii_line_horz) Ditto.
1531         (ascii_line_vert) Ditto.
1532         (ascii_line_intersection) Ditto.
1533         (text_draw) Ditto.
1534         (output_lines) Ditto.
1535         (ascii_close_page) Ditto.
1536
1537 Sun Apr 25 23:40:15 2004  Ben Pfaff  <blp@gnu.org>
1538
1539         * matrix.c: Dead code.  Removed.
1540
1541         * matrix.h: Dead code.  Removed.
1542
1543 Fri Apr 16 23:59:51 2004  Ben Pfaff  <blp@gnu.org>
1544
1545         Contrary to what I'd always understood, there is an efficient
1546         algorithm for deletion from a hash table populated via linear
1547         probing.  This change implements it.
1548         
1549         * hash.c: (hsh_rehash) Probe in increasing order.
1550         (hsh_probe) Ditto.
1551         (locate_matching_entry) Ditto.
1552         (hsh_delete) Use Knuth's Algorithm 6.4R for deletion.
1553
1554 Tue Apr 13 19:24:15 2004  Ben Pfaff  <blp@gnu.org>
1555
1556         * moments.c (calc_moments): Adjust calculation of kurtosis to
1557         avoid subtracting huge numbers from huge numbers, on Michael
1558         Kiefte's advice.
1559
1560 Sun Apr 11 14:22:12 2004  Ben Pfaff  <blp@gnu.org>
1561
1562         Rework moments routines for improved numerical stability based on
1563         Michael Kiefte's advice.  Any bugs or remaining numerical problems
1564         are still mine though.
1565
1566         There is now a struct moments1 for use with one-pass moments.  It
1567         uses a provisional means algorithm as an attempt to improve
1568         accuracy of higher moments.  The older struct moments now only
1569         handles two-pass moments.
1570         
1571         * aggregate.c: Use moments1 instead moments.
1572
1573         * descript.c: Revert previous change, which is no longer needed
1574         due to the moments revision.
1575
1576         * moments.c: (calc_moments) New function for calculating variance,
1577         skewness, kurtosis.
1578         (moments_pass_one) Only accumulate weights bigger than zero.
1579         (moments_calculate) Allow calculating the mean on pass one, others
1580         require pass two.  Implement in terms of calc_moments().
1581         (struct moments1) New structure.
1582         (init_moments1) New function.
1583         (moments1_clear) Ditto.
1584         (moments1_create) Ditto.
1585         (moments1_add) Ditto.
1586         (moments1_calculate) Ditto.
1587         (moments1_destroy) Ditto.
1588         (cmd_debug_moments) Deal with `struct moments' or `struct
1589         moments1' as requested by user.
1590
1591 Sun Apr 11 14:21:55 2004  Ben Pfaff  <blp@gnu.org>
1592
1593         * Makefile.am (pspp_SOURCES): Remove debug.c.
1594
1595         * debug.c: Removed.  It was empty anyway.
1596
1597 Fri Apr  9 20:04:49 2004  Ben Pfaff  <blp@gnu.org>
1598
1599         * descript.c (calc_descriptives): Fix assert failure when only
1600         MOMENT_MEAN is needed.
1601
1602 2004-04-09  Michael Kiefte  <mkiefte@dal.ca>
1603
1604         * descript.c: 
1605
1606         fixed problem with parsing in match_statistic() causing
1607         "DESCRIPTIVE STAT=MEAN." to barf.
1608
1609         "MEAN" is now default if "SORT" given without specification.
1610
1611         Fixed infinite loop with "DESCRIPT GIBBERISH=ALL."  Parsing is
1612         generally less forgiving of syntax errors: better to have it do
1613         nothing and type it in again then to not know what it actually did
1614         instead.  
1615
1616         z-score transformation now checks score for user-missing values
1617         and checks std_dev for SYSMIS.
1618
1619 2004-04-06  Michael Kiefte  <mkiefte@dal.ca>
1620
1621         * aggregate.c, crosstabs.q, descript.c, dictionary.c, frequencies.q, levene.c, t-test.q, var.h: 
1622         Changed dict_get_case_weight() to accept an additional int * flag
1623         to complain about system-missing, user-missing, zero, or negative
1624         weights and updated existing functions to pass int * to
1625         dict_get_case_weight().
1626
1627 2004-04-05  jmd  <jmd@gnu.org>
1628
1629         * main.c: Fixed configuration problems with gsl
1630
1631         * t-test.q: Fixed some problems encountered when compiling under Cygwin
1632
1633 2004-04-03  blp  <blp@gnu.org>
1634
1635         * lexer.c, ChangeLog:
1636         Fix infinite loop on comment at end of file, add test.
1637
1638 2004-04-03  jmd  <jmd@gnu.org>
1639
1640         * 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:
1641         Fixed the calculation of percentiles and added --syntax and --algorithm options
1642
1643 Sat Apr  3 11:43:37 2004  Ben Pfaff  <blp@gnu.org>
1644
1645         * lexer.c: (lex_skip_comment) Handle end-of-file correctly (I
1646         hope).
1647
1648 Sat Apr  3 15:00:18 WST 2004 John Darrington <john@darrington.wattle.id.au>
1649
1650         * frequencies.q:  Fixed the calculation of percentiles
1651
1652         * Makefile.am:  Added the --ansi flag and dealt with the
1653         consequences.  Added some entries to PSPP_sources so that
1654         make distcheck would pass
1655
1656         * cmdline.c:   Added the --syntax and --algorithm options
1657
1658         * q2c.c:  Added an implicit /ALGORITHM subcommand to everything.
1659
1660 Fri Apr  2 11:25:22 WAST 2004 John Darrington <john@darrington.wattle.id.au>
1661
1662         * t-test.q, levene.c, levene.h  Converted t-test (incl levene) to 
1663         use the new multipass_split_... mechanism.
1664
1665 Wed Mar 31 22:36:22 2004  Ben Pfaff  <blp@gnu.org>
1666
1667         * frequencies.q: (calc_stats) Use moments data structure and
1668         calc_seskew(), calc_sekurt() functions.
1669
1670         * set.q main.c settings.h Added support for --syntax and --algorithm 
1671         options
1672
1673 Tue Mar 30 22:04:19 2004  Ben Pfaff  <blp@gnu.org>
1674
1675         * vfm.c: Had to get last call to multipass_split_output() inside
1676         open_active_file()/close_active_file() pairing, so introduce new
1677         function.
1678         (internal_procedure) Move procedure() code here, except for calls
1679         to open_active_file() and close_active_file().
1680         (procedure) Wrap open_active_file() and close_active_file() around
1681         internal_procedure().
1682         (multipass_procedure_with_splits) Wrap open_active_file() and
1683         close_active_file() around internal_procedure().
1684
1685 Tue Mar 30 22:01:57 2004  Ben Pfaff  <blp@gnu.org>
1686
1687         * descript.c: (cmd_descriptives) Free `vars' to avoid memory leak.
1688
1689 Mon Mar 29 16:26:40 2004  Ben Pfaff  <blp@gnu.org>
1690
1691         * debug.c: Removed.  Moved cmd_debug_evaluate() into expr-evl.c.
1692
1693         * expr-evl.c: (cmd_debug_evaluate) Moved here from debug.c.
1694
1695 Mon Mar 29 16:03:08 2004  Ben Pfaff  <blp@gnu.org>
1696
1697         * algorithm.c: By default turn off some of the more expensive
1698         assertions.
1699         (expensive_assert) New macro which expands to assert if
1700         EXTRA_CHECKS is defined, to nothing otherwise.
1701         (unique) Use expensive_assert().
1702         (binary_search) Ditto.
1703         (push_heap) Ditto.
1704         (pop_heap) Ditto.
1705         (make_heap) Ditto.
1706         (sort_heap) Ditto.
1707
1708         * command.c: (conflicting_3char_prefixes) Words that are the same
1709         don't cause conflicts when they are abbreviated to the first three
1710         letters.
1711
1712         * expr-evl.c: (CONCAT_func) Fix memory leak by incrementing struct
1713         nonterm_node's n earlier.
1714         (generic_str_func) Ditto.
1715         
1716 Mon Mar 29 15:32:17 2004  Ben Pfaff  <blp@gnu.org>
1717
1718         Add support for multipass procedures.  Rewrite DESCRIPTIVES to
1719         test multipass support, take advantage of new moments
1720         calculation, and to not be such crappy code.  Get rid of q2c
1721         processing for DESCRIPTIVES.
1722
1723         * vfm.c: (struct multipass_split_aux_data) New structure.
1724         (multipass_procedure_with_splits) New function.
1725         (multipass_split_callback) New function.
1726         (multipass_split_output) New function.
1727         * descript.q: Removed.
1728
1729         * descript.c: New file.
1730
1731         * var.h: Removed descriptives enums.
1732         (struct descriptives_proc) Removed.
1733         (struct variable) Removed p.dsc.
1734
1735         * Makefile.am: (q_sources_c) Remove descript.c.
1736         (q_sources_q) Removed descript.q.
1737         
1738 Mon Mar 29 15:31:55 2004  Ben Pfaff  <blp@gnu.org>
1739
1740         New manager for keeping track of used workspace.
1741         
1742         * workspace.c: New file.
1743
1744         * workspace.h: New file.
1745
1746         * Makefile.am: (pspp_SOURCES) Add workspace.c, workspace.h.
1747
1748         * sort.c: (do_internal_sort) Use workspace_malloc().
1749         (destroy_internal_sort) Use workspace_free().
1750
1751 Mon Mar 29 15:31:08 2004  Ben Pfaff  <blp@gnu.org>
1752
1753         New `struct casefile' for managing sets of cases.
1754
1755         * casefile.c: New file.
1756
1757         * casefile.h: New file.
1758
1759         * command.def: Add DEBUG CASEFILE command.
1760
1761         * Makefile.am: (pspp_SOURCES) Add casefile.c, casefile.h.
1762
1763         * sort.c: (sort_cases) Move logic for sending storage file to disk
1764         into do_external_sort().
1765         (struct internal_sort) Use an array of ccase pointers instead of a
1766         case_list.
1767         (do_internal_sort) Rewrite to handle casefiles.
1768         (compare_case_list) Removed.
1769         (compare_cases) New function.
1770         (compare_case_dblptrs) New function.
1771         (read_internal_sort_output) Deal with new struct internal_sort.
1772
1773         * vfm.c: (static var workspace_overflow) Removed.
1774         (struct storage_stream_info) Removed all the members.  Added
1775         struct casefile * member.
1776         (storage_sink_open) Use casefile.
1777         (open_storage_file) Removed.
1778         (write_storage_file) Removed.
1779         (storage_to_disk) Removed.
1780         (destroy_storage_stream_info) Use casefile.
1781         (storage_sink_write) Use casefile.
1782         (storage_sink_make_source) Use casefile.
1783         (storage_source_count) Use casefile.
1784         (storage_source_read) Use casefile.
1785         (storage_source_on_disk) Removed.
1786         (storage_source_get_cases) Removed.
1787         (storage_source_set_cases) Removed.
1788         (storage_source_get_casefile) New function.
1789         
1790 Mon Mar 29 15:30:09 2004  Ben Pfaff  <blp@gnu.org>
1791
1792         New `struct moments' for calculating moments.
1793
1794         * stats.c: Removed.
1795
1796         * stats.h: Removed.
1797
1798         * moments.c: New file.
1799
1800         * moments.h: New file.
1801
1802         * command.def: Add DEBUG MOMENTS command.
1803
1804         * Makefile.am: (pspp_SOURCES) Add moments.c, moments.h.  Remove
1805         stats.c, stats.h.
1806
1807         * aggregate.c: Modify AGGREGATE to use the new moments
1808         calculation, even if not in such a great way.
1809         (struct agr_var) Add `moments' member.
1810         (parse_aggregate_functions) Set `moments' member to null.
1811         (agr_destroy) Destroy `moments' member.
1812         (accumulate_aggregate_info) Use `moments' for standard deviation.
1813         (dump_aggregate_info) Ditto.
1814         (initialize_aggregate_info) Create or clear `moments'.
1815
1816         * misc.h: Add pow2(), pow3(), pow4() functions in place of sqr(),
1817         cube(), pow4() that were in stats.h.  All references updated.
1818
1819         * crosstabs.q: stats.h had chi-square significance functions.  Use
1820         GSL instead.
1821         (display_chisq) Use gsl_cdf_chisq_Q() instead of chisq_sig().
1822
1823         * expr-evl.c: (expr_evaluate) Use moments_of_values() for
1824         OP_CFVAR, OP_MEAN, OP_SD, OP_VARIANCE.
1825                 
1826 Fri Mar 26 14:21:23 2004  Ben Pfaff  <blp@gnu.org>
1827
1828         * dictionary.c: (dict_compact_values) Compacted values need to
1829         start off from 0.
1830
1831 Fri Mar 26 00:54:57 2004  Ben Pfaff  <blp@gnu.org>
1832
1833         * var-labs.c: (cmd_variable_labels) For compatibility, don't allow
1834         `/' at start.  Check return value of parse_variables() for error
1835         return.
1836
1837 Fri Mar 26 00:19:27 2004  Ben Pfaff  <blp@gnu.org>
1838
1839         Revamp expressions: make the code a little nicer, and fix bugs
1840         found in testing.
1841         
1842         * expr-evl.c: (expr_evaluate) Make expression argument const.
1843         Support OP_ADD, OP_SUB, OP_MUL, OP_DIV instead of OP_PLUS, OP_MUL.
1844         OP_POW is missing for arg 2 <= 0.  OP_LOG is natural log, not
1845         base-10 log.  Fix OP_ANY, OP_ANY_STRING, OP_RANGE, OP_RANGE_STRING
1846         off-by-ones.  Add OP_MAX_STRING, OP_MIN_STRING.  Fix OP_TIME_HMS,
1847         OP_DATE_WKYR boundary conditions.  Add OP_CTIME_DAYS,
1848         OP_CTIME_HOURS, OP_CTIME_MINUTES, OP_CTIME_DAYS, OP_CTIME_SECONDS.
1849         Support OP_INDEX_2, OP_INDEX_3, OP_RINDEX_2, OP_RINDEX_3 instead
1850         of OP_INDEX, OP_INDEX_OPT, OP_RINDEX, OP_RINDEX_OPT.  Merge
1851         OP_LPAD_OPT into OP_LPAD, OP_RPAD_OPT into OP_RPAD, OP_LTRIM_OPT
1852         into OP_LTRIM, OP_RTRIM_OPT into OP_RTRIM, OP_NUMBER_OPT into
1853         OP_NUMBER.  Fix OP_RTRIM fragility.  Support OP_SUBSTR_2,
1854         OP_SUBSTR_3 instead of OP_SUBSTR, OP_SUBSTR_OPT.  Remove OP_INV.
1855         Simplify OP_SYSMIS.  Remove OP_STR_MIS.
1856
1857         * expr-opt.c: (optimize_expression) Rewrite.
1858         (macro n0) Removed.
1859         (macro n1) Removed.
1860         (macro n2) Removed.
1861         (macro s0) Removed.
1862         (macro s0l) Removed.
1863         (macro s1) Removed.
1864         (macro s1l) Removed.
1865         (macro s2) Removed.
1866         (macro s2l) Removed.
1867         (macro s) Removed.
1868         (macro sl) Removed.
1869         (eq_num_con) New function.
1870         (optimize_tree) New function.
1871         (macro rnc) Removed.
1872         (macro frnc) Removed.
1873         (str_search) Add const to string params.
1874         (str_rsearch) Ditto.
1875         (evaluate_tree_no_missing) Renamed from evaluate_tree.  Add num[],
1876         str[], str_len[] locals to substitute for most of removed macros.
1877         Support OP_ADD, OP_SUB, OP_MUL, OP_DIV instead of OP_PLUS, OP_MUL.
1878         Removed support for missing values because we're never called with
1879         missing values.  Use set_number() or set_number_errno() instead of
1880         rnc or frnc.  Removed any stuff that caused trouble in testing.
1881         We can re-add it later if it really slows anything.  Fix some
1882         random problems.
1883         (evaluate_tree_with_missing) Not yet supported.  To be added later
1884         if it's important.
1885         (repl_num_con) Removed.
1886         (collapse_node) New function.
1887         (force_repl_num_con) Removed.
1888         (set_number) New function.
1889         (set_number_errno) New function.
1890         (repl_str_con) Removed.
1891         (set_string) New function.
1892         (yrmoda) Tighten boundary conditions.  Adopt 2030 cut-off for
1893         2-digit years.
1894         (dump_node) No special case for OP_AND, OP_OR.
1895
1896         * expr-prs.c: (expr_prs) Honor EXPR_NO_OPTIMIZE bit.  Rewrite.
1897         (expr_get_type) New function.
1898         (type_check) Rewrite.
1899         (type_coercion) New function.
1900         (struct operator) New structure.
1901         (match_operator New function.
1902         (parse_binary_operators) New function.
1903         (parse_inverting_unary_operator) New function.
1904         (parse_or) Rewritten.
1905         (parse_and) Rewritten.
1906         (parse_not) Rewritten.
1907         (parse_rel) Rewritten.
1908         (parse_add) Rewritten.
1909         (parse_mul) Rewritten.
1910         (parse_neg) Rewritten.
1911         (parse_exp) Rewritten.
1912         (parse_sysvar) Add $TRUE, $FALSE system variables.
1913         Get $LENGTH, $WIDTH from get_viewlength(), get_viewwidth().
1914         (parse_primary) Use allocate_var_node(), allocate_num_con(),
1915         allocate_str_con().
1916         (struct function) Remove desc, change `func' prototype.
1917         (unary_func) Remove special cases.
1918         (MISSING_func) Reduce to unary_func() that just returns a boolean.
1919         (SYSMIS_func) Handle SYSMIS((x)) like SYSMIS(x).
1920         (VALUE_func) Use allocate_var_node().
1921         (nary_num_func) Allow MIN and MAX for strings.
1922         Use allocate_var_node().  Properly clean up.
1923         Fix return type.
1924         (generic_str_func) Use local table instead of removed `desc'
1925         member.  Mostly rewrite.
1926         (get_num_args) Revise error message.
1927         (parse_function) Return EXPR_ERROR, not 0 on error.
1928         (macro op) Removed.
1929         (macro varies) Removed.
1930         (ops[]) Use expr.def.
1931         (free_node) Do nothing if node is null.
1932         (allocate_num_con) New function.
1933         (allocate_str_con) New function.
1934         (allocate_var_node) New function.
1935         (allocate_binary_nonterminal) New function.
1936         (append_nonterminal_arg) Removed.
1937         (static var func_tab[]) Revised.
1938         (expr_debug_print_postfix) Make parameter const.
1939         Use printf() instead of debug_printf().
1940
1941         * expr.def: New file.
1942         
1943         * expr.h: Change PXP_* to EXPR_*, all references updated.  Also
1944         use named enum instead of unnamed, all references updated.  Add
1945         EXPR_ANY, EXPR_NO_OPTIMIZE.
1946
1947         * exprP.h: Remove EX_*.  Add DEFINE_OPERATOR.  Use expr.def
1948         instead of defining OP_* directly.
1949         (macro IS_TERMINAL) New macro.
1950         (macro IS_NONTERMINAL) New macro.
1951         (enum OP_NO_FLAGS) New.
1952         
1953 Fri Mar 26 00:18:01 2004  Ben Pfaff  <blp@gnu.org>
1954
1955         * error.c: (err_assert_fail) msg variable needs to be non-const.
1956
1957 Fri Mar 26 00:17:24 2004  Ben Pfaff  <blp@gnu.org>
1958
1959         * debug.c: (cmd_debug_evaluate) Rewrite.
1960
1961 Fri Mar 26 00:15:13 2004  Ben Pfaff  <blp@gnu.org>
1962
1963         Fix some CROSSTABS bit rot stupidity.
1964
1965         * crosstabs.q: Reorder the CELLS subcommands for compatibility.
1966         (internal_cmd_crosstabs) Initializes cells[] correctly.
1967         (float_M_suffix) Rename format_cell_entry(), change prototype,
1968         rewrite.
1969         (display_crosstabulation) Fix cell formatting.
1970
1971 Fri Mar 26 00:14:09 2004  Ben Pfaff  <blp@gnu.org>
1972
1973         Make lex_rest_of_line(), lex_entire_end() not discard lines.  Have
1974         to call lex_discard_line() to do that.
1975
1976         * command.c: (run_command) Call lex_discard_line() after
1977         lex_rest_of_line().
1978
1979         * lexer.c: (lex_entire_end) Change behavior.
1980         (lex_rest_of_line) Change behavior.  Return const char *.
1981         (lex_discard_line) Don't clear getl_buf, don't emit message.
1982
1983         * main.c: (handle_error) Emit message here.
1984
1985         * repeat.c: (internal_cmd_do_repeat) Use lex_discard_line()
1986         instead of lex_entire_line().
1987
1988         * str.c: (mm_find_reverse) Make length params size_t.  Rewrite.
1989
1990         * title.c: (get_title) Call lex_discard_line() after
1991         lex_rest_of_line().
1992         (cmd_file_label) Ditto.
1993         (cmd_document) Deal with const char * return value.
1994
1995 Fri Mar 26 00:10:16 2004  Ben Pfaff  <blp@gnu.org>
1996
1997         Removed REMARK command.
1998
1999         * command.c: (extract_prefix) Removed.
2000         (output_line) Removed.
2001         (cmd_remark) Removed.
2002
2003         * command.def: Remove REMARK.
2004
2005 Fri Mar 26 00:08:38 2004  Ben Pfaff  <blp@gnu.org>
2006
2007         Added abort() after lots of assert(0) invocations to avoid some
2008         compiler warnings.  We really need a NOT_REACHED macro.
2009
2010 Tue Mar 23 08:00:42 WAST 2004 John Darrington <john@darrington.wattle.id.au>
2011
2012         * sort.c: Added missing call to temp_file_close.  Changed error 
2013         messages to warnings.
2014
2015         * set.q: Improved setting of set_view{length,width} to be more tolerant
2016         of buggy OSes.
2017
2018 Sun Mar 21 10:11:14 WST 2004 John Darrington <john@darrington.wattle.id.au>
2019
2020         * val-labs.c: Fixed a bug where PSPP would crash, if VALUE LABELS was
2021         used with incorrect syntax.
2022
2023         * error.c, error.h et al:  Overridden definition of assert for a
2024         custom one.
2025
2026         * test-q.c: Fixed a buglet where it would crash if no /VARIABLES
2027         subcommand was given when it ought to have been.
2028
2029 Sat Mar 20 22:19:08 2004  Ben Pfaff  <blp@gnu.org>
2030
2031         * tab.c: (tab_vline) Fix assertions to respect row_ofs and
2032         col_ofs.
2033         (tab_hline) Ditto.
2034         (tab_box) Ditto.
2035         (tab_joint_text) Ditto.
2036
2037 Sat Mar 20 17:57:23 2004  Ben Pfaff  <blp@gnu.org>
2038
2039         * levene.c: Add #include.
2040
2041         * set.q: (set_viewport) Add `int' argument to make its prototype
2042         correct for signal().
2043
2044 Sat Mar 20 15:35:17 2004  Ben Pfaff  <blp@gnu.org>
2045
2046         * expr-evl.c: (expr_evaluate) Assert that `c' is nonzero before
2047         using it.
2048
2049 Sat Mar 20 15:18:16 2004  Ben Pfaff  <blp@gnu.org>
2050
2051         Changed DFM from open-at-first-access to explicit-open.  Before,
2052         calling dfm_get_record() or dfm_put_record() would automatically
2053         open the file.  Now, you have to call dfm_open_for_reading() or
2054         dfm_open_for_writing() explicitly.  This makes it possible to
2055         check permissions, file existence, etc. earlier.
2056
2057         Also made struct file_handle more opaque, and clean up in general.
2058
2059         * data-list.c: (cmd_data_list) Open handle for reading.
2060
2061         * dfm.c: (struct dfm_fhuser_ext) Add `where', `saw_begin_data'
2062         members.
2063         (open_file_r) Renamed dfm_open_for_reading(), rewrote.
2064         (open_file_w) Renamed dfm_open_for_writing(), rewrote.
2065         (open_inline_file) Removed.
2066         (read_record) For inline_file, if we haven't seen BEGIN DATA, read
2067         it.  Deal with line_number in extension record instead of file
2068         handle.
2069         (dfm_get_record) Rewrote.
2070         (dfm_put_record) Rewrote.
2071         (dfm_push) Assert file is open and one of ours.  Deal with
2072         line_number in extension record instead of file handle.
2073         (dfm_pop) Assert file is open and one of ours.  Deal with
2074         line_number in extension record instead of file handle.
2075         (cmd_begin_data) Use dfm_open_for_reading().  Mark that we saw
2076         BEGIN DATA.     
2077
2078         * file-handle.h: (enum constants RH_RF_*) Removed.
2079         (enum constants FH_MD_*) Removed.
2080         (struct file_handle) Removed `name', `norm_fn', `fn', `where',
2081         `recform', `lrecl', `mode' members.  Public references to
2082         `recform' changed to use handle_get_mode(), references to `lrecl'
2083         changed to use handle_get_record_width().  Added `private' member.
2084         (enum file_handle_mode) New.
2085
2086         * file-handle.q: (struct private_file_handle) New structure.
2087         (struct file_handle_list) New structure.
2088         (static var files) New.
2089         (static var file_handles) Removed.
2090         (init_file_handle) Removed.
2091         (create_file_handle) Removed.
2092         (get_handle_with_name) New function.
2093         (get_handle_for_filename) New function.
2094         (cmd_file_handle) Rewritten.
2095         (hash_file_handle) Removed.
2096         (cmp_file_handle) Removed.
2097         (fh_init_files) Rewritten.
2098         (fh_parse_file_handle) Rewritten.  Allows identifiers as
2099         filenames.
2100         (fh_get_handle_by_name) Renamed handle_get_name(), all references
2101         updated.  Rewritten.
2102         (fh_get_handle_by_filename) Renamed handle_get_filename(), all
2103         references updated.  Rewritten.
2104         (fh_record_width) Renamed handle_get_record_width(), all
2105         references updated.  Rewritten.
2106         (handle_get_mode) New function.
2107
2108         * file-type.c: (cmd_file_type) Open handle for reading.
2109
2110         * filename.c: [unix] (struct file_identity) New structure.
2111         [unix] (fn_get_identity) New function.
2112         [unix] (fn_free_identity) New function.
2113         [unix] (fn_compare_file_identities) New function.
2114         [!unix] (struct file_identity) New structure.
2115         [!unix] (fn_get_identity) New function.
2116         [!unix] (fn_free_identity) New function.
2117         [!unix] (fn_compare_file_identities) New function.
2118
2119         * lexer.c: (static var put) Renamed put_token, all references
2120         updated.
2121         (static var put_tokstr) New.
2122         (static var put_tokval) New.
2123         (lex_init) Initialize put_tokstr().
2124         (restore_token) New function.
2125         (save_token) New function.
2126         (lex_get) Use restore_token().
2127         (lex_put_back) Use save_token().
2128         (lex_put_back_id) New function.
2129         (lex_put_forward) Removed.
2130         (lex_preprocess_line) Set put_token instead of using
2131         lex_put_forward().
2132         (lex_negative_to_dash) Use save_token(), set put_token directly.
2133         (dump_token) Use stderr instead of stdout.
2134
2135         * main.c: (main) Remove call to cmd_init().
2136         
2137         * matrix-data.c: (cmd_matrix_data) Open file for reading.
2138
2139         * pfm-read.c: Use handle_get_filename() instead of trying to use
2140         h->fn directly, all over.
2141
2142         * pfm-write.c: Ditto.
2143
2144         * print.c: (internal_cmd_print) Open handle for writing.
2145         (dump_table) Use handle_get_filename().
2146         (print_trns_proc) Use handle_get_mode().
2147         (cmd_print_space) Use fh_parse_file_handle().
2148         Open handle for writing.
2149         [0] (debug_print) Removed.
2150
2151         * sfm-read.c: Use handle_get_filename() instead of trying to use
2152         h->fn directly, all over.
2153
2154         * sfm-write.c: Ditto.
2155
2156 Sat Mar 20 14:35:48 2004  Ben Pfaff  <blp@gnu.org>
2157
2158         Fix memory leaks.
2159         
2160         * autorecode.c: (arc_free) Free arc->src_values.
2161
2162         * error.c: (msg) Free buf.
2163
2164         * val-labs.c: (do_value_labels) Always free vars.
2165
2166         * vfm.c: (close_active_file) If sink has no make_source then call
2167         its destroy function.
2168
2169 Sat Mar 20 14:00:24 2004  Ben Pfaff  <blp@gnu.org>
2170
2171         Fixed cmd_parse() so that it always skips past a full command
2172         name.  A few special commands for which this would be bad get
2173         special treatment.  This lets us drop code for skipping past the
2174         end of a command name in most cmd_*() functions.  It's not worth
2175         listing all the commands affected.
2176
2177         * command.c: (struct command) Remove `cmd' member, replace by
2178         `name' member, all references updated.  Remove `word', `next',
2179         `skip_entire_name' members.
2180         (macro DEFCMD) Deal with revised `struct command'.
2181         (macro UNIMPL) Ditto.
2182         (macro SPCCMD) New macro for commands whose last word shouldn't be
2183         skipped.
2184         (static array cmd_table[]) Make const, rename `commands', remove
2185         sentinel element.
2186         (macro COMMAND_CNT) New macro.
2187         (split_words) Removed.
2188         (cmd_init) Removed.
2189         (FILE_TYPE_okay) Make parameter const.
2190         (cmd_parse) Improve error messages.
2191         (match_strings) New function.
2192         (next_word) New function.
2193         (enum command_match) New enum.
2194         (conflicting_3char_prefixes) New function.
2195         (conflicting_3char_prefix_command) New function.
2196         (cmd_match_words) New function.
2197         (count_matching_commands) New function.
2198         (get_command_name) New function.
2199         (free_words) New function.
2200         (unknown_command_error) New function.
2201         (figure_out_command) Renamed parse_command_name(), rewritten.
2202
2203         * command.def: Removed @ command.  Marked BEGIN DATA, DOCUMENT,
2204         FILE LABEL, REMARK, SUBTITLE, TITLE as special.  Renamed EVALUATE
2205         to DEBUG EVALUATE.  Added N alias for N OF CASES, SORT alias for
2206         SORT CASES.
2207
2208         * command.h: (macro SPCCMD) New.
2209
2210         * include.c: (cmd_include_at) Removed.
2211         (cmd_include) Allow identifier to be used as filename.
2212
2213         * inpt-pgm.c: (cmd_reread) Use fh_parse_file_handle().
2214
2215         * t-test.q: (cmd_t_test) Command name is now parsed for us.
2216         
2217
2218 Sat Mar 20 13:56:00 2004  Ben Pfaff  <blp@gnu.org>
2219
2220         Start work on better test framework.
2221         
2222         * Makefile.am: (pspp_sources) Add debug.c.
2223         
2224         * debug.c: New file.
2225
2226         * compute.c: (cmd_evaluate) Moved to debug.c, renamed
2227         cmd_debug_evaluate().
2228
2229         * expr-prs.c: (expr_parse) Remove PXP_DUMP support.
2230
2231         * expr.h: (enum constant PXP_DUMP) Removed.
2232
2233 Sat Mar 20 00:05:42 WST 2004 John Darrington <john@darrington.wattle.id.au>
2234
2235         * set.q:  Implemented the SHOW command, and synced it to the existing 
2236         SET cmd.
2237
2238         Added a handler for SIGWINCH so that viewlength and viewwidth follow
2239         changes as the window size is changed.
2240
2241         Added fallback to set viewlength and viewwidth from LINES and COLUMS
2242         environment variables if other methods are not available.
2243
2244         glob.c: Removed a lot of global variables from glob.c and encapsulated 
2245         them in set.q
2246
2247         random.c: Tidied up the way the random seed is set.
2248
2249         str.c: Added a ds_vprintf function.
2250
2251         error.c: Extended dump_message so that messages are always broken at
2252         '\n' characters.
2253         
2254 Thu Mar 18 11:07:14 2004  Ben Pfaff  <blp@gnu.org>
2255
2256         * pfm-write.c: (bufwrite) Write out the correct element for string
2257         variables.  From Andreas Streichardt <streichardt@globalpark.de>.
2258
2259 Mon Mar 15 20:48:03 2004  Ben Pfaff  <blp@gnu.org>
2260
2261         Get rid of static and global (!) vars in matrix-data.c.
2262
2263         * matrix-data.c: (static var nr_data) Removed.
2264         (static var nr_factor_values) Removed.
2265         (static var max_cell_index) Removed.
2266         (static var split_values) Removed.
2267         (struct nr_aux_data) New structure.
2268         (read_matrices_without_rowtype) Use a local struct nr_aux_data in
2269         place of static vars, pass to create_case_source() and procedure()
2270         as aux data.
2271         (nr_read_data_lines) Use struct nr_aux_data * parameter instead of
2272         struct matrix_data_pgm *.
2273         (nr_read_splits) Ditto.
2274         (nr_read_factors) Ditto.
2275         (nr_output_data) Ditto.
2276         (static var wr_content) Removed.
2277         (global var wr_data) Removed.
2278         (global var wr_current) Removed.
2279         (struct wr_aux_data) New structure.
2280         (read_matrices_with_rowtype) Use a local struct wr_aux_data in
2281         place of static vars, pass to create_case_source() and procedure()
2282         as aux data.
2283         (matrix_data_read_with_rowtype) Use struct wr_aux_data * parameter
2284         instead of matrix_data_pgm *.
2285         (wr_read_splits) Ditto.
2286         (wr_output_data) Ditto.
2287         (wr_read_rowtype) Ditto.
2288         (wr_read_factors) Ditto.
2289         (wr_read_indeps) Ditto.
2290         
2291 Mon Mar 15 20:07:29 2004  Ben Pfaff  <blp@gnu.org>
2292
2293         Get rid of static vars in autorecode.c.
2294
2295         * autorecode.c: (struct autorecode_trns) Rename `arc' to `specs',
2296         `n_arc' to `spec_cnt'.  All references updated.
2297         (static var v_src) Removed.
2298         (static var v_dest) Removed.
2299         (static var h_trns) Removed.
2300         (static var nv_src) Removed.
2301         (static var descend) Removed.
2302         (static var print) Removed.
2303         (enum direction) New enum.
2304         (struct autorecode_pgm) New structure.
2305         (cmd_autorecode) Use struct autorecode_pgm instead of static vars.
2306         Move n_dest local var into struct autorecode_pgm for ease of
2307         clean-up.  Use arc_free().
2308         (arc_free) New function.
2309         (recode) Modify to take struct autorecode_pgm * parameter instead
2310         of using statics.  Let the caller clean up.
2311         (autorecode_proc_func) Use struct autorecode_pgm * auxiliary data
2312         instead of statics.  Rearrange code a little.
2313
2314 Mon Mar 15 00:25:02 2004  Ben Pfaff  <blp@gnu.org>
2315
2316         Get rid of static, global vars in recode.c.  Remove debug code.
2317
2318         * recode.c: (static var head) Removed.
2319         (global var v) Removed.
2320         (global var nv) Removed.
2321         (cmd_recode) New local variables head, v, nv.  Initialize and free
2322         v.  Don't call debug_print().
2323         [DEBUGGING] (dump_dest) Removed.
2324         [DEBUGGING] (debug_print) Removed.
2325
2326 Mon Mar 15 00:14:49 2004  Ben Pfaff  <blp@gnu.org>
2327
2328         Get rid of static vars in expr-opt.c.
2329
2330         * expr-opt.c: (static var e) Removed.
2331         (static var nop) Removed.
2332         (static var mop) Removed.
2333         (static var ndbl) Removed.
2334         (static var mdbl) Removed.
2335         (static var nstr) Removed.
2336         (static var mstr) Removed.
2337         (static var nvars) Removed.
2338         (static var mvars) Removed.
2339         (struct expr_dump_state) New structure.
2340         (dump_expression) Use new struct expr_dump_state instead of static
2341         vars and pass to functions we call.
2342         (dump_node) Use struct expr_dump_state * parameter.
2343         (emit) Ditto.
2344         (emit_num_con) Ditto.
2345         (emit_str_con) Ditto.
2346         (emit_var) Ditto.
2347         
2348 Mon Mar 15 00:03:51 2004  Ben Pfaff  <blp@gnu.org>
2349
2350         Get rid of static var in COUNT.
2351
2352         * count.c: (static var head) Move into cmd_count().
2353         (cmd_count) [DEBUGGING] Don't call debug_print.
2354         [DEBUGGING] (debug_print) Removed.
2355
2356 Sun Mar 14 23:56:09 2004  Ben Pfaff  <blp@gnu.org>
2357
2358         Get rid of static vars in VALUE LABELS, ADD VALUE LABELS.
2359
2360         * val-labs.c: (static var v) Removed.
2361         (static var nv) Removed.
2362         [DEBUGGING] (debug_print) Removed.
2363         (verify_val_labs) Add struct variable **, int parameters.
2364         (get_label) Ditto.  Improve error messages, streamline.
2365         (erase_labels) New function for erasing value labels, taking over
2366         part of verify_val_labs()'s function.
2367         (init) Removed.
2368         (done) Removed.
2369         (cmd_value_labels) No need to call init() or done() anymore.
2370         (cmd_add_value_labels) Ditto.
2371         (do_value_labels) Add vars, var_cnt local variables.  Clean up
2372         after them internally.  Call erase_labels() if we should.  Don't
2373         call debug_print().
2374
2375 Sun Mar 14 23:33:53 2004  Ben Pfaff  <blp@gnu.org>
2376
2377         Get rid of static vars in MATCH FILES.
2378         
2379         * get.c: (static var mtf_head) Removed.
2380         (static var mtf_tail) Removed.
2381         (static var mtf_by) Removed.
2382         (static var mtf_n_by) Removed.
2383         (static var mtf_master) Removed.
2384         (static var mtf_seq_num) Removed.
2385         (static var mtf_seq_nums) Removed.
2386         (static var mtf_sink) Removed.
2387         (static var mtf_case) Removed.
2388         (struct mtf_proc) New structure.
2389         (cmd_match_files) Use struct mtf_proc instead of static vars.
2390         (mtf_processing_finish) Ditto.
2391         (mtf_free) Ditto.
2392         (mtf_delete_file_in_place) Ditto.
2393         (mtf_read_nonactive_records) Ditto.
2394         (mtf_compare_BY_values) Ditto.
2395         (mtf_processing) Ditto.
2396         (mtf_merge_dictionary) Ditto.
2397
2398 Sun Mar 14 22:48:12 2004  Ben Pfaff  <blp@gnu.org>
2399
2400         * command.def: Add CASESTOVARS, VARSTOCASES unimplemented commands.
2401
2402         * dictionary.c: (dict_rename_var) Add assertion.
2403         (dict_contains_var) Check by index instead of name.
2404
2405 Sun Mar 14 22:01:02 2004  Ben Pfaff  <blp@gnu.org>
2406
2407         Get rid of compaction_necessary, compaction_nval, compaction_case.
2408         Redo VFM interface.  Replace disk_sink and memory_sink by
2409         storage_sink, disk_source and memory_source by storage_source.
2410
2411         * vfm.h: (struct case_sink) Add `dict', `idx_to_fv', `value_cnt'
2412         members.
2413
2414         * vfm.c: 
2415         (struct write_case_data) Remove `begin_func', `end_func',
2416         `func_aux' members.  Add `aux', `trns_case', `sink_case',
2417         `cases_written', `cases_analyzed' members.
2418         (global var compaction_necessary) Make static.
2419         (global var compaction_nval) Removed.
2420         (global var compaction_case) Removed.
2421         (static var case_count) Removed.
2422         (struct procedure_aux_data) Removed.
2423         (struct split_aux_data) Removed.
2424         (procedure) Remove begin_func, end_func parameters.  Rewrite.
2425         (static var not_canceled) Removed.
2426         (process_active_file) Removed.
2427         (process_active_file_write_case) Removed.
2428         (process_active_file_output_case) Removed.
2429         (prepare_for_writing) Moved into open_active_file().
2430         (arrange_compaction) Ditto.
2431         (setup_lag) Ditto.
2432         (open_active_file) Rewrote.
2433         (write_case) New function.
2434         [DEBUGGING] (index_to_varname) Removed.
2435         (execute_transformations) New function.
2436         (exclude_this_case) Renamed filter_case(), changed interface.
2437         (clear_case) Added struct ccase * parameter to interface.
2438         (close_active_file) Added struct write_case_data * parameter,
2439         rewrote.
2440         (disk_sink_create) Removed.
2441         (disk_sink_destroy) Removed.
2442         (disk_sink_make_source) Removed.
2443         (disk_sink_write) Removed.
2444         (disk_source_count) Removed.
2445         (disk_source_destroy) Removed.
2446         (disk_source_read) Removed.
2447         (global var disk_sink_class) Removed.
2448         (global var disk_source_class) Removed.
2449         (global var memory_sink_class) Removed.
2450         (global var memory_source_class) Removed.
2451         (memory_sink_create) Removed.
2452         (memory_sink_destroy) Removed.
2453         (memory_sink_make_source) Removed.
2454         (memory_sink_write) Removed.
2455         (memory_source_count) Removed.
2456         (memory_source_destroy) Removed.
2457         (memory_source_get_cases) Removed.
2458         (memory_source_read) Removed.
2459         (memory_source_set_cases) Removed.
2460         (struct disk_stream_info) Removed.
2461         (struct memory_sink_info) Removed.
2462         (struct memory_source_info) Removed.
2463         (write_active_file_to_disk) Removed.
2464         (destroy_storage_stream_info) New function.
2465         (global var null_sink_class) New var.
2466         (global var storage_sink_class) New var.
2467         (global var storage_source_class) New var.
2468         (open_storage_file) New function.
2469         (storage_sink_destroy) New function.
2470         (storage_sink_make_source) New function.
2471         (storage_sink_open) New function.
2472         (storage_sink_write) New function.
2473         (storage_source_count) New function.
2474         (storage_source_destroy) New function.
2475         (storage_source_get_cases) New function.
2476         (storage_source_on_disk) New function.
2477         (storage_source_read) New function.
2478         (storage_source_set_cases) New function.
2479         (storage_source_to_disk) New function.
2480         (storage_to_disk) New function.
2481         (struct storage_stream_info) New structure.
2482         (write_storage_file) New function.
2483         (procedure_write_case) Removed.
2484         (create_case_source) Add `struct dictionary *' parameter, all
2485         references updated.
2486         (create_case_sink) Ditto.
2487         (free_case_sink) New function.
2488         (struct split_aux_data) New structure.
2489         (procedure_with_splits) New function implementing what procedure()
2490         used to.
2491         (SPLIT_FILE_proc_func) Removed.
2492         (procedure_with_splits_callback) New function.
2493         (equal_splits) New function.
2494         
2495         * aggregate.c: Pass around a struct instead of using statics.
2496         (static var outfile) Remove.
2497         (enum type) Give it tag `missing_treatment'.
2498         (static var missing) Remove.
2499         (static var sort) Remove.
2500         (static var agr_first) Remove.
2501         (static var agr_next) Remove.
2502         (static var case_count) Remove.
2503         (static var prev_case) Remove.
2504         (static var buf64_1xx) Remove.
2505         (static var buf_1xx) Remove.
2506         (struct agr_proc) New structure incorporating the above.
2507         (cmd_aggregate) Use new struct.  Clean up error handling using
2508         agr_destroy().  Completely rewrite actual implementation of
2509         aggregation.
2510         (create_sysfile) Add struct agr_proc * parameter, modify
2511         accordingly.
2512         (parse_aggregate_functions) Ditto.
2513         (free_aggregate_functions) Ditto.  Rename agr_destroy().
2514         (aggregate_single_case) Add struct agr_proc * parameter, modify
2515         accordingly.
2516         (accumulate_aggregate_info) Ditto.
2517         (dump_aggregate_info) Ditto.
2518         (initialize_aggregate_info) Ditto.
2519         (agr_00x_trns_proc) Removed.
2520         (agr_00x_end_func) Removed.
2521         (agr_10x_trns_proc) Removed.
2522         (agr_10x_trns_free) Removed.
2523         (agr_10x_end_func) Removed.
2524         (agr_11x_read) Removed.
2525         (agr_11x_finish) Removed.
2526         [DEBUGGING] (debug_print) Removed.
2527         (write_case_to_sfm) Add struct agr_proc * parameter, modify
2528         accordingly.
2529         (agr_to_active_file) New function.
2530         (presorted_agr_to_sysfile) New function.
2531         (sort_agr_to_sysfile) New function.
2532
2533         * autorecode.c: (cmd_autorecode) Use procedure_with_splits().
2534
2535         * crosstabs.q: (internal_cmd_crosstabs) Ditto.
2536
2537         * descript.q: (cmd_descriptives) Ditto.
2538
2539         * dfm.c: (cmd_begin_data) Check for storage_source_class.  Adapt
2540         to new procedure() interface.
2541
2542         * command.c: (cmd_execute) Adapt to new procedure() interface.
2543
2544         * dictionary.c: (dict_compact_values) Also delete scratch
2545         variables.
2546         (dict_get_compacted_value_cnt) New function.
2547         (dict_get_compacted_idx_to_fv) New function.
2548
2549         * flip.c: (cmd_flip) Warn about and cancel TEMPORARY.
2550         (cmd_flip) Adapt to new procedure() interface.
2551         (flip_sink_write) Use sink->idx_to_fv.
2552
2553         * frequencies.q: (internal_cmd_frequencies) Use
2554         procedure_with_splits().
2555
2556         * get.c: (cmd_save_internal) Adapt to new procedure() interface.
2557         (static var mtf_sink) New static var.
2558         (static var mtf_case) New static var.
2559         (cmd_match_files) Warn about and cancel TEMPORARY.  Redo the way
2560         we actually implement the matching.
2561         (mtf_delete_file_in_place) Use mtf_case.
2562         (mtf_processing) Use mtf_case and mtf_sink.
2563         (cmd_export) Adapt to new procedure() interface.
2564
2565         * levene.c: (levene) Use procedure_with_splits().
2566
2567         * list.q: (cmd_list) Use procedure_with_splits().
2568
2569         * matrix-data.c: (read_matrices_without_rowtype) Adapt to new
2570         procedure() interface.
2571         (read_matrices_with_rowtype) Ditto.
2572
2573         * modify-vars.c; (cmd_modify_vars) Warn about and cancel
2574         TEMPORARY.  Adapt to new procedure() interface.
2575
2576         * rename-vars.c: Warn about and cancel TEMPORARY.
2577
2578         * sort.c: (cmd_sort_cases) Warn about TEMPORARY.
2579         (sort_cases) Use dict_get_compacted_value_cnt() instead of
2580         compaction_nval.  Adapt to new procedure() interface.  Use
2581         storage_source_to_disk().
2582         (do_internal_sort) Don't try to dump the cases to memory.
2583         (compare_case_lists) Pass null idx_to_fv.
2584         (struct initial_run_state) Add `idx_to_fv' member.  Remove
2585         `case_size' member.
2586         (write_initial_runs) Don't initialize irs->case_size.  Adapt to
2587         new procedure() interface.  Reset irs->idx_to_fv after calling
2588         procedure().
2589         (sort_sink_write) Set irs->idx_to_fv.  Use case_size from struct
2590         sort_cases_pgm.  Pass irs, not struct sort_cases_pgm to
2591         push_heap().
2592         (destroy_initial_run_state) Don't dereference irs after freeing
2593         it.
2594         (allocate_cases) Don't calculate case_size locally.
2595         (compare_record) Add idx_to_fv parameter.
2596         (compare_record_run) Change parameter from struct sort_cases_pgm *
2597         to struct initial_run_state *.  Pass irs->idx_to_fv to
2598         compare_record().
2599         (compare_record_run) Third parameter now a struct
2600         initial_run_state *.
2601         (output_record) No need for out_case anymore.  Pass irs, not
2602         struct sort_cases_pgm to pop_heap().  Use case_size from struct
2603         sort_cases_pgm.
2604         (merge) Use case_size from struct sort_cases_pgm.
2605         (merge_once) Use case_size from struct sort_cases_pgm.
2606         Pass null pointer to compare_record() as idx_to_fv.
2607         (global var sort_sink_class) Make static.
2608
2609         * t-test.q: (cmd_t_test) Use procedure_with_splits().
2610
2611         * temporary.c: Remove debugging crap.
2612
2613 Sat Mar 13 14:19:52 WST 2004 John Darrington <john@darrington.wattle.id.au>
2614
2615         * t-test.q, levene.c: Fixed up the handling of MISSING values
2616         int the T-TEST
2617
2618 Fri Mar 12 16:23:35 WST 2004 John Darrington <john@darrington.wattle.id.au>
2619
2620         * t-test.q, levene.c: Added support for T-TEST /GROUP where only 
2621         one value is given.
2622
2623 Wed Mar 10 23:25:13 2004  Ben Pfaff  <blp@gnu.org>
2624
2625         Change explicit variable name checks into use of
2626         dict_class_from_id().
2627
2628         * dictionary.c: (dict_create_var)  Change explicit variable name
2629         check into use of dict_class_from_id().
2630
2631         * get.c: (trim_dictionary) Ditto.
2632
2633         * sel-if.c: (cmd_filter) Ditto.
2634
2635         * sysfile-info.c: (cmd_display) Ditto.
2636
2637         * vars-prs.c: (parse_DATA_LIST_vars) Ditto.
2638
2639         * vfm.c: (arrange_compaction) Ditto.
2640
2641         * weight.c: (cmd_weight) Ditto.
2642
2643 Wed Mar 10 21:16:34 2004  Ben Pfaff  <blp@gnu.org>
2644
2645         * temporary.c: (cmd_temporary) When TEMPORARY was the first
2646         transformation following the input program, if any, for some
2647         reason we special-cased f_trns.  That's just wrong.  It should
2648         always be set to n_trns.
2649
2650 Tue Mar  9 23:44:40 2004  Ben Pfaff  <blp@gnu.org>
2651
2652         * format.c: (parse_format_specifier_name) Fix brown-bag bug
2653         introduced in last check-in.
2654
2655 Tue Mar  9 23:10:41 2004  Ben Pfaff  <blp@gnu.org>
2656
2657         * format.c: (global array translate_fmt[]) Removed.
2658         (translate_fmt) New function as replacement.
2659         (parse_format_specifier_name) Rewrite.
2660
2661         * pfm-read.c: (convert_format) Use translate_fmt() instead of
2662         translate_fmt[].
2663
2664         * sfm-read.c: (parse_format_spec) Ditto.
2665
2666         * postscript.c: (text) Fix handling of fonts with missing
2667         ligatures.
2668
2669         * sort.c: (struct external_sort) Add temp_name member.
2670         (destroy_external_sort) Free temp_dir, temp_name members.
2671         (init_external_sort) Allocate temp_name.
2672         (get_temp_file_name) Change prototype.
2673         (open_temp_file) Deal with change to get_temp_file_name().
2674         (close_temp_file) Ditto.
2675         (remove_temp_file) Ditto.
2676         (write_temp_file) Ditto.
2677         (read_temp_file) Ditto.
2678         (sort_sink_destroy) Removed.
2679         (sort_sink_class) Change destroy member to null.
2680
2681 Tue Mar  9 22:36:34 2004  Ben Pfaff  <blp@gnu.org>
2682
2683         Eliminate temp_case.
2684
2685         * aggregate.c: (cmd_aggregate) No need to save/restore temp_case
2686         anymore.  Use agr_11x_finish().
2687         (aggregate_single_case) Make first param const.
2688         (accumulate_aggregate_info) Ditto.
2689         (agr_00x_end_func) Use compaction_case, not temp_case.
2690         (agr_11x_func) Break into agr_11x_read(), agr_11x_finish().
2691
2692         * data-list.c: (struct data_list_pgm) Add `case_size' member.
2693         (cmd_data_list) Initialize case_size.
2694         (read_from_data_list_fixed) Add struct ccase * param, use instead
2695         of temp_case.
2696         (read_from_data_list_free) Ditto.
2697         (read_from_data_list_list) Ditto.
2698         (read_one_case) Rename data_list_trns_proc(), all references
2699         updated.  Add argument in calling above functions.  Use c
2700         argument instead of temp_case.
2701         (destroy_dls) Rename data_list_trns_free(), all references
2702         updated.
2703
2704         * expr-evl.c: (expr_evaluate) Make second parameter const.
2705
2706         * file-type.c: (struct file_type_pgm) Add `case_size' member.
2707         (cmd_end_file_type) Initialize `case_size'.
2708         (file_type_source_read) Add struct ccase * parameter.  Use instead
2709         of temp_case.
2710
2711         * flip.c: Rewritten.
2712
2713         * get.c: (struct get_pgm) New structure to keep track of
2714         case_size.
2715         (cmd_get) Initialize case_size.
2716         (cmd_import) Ditto.
2717         (get_source) Deal with struct get_pgm.
2718         (get_source_read) Add struct ccase * parameter, use instead of
2719         temp_case.
2720         (import_source_read) Ditto.
2721
2722         * get.c: Use a null pointer instead of temp_case to represent the
2723         "current case" in a struct mtf_file's input member.
2724         (mtf_processing_finish) Pass null to mtf_processing(), not
2725         temp_case.
2726         (mtf_read_nonactive_records) Don't set iter->input to temp_case.
2727         (mtf_compare_BY_values) Add extra arg, use instead of null input
2728         members.
2729         (mtf_processing) Use c parameter instead of temp_case.  Pass
2730         compaction_case to process_active_file_output_case().
2731         
2732         * glob.c: (global variable temp_case) Removed.
2733
2734         * inpt-pgm.c: (struct input_program_pgm) Add `case_size' member.
2735         (cmd_input_program) Initialize case_size.  Set
2736         vfm_source->value_cnt.
2737         (init_case) Add struct ccase * parameter, use instead of
2738         temp_case.
2739         (clear_case) Ditto.
2740         (input_program_source_read) Ditto.
2741
2742         * matrix-data.c: (matrix_data_read_without_rowtype) Ditto.
2743         (dump_cell_content) Ditto.
2744         (nr_output_data) Ditto.
2745         (read_matrices_without_rowtype) Ditto.
2746         (matrix_data_read_with_rowtype) Ditto.
2747         (wr_read_splits) Ditto.
2748         (wr_output_data) Ditto.
2749
2750         * sort.h: (struct sort_cases_pgm) New member `case_size'.
2751         
2752         * sort.c: (sort_cases) Initialize scp->case_size.
2753         (struct external_sort) Remove `case_size' member.
2754         (write_initial_runs) Only call vfm_sink->class_destroy if
2755         non-null.
2756         (struct sort_source_aux) New structure.
2757         (sort_source_read_helper) New function.
2758         (sort_source_read) Use sort_source_read_helper().
2759         (read_sort_output) Change interface to be more reasonable.
2760         (read_internal_sort_output) Ditto.
2761         (read_external_sort_output) Ditto.
2762
2763         * vars-prs.c: (dict_class_to_name) Pass return value through
2764         gettext.
2765
2766         * vfm.c: (struct procedure_aux_data) Add `trns_case' member.
2767         (procedure) Initialize trns_case.
2768         (procedure) Pass trns_case to vfm_source->class->read().
2769         Free trns_case.
2770         (process_active_file) Start using struct procedure_aux_data.
2771         (process_active_file_write_case) Pass trns_case to
2772         transformations, lag_case(), clear_case().
2773         (process_active_file_output_case) Add struct ccase * parameter.
2774         (create_trns_case) New function.
2775         (make_temp_case) Removed.
2776         (vector_initialization) Removed.
2777         (close_active_file) Only call make_source if non-null, otherwise
2778         set vfm_source to null pointer.  Don't free temp_case.
2779         (disk_source_read) Add struct ccase * parameter, use instead of
2780         temp_case.
2781         (memory_source_read) Ditto.
2782         (lag_case) Add const struct ccase * member.
2783         (procedure_write_case) Use trns_case instead of temp_case.
2784         (clear_case) Add struct ccase * member, use instead of temp_case.
2785         (exclude_this_case) Ditto.
2786         (create_case_source) Add struct dictionary * parameter, use to
2787         initialize source->value_cnt.
2788
2789         * vfm.h: (struct case_source) Add `value_cnt' member.
2790         (struct case_source_class) Add struct ccase * parameter to `read'
2791         member function pointer.
2792         (struct case_sink_class) Make struct ccase * parameter const in
2793         `write' member function pointer.
2794         
2795 Wed Mar  3 20:44:37 2004  Ben Pfaff  <blp@gnu.org>
2796
2797         Fix a lot of "possibly uninitialized variable" warnings.  Some of
2798         them are even real bugs.  A few of them make me wonder how the
2799         code ever worked.
2800
2801         * aggregate.c: (parse_aggregate_functions) Initialize `function.
2802
2803         * ascii.c: (output_lines) Add default case to switch.
2804
2805         * crosstabs.q: Remove static variable `expected' and all
2806         references to it.
2807         (display_crosstabulation) Always calculate expected value.
2808         (calc_chisq) Ditto.
2809         (output_pivot_table) Initialize `cmp'.
2810         (display_crosstabulation) New variable `last_row', which is
2811         initialized.
2812
2813         * data-in.c: (parse_numeric) Always initialize sign.  How did this
2814         work at all?!
2815
2816         * data-list.c: (repeating_data_trns_proc) Always initialize code.
2817         Always set info.ofs.  (How did this work?!)
2818
2819         * expr-opt.c: (optimize_tree) Always initialize `m'.
2820         (evaluate_tree) Always initialize `c'.  (How did this work?)
2821
2822         * frequencies.q: (frq_custom_variables) Always initialize min,
2823         max.
2824         (frq_custom_grouped) Always initialize `dl'.
2825
2826         * groff-font.c: (groff_read_font) Always initialize char_set.
2827
2828         * matrix-data.c: (nr_output_data) Initialize `split'.
2829         (wr_read_splits) Remove shadowing split_cnt declaration.
2830         (wr_output_data) Initialize `split'.
2831
2832         * output.c: (tokener) Skip add character on syntax error.
2833
2834         * pool.c: (pool_strndup) Always set `copy'.  (How did this work?!)
2835
2836         * postscript.c: (read_ps_encodings) Use line.string instead of
2837         uninitialized `bp'.
2838         (write_text) Add default case to switch.
2839         (text) Always initialize multiple variables.  Fix bug with
2840         ligatures.
2841
2842         * print.c: (fixed_parse_fortran) Initialize head.
2843         (alloc_line) Add default case to switch.
2844
2845         * recode.c: (parse_dest_spec) Handle case where nothing matches.
2846         (recode_trns_proc) Move variable declaration inward.  Add default
2847         case to switch.
2848
2849         * sfm-read.c: (read_header) Initialize skip_amt.
2850
2851         * sysfile-info.c: (display_variables) Always initialize pc.
2852
2853         * vars-prs.c: Initialized `included'.
2854
2855 Wed Mar  3 09:30:09 2004  Ben Pfaff  <blp@gnu.org>
2856
2857         * main.c: (main) sigaction()'s sa_flags member was uninitialized.
2858         Just use signal() instead.
2859
2860 Wed Mar  3 09:26:30 2004  Ben Pfaff  <blp@gnu.org>
2861
2862         Get rid of vfm_sink_info and vfm_source_info.
2863         
2864         * aggregate.c: (agr_00x_end_func) Don't increment
2865         sfm_sink_info.ncases.
2866
2867         * sort.c: (do_internal_sort) Get case count from
2868         vfm_source->class->count().
2869         (struct external_sort) Add `case_size' member.
2870         (do_external_sort) Initialize case_size.
2871         (struct initial_run_state) Add `case_size' member.
2872         (write_initial_runs) Initialize case_size.
2873         (sort_sink_write) Use case_size.
2874         (read_external_sort_output) Use case_size.  Get case_cnt from
2875         initial_runs.
2876
2877         * vfm.c: (struct write_case_data) Add underscores to existing arg
2878         names, all references updated.  Renamed `aux' as `func_aux', all
2879         references updated.  Added new `aux' member.
2880         (global var vfm_source_info) Removed.
2881         (global var vfm_sink_info) Removed.
2882         (struct procedure_aux_data) New.
2883         (struct split_aux_data) New.
2884         (procedure) Use `aux' fields for procedure_aux_data,
2885         split_aux_data.
2886         (process_active_file_write_case) Pass case_count + 1 to
2887         transformation procedures, exclude_this_case().
2888         (process_active_file_output_case) Don't increment
2889         vfm_sink_info.ncases.
2890         (prepare_for_writing) Don't initialize vfm_sink_info.  Don't try
2891         to send data to disk early.
2892         (make_temp_case) Don't use vfm_sink_info.case_size.
2893         (close_active_file) Don't initialize vfm_source_info.
2894         (struct disk_stream_info) New, to allow for case_cnt and case_size fields.
2895         (disk_sink_create) Initialize and/or update disk_stream_info.
2896         (disk_sink_write) Ditto.
2897         (disk_sink_destroy) Ditto.
2898         (disk_sink_make_source) Ditto.
2899         (disk_source_read) Ditto.
2900         (disk_source_destroy) Ditto.
2901         (global var disk_source_class) Add disk_source_count().
2902         (disk_source_count) New function.
2903         (struct memory_sink_info) Add `case_cnt', `case_size' members.
2904         (struct memory_source_info) Ditto.
2905         (memory_sink_create) Deal with case_cnt, case_size.
2906         (memory_sink_write) Ditto.
2907         (memory_sink_make_source) Ditto.
2908         (memory_source_read) Ditto.
2909         (memory_source_count) New function.
2910         (memory_source_class) Add memory_source_count().
2911         (procedure_write_case) Don't use vfm_sink_info.ncases.  Do use
2912         proc_aux->cases_written, and pass it to transformation procedures
2913         and exclude_this_case ().
2914         (exclude_this_case) Add case_num parameter.  Pass it to
2915         expr_evaluate().
2916         (SPLIT_FILE_procfunc) Use split_aux->prev_case instead of static
2917         variable.
2918
2919         * vfm.h: (struct case_source_class) Add `count' member.
2920
2921         * vfmP.h: (struct stream_info) Removed.
2922         (global variable vfm_source_info) Removed.
2923         (global variable vfm_sink_info) Removed.
2924         
2925 Tue Mar  2 23:38:17 2004  Ben Pfaff  <blp@gnu.org>
2926
2927         * var.h: (typedef trns_proc_func) New typedef.
2928         (trns_free_func) New typedef.
2929         (struct trns_header) Change `proc' to type trns_proc_func, `free'
2930         to type trns_free_func.  This only changes the actual type of
2931         trns_proc_func, adding a `case_num' parameter.  Updated all
2932         implementations to use the typedefs instead.
2933
2934         * compute.c: (compute_num) Pass case_num to expr_evaluate().
2935         (compute_num_vec) Ditto.
2936         (compute_str) Ditto.
2937         (compute_str_vec) Ditto.
2938
2939         * do-if.c: (do_if_trns_proc) Ditto.
2940
2941         * expr-evl.c: (expr_evaluate) Add new case_num parameter, use for
2942         OP_CASENUM.
2943
2944         * inpt-pgm.c: (input_program_source_read) Maintain case count,
2945         pass to transformation functions.
2946         (reread_trns_proc) Pass case_num arg to expr_evaluate().
2947
2948         * loop.c: (loop_1_trns_proc) Ditto.
2949         (loop_2_trns_proc) Ditto.
2950         (loop_3_trns_proc) Ditto.
2951
2952         * print.c: (print_space_trns_proc) Ditto.
2953
2954         * sel-if.c: (select_if_proc) Ditto.
2955
2956 Tue Mar  2 11:36:52 2004  Ben Pfaff  <blp@gnu.org>
2957
2958         * frequencies.q: (cleanup_freq_tab) Avoid memory leak by
2959         destroying hash table.
2960
2961         * glob.c: (read_active_file) Variable not referenced, removed.
2962         (cancel_input_pgm) Ditto.
2963
2964         * levene.c: Add #include <stdlib.h> needed to call free().
2965
2966         * aggregate.c: (parse_aggregate_functions) Make `function'
2967         variable const.
2968
2969 Tue Mar  2 11:30:56 2004  Ben Pfaff  <blp@gnu.org>
2970
2971         Start working to eliminate VFM dependence on static variables.
2972
2973         * command.c: (cmd_parse) Use case_source_is_class().
2974
2975         * data-list.c: Rewrite to eliminate use of static variables.
2976
2977         * dfm.c: (cmd_begin_data) Use case_source_is_class().
2978
2979         * file-handle.q: (fh_handle_name) Make parameter const.
2980
2981         * file-type.c: Rewrite to eliminate use of static variables.
2982
2983         * flip.c: Rewrite to eliminate use of static variables.
2984
2985         * format.c: (get_format_var_width) New function.
2986
2987         * get.c: Eliminate use of static variables.
2988
2989         * inpt-pgm.c: Eliminate use of static variables.
2990
2991         * matrix-data.c: Eliminate use of static variables.
2992
2993         * set.q: (set_max_workspace) New variable.
2994         (cmd_set) Use SET WORKSPACE to modify set_max_workspace.
2995
2996         * var.h: (struct case_list) Move here from vfmP.h.
2997
2998         * vars-atr.c: (discard_variables) Handle new vfm_source type.
2999
3000         * vfm.c: (vfm_source) Change type from struct case_stream to
3001         struct case_source.
3002         (vfm_sink) Change type from struct case_stream to struct
3003         case_sink.
3004         (static var paging) Rename workspace_overflow, all references
3005         updated.
3006         (procedure) Use new class structures.
3007         (process_active_file) Ditto.
3008         (process_active_file_write_case) Ditto.
3009         (prepare_for_writing) Use set_max_workspace.  Use new class
3010         structures.
3011         (close_active_file) Use new class structures.  Free old sink.
3012         (global var disk_source_file) Removed.
3013         (global var disk_sink_file) Removed.
3014         (disk_stream_init) Removed.
3015         (disk_stream_read) Removed.
3016         (disk_stream_write) Removed.
3017         (disk_stream_mode) Removed.
3018         (disk_stream_destroy_source) Removed.
3019         (disk_stream_destroy_sink) Removed.
3020         (global var vfm_disk_stream) Removed.
3021         (disk_sink_create) New function.
3022         (disk_sink_write) New function.
3023         (disk_sink_destroy) New function.
3024         (disk_sink_make_source) New function.
3025         (disk_sink_class) New static var.
3026         (disk_source_read) New function.
3027         (disk_source_destroy) New function.
3028         (global var vfm_source_class) New var.
3029         (global var memory_source_cases) Removed.
3030         (global var memory_sink_cases) Removed.
3031         (global var memory_sink_max_cases) Removed.
3032         (struct memory_sink_info) New struct.
3033         (memory_stream_init) Removed.
3034         (memory_stream_read) Removed.
3035         (memory_stream_write) Removed.
3036         (memory_stream_mode) Removed.
3037         (memory_stream_destroy_source) Removed.
3038         (memory_stream_destroy_sink) Removed.
3039         (global var vfm_memory_stream) Removed.
3040         (page_to_disk) Renamed write_active_file_to_disk().
3041         (memory_sink_create) New function.
3042         (memory_sink_write) New function.
3043         (memory_sink_destroy) New function.
3044         (memory_sink_make_source) New function.
3045         (memory_sink_class) New static var.
3046         (memory_source_read) New function.
3047         (memory_source_destroy) New function.
3048         (memory_source_get_cases) New function.
3049         (memory_source_set_cases) New function.
3050         (global var vfm_source_class) New var.
3051         (procedure_write_case) Use new class structures.
3052         (create_case_source) New function.
3053         (case_source_is_complex) New function.
3054         (case_source_is_class) New function.
3055         (create_case_sink) New function.
3056
3057         * vfm.h: (global variable reinit_sysmis) Not used, removed.
3058         (global variable reinit_blanks) Not used, removed.
3059         (global variable init_zero) Not used, removed.
3060         (global variable init_blanks) Not used, removed.
3061         (struct case_source) New struct.
3062         (struct case_source_class) New struct.
3063         (struct case_sink) New struct.
3064         (struct case_sink_class) New struct.
3065         (struct case_stream) Removed.
3066
3067         * vfmP.h: (struct case_list) Moved to var.h.
3068
3069 Tue Mar  2 11:28:30 2004  Ben Pfaff  <blp@gnu.org>
3070
3071         * algorithm.c: (count_equal) New function.
3072         (count_if) New function.
3073         (unique) Add assertions.
3074         (partition) Add assertions.
3075         (is_partitioned) New function.
3076         (copy_if) Add assertions.
3077         (remove_equal) Add assertions.
3078         (lexicographical_compare) Rename lexicographical_compare_3way.
3079         (sort) Add assertions.  Rephrase some code.
3080         (is_sorted) New function.
3081
3082 Sun Feb 29 23:24:57 2004  Ben Pfaff  <blp@gnu.org>
3083
3084         Rewrite SORT CASES.
3085
3086         * sort.c: Completely rewrite.
3087
3088         * sort.h: Expose interface via struct sort_cases_pgm, not via
3089         global variables.
3090
3091         * aggregate.c: (sort) New static var.
3092         (cmd_aggregate) Use sort.
3093         (create_sysfile) Ditto.
3094         (aggregate_single_case) Ditto.
3095         (dump_aggregate_info) Ditto.
3096         (agr_00x_end_func) Ditto.
3097         (debug_print) Ditto.
3098
3099         * var.h: (enum SRT_ASCEND) Removed.
3100         (enum SRT_DESCEND) Removed.
3101         (struct sort_cases_proc) Removed.
3102         (struct variable) Remove p.srt member.
3103
3104 Sun Feb 29 23:22:45 2004  Ben Pfaff  <blp@gnu.org>
3105
3106         Get rid of the old, crappy heap structure and replace it by a new,
3107         shiny, C++ STL-like heap structure.
3108         
3109         * Makefile.am: (pspp_SOURCES) Remove heap.c, heap.h.
3110
3111         * algorithm.c: (push_heap) New function.
3112         (heapify) Ditto.
3113         (pop_heap) Ditto.
3114         (make_heap) Ditto.
3115         (sort_heap) Ditto.
3116         (is_heap) Ditto.
3117         
3118         * heap.c: Removed.
3119
3120         * heap.h: Removed.
3121
3122 Sun Feb 29 23:21:53 2004  Ben Pfaff  <blp@gnu.org>
3123
3124         Increase warning level.
3125         
3126         * Makefile.am: (AM_CFLAGS) Remove -Wnouninitialized.
3127
3128 Sat Feb 21 17:38:58 WST 2004 John Darrington <john@darrington.wattle.id.au>
3129
3130         * main.c: Added a signal handler for SIGSEGV requesting a bug report.
3131          
3132 Fri Feb 20 23:22:14 2004  Ben Pfaff  <blp@gnu.org>
3133
3134         * dictionary.c: (dict_create_var) Fix root cause of bug worked
3135         around by previous change log entry.
3136         
3137         * compute.c: (lvalue_finalize) Remove workaround from previous
3138         change log entry.
3139
3140 Fri Feb 20 14:37:41 WAST 2004 John Darrington <john@darrington.wattle.id.au>
3141
3142         * compute.c: Fixed a bug where the Format was not getting set for 
3143           computed variables (thus causing a crash when SAVEing).
3144
3145         * Added a test to stop this bug ever coming back
3146
3147 Wed Feb 18 22:21:35 2004  Ben Pfaff  <blp@gnu.org>
3148
3149         Got rid of approx.h.  In general, replaced all references to
3150         approx_eq() by ==, approx_lt() by <, etc.  Other types of changes
3151         noted below.
3152
3153         * Makefile.am: (pspp_SOURCES) Removed approx.h.
3154
3155         * data-out.c: (try_F) Replaced test for approx_eq(number, 0.0) by
3156         test for mag < EPSILON.
3157
3158         * misc.h: Add definition of EPSILON.
3159
3160 Wed Feb 18 21:32:44 2004  Ben Pfaff  <blp@gnu.org>
3161
3162         * vfm.c: (procedure) Add check to prevent recursive call.
3163
3164 Wed Feb 18 21:48:54 WST 2004 John Darrington <john@darrington.wattle.id.au>
3165
3166         * Moved the declarations relating to values to their own header file
3167           (val.h)
3168
3169         * Added levene.c and levene.h
3170
3171         * vars-atr.c: Changed the signature of compare_values to 
3172         take const * arguments.
3173                 
3174         * t-test.q: Changed the structure of struct t_test_proc 
3175        variables now contain their own group statistics information.
3176        Eventually, t_test_proc might get renamed, because it'd be 
3177        applicable to other commands too.
3178
3179 Mon Feb 16 23:15:51 2004  Ben Pfaff  <blp@gnu.org>
3180
3181         * data-out.c: Clean up.  Changed interface of convert_*() to take
3182         either a `double' or a `const char *' instead of a `const union
3183         value *'.  Update all implementations of those interfaces.
3184         (data_out) Use switch statements instead of a table.
3185         (convert_AHEX) Rewrite.
3186
3187         * format.h: Update comment.
3188
3189 Mon Feb 16 22:14:36 2004  Ben Pfaff  <blp@gnu.org>
3190
3191         * q2c.c: (dump_header) Add an Emacs header line to output files
3192         that makes generated .c files read-only by default, to make it
3193         difficult to accidentally change generated files.
3194
3195 Mon Feb 16 22:12:07 2004  Ben Pfaff  <blp@gnu.org>
3196
3197         * frequencies.q: (compare_freq_numeric_a) Compare by frequency,
3198         not bogus a->v.c <=> b->v.c pointer compare.
3199         (compare_freq_alpha_a) Ditto.
3200         (compare_freq_numeric_d) Ditto.
3201         (compare_freq_alpha_d) Ditto.
3202         
3203 Mon Feb 16 22:00:53 2004  Ben Pfaff  <blp@gnu.org>
3204
3205         Changed data_out() to store string data directly into a `union
3206         value''s s member, not indirectly into c.
3207
3208         * crosstabs.q: (output_pivot_table) Use format_short() instead of
3209         data_out().
3210         (table_value_missing) Ditto.
3211         (float_M_suffix) Ditto.
3212         (format_short) New function.
3213
3214         * data-in.h: (data_in_finite_line) Remove inline definition.
3215
3216         * data-list.c: (destroy_dls_var_spec) New function.
3217         (destroy_dls) Rewrite in terms of destroy_dls_var_spec().
3218         (data_list_source_destroy_source) Avoid cast.
3219         (struct repeating_data_trns) New field `id_value'.  Update
3220         comments.
3221         (cmd_repeating_data) Initialize id_value.  Use new
3222         repeating_data_trns_free() for freeing REPEATING DATA
3223         transformations.
3224         (rpd_parse_record) Rewrite support for record ID to be less bogus.
3225         (repeating_data_trns_free) New function.
3226
3227         * data-out.c: (data_out) Change return type to `void' by replacing
3228         error returns by writing a message into the output buffer.
3229         (convert_A) Read from v->s instead of v->c.
3230         (convert_AHEX) Ditto.
3231
3232         * expr-evl.c: Update comment.
3233         (expr_evaluate) Add assertion in OP_STRING case.
3234
3235         * format.h: (macro MAX_FORMATTED_LEN) New macro.
3236
3237         * list.q: (list_cases) Update for new data_out() semantics.
3238
3239         * print.c: (print_trns_proc) Ditto.
3240
3241         * tab.c: (tab_value) Ditto.
3242         (tab_float) Avoid stupid cast.
3243
3244         * var.h: Update comments.
3245         (macro MAX_STRING) New macro.
3246         (macro MAX_ELEMS_PER_VALUE) New macro.
3247
3248         * vars-atr.c: (compare_values) New function.
3249
3250         * vfm.c: (dump_splits) Update for new data_out() semantics.
3251
3252 Mon Feb 16 21:45:47 2004  Ben Pfaff  <blp@gnu.org>
3253
3254         * crosstabs.q: (struct table_entry) Rename v[] to values[].  All
3255         references updated.
3256         (struct crosstab) Rename v[] to vars[].  All references updated.
3257         (hash_table_entry) Replace the hash algorithm and fix a bug at the
3258         same time, which caused the hash value to depend only on a single
3259         value, not all of the variables' values.
3260         
3261 Mon Feb 16 12:49:53 2004  Ben Pfaff  <blp@gnu.org>
3262
3263         Clean up struct dictionary's value_cnt usage.
3264
3265         * dictionary.c: Add a function comment to each function.
3266         (struct dictionary) Rename value_cnt to next_value_idx, which more
3267         accurately reflects its meaning.  All references updated.
3268         (dict_rename_vars) Add assertion.
3269         (dict_get_value_cnt) Rename dict_get_next_value_idx().  All
3270         references updated.
3271         (dict_get_case_size) New function.
3272
3273         * aggregate.c: (create_sysfile) Use dict_get_case_size().
3274
3275         * get.c: (mtf_read_nonactive_records) Ditto.
3276
3277         * sort.c: (allocate_cases) Ditto.
3278         (write_initial_runs) Ditto.
3279         (merge) Ditto.
3280         (merge_once) Ditto.
3281
3282         * vfm.c: (prepare_for_writing) Ditto.
3283         (setup_lag) Ditto.
3284         (lag_case) Ditto.
3285
3286 Mon Feb 16 00:17:55 2004  Ben Pfaff  <blp@gnu.org>
3287
3288         Make vfm.c slightly less grotesque.
3289
3290         * vfm.c: (filter_var) Removed.
3291         (filter_index) Removed.
3292         (FILTERED macro) Removed.
3293         (exclude_this_case) New function.
3294         (process_active_file_write_case) Use exclude_this_case() instead
3295         of FILTERED and inline tests.
3296         (procedure_write_case) Ditto.
3297         (setup_filter) Removed.
3298         (open_active_file) Don't call setup_filter().
3299         (close_active_file) Call dict_get_filter() instead of checking
3300         filter_var.
3301
3302 Mon Feb 16 00:01:53 2004  Ben Pfaff  <blp@gnu.org>
3303
3304         * var.h: (struct variable) Update comments.
3305
3306 Sun Feb 15 23:14:59 2004  Ben Pfaff  <blp@gnu.org>
3307
3308         New functions dict_create_var_assert(), dict_lookup_var_assert().
3309         Converted several dict_*_var()/assert pairs into a single
3310         dict_*_var_assert().
3311
3312         * dictionary.c: (dict_create_var_assert) New function.
3313         (dict_lookup_var_assert) New function.
3314
3315 Sun Feb 15 23:06:08 2004  Ben Pfaff  <blp@gnu.org>
3316
3317         Got rid of "struct long_vec", envector(), devector(), etc.  Added
3318         two members `init', `reinit' to struct variable as a substitute.
3319         
3320         * Makefile.am: (pspp_SOURCES) Removed cases.c, cases.h.
3321         
3322         * cases.c: Removed.
3323
3324         * cases.h: Removed.
3325
3326         * aggregate.c: (parse_aggregate_functions) destvar doesn't need
3327         init.
3328
3329         * autorecode.c: (cmd_autorecode) destvars don't need init.
3330
3331         * compute.c: (lvalue_finalize) Set reinit.
3332
3333         * data-list.c: (fixed_parse_compatible) Don't need init usually.
3334         (dump_fmt_list) Ditto.
3335         (parse_free) Ditto.
3336
3337         * descript.q: (run_z_pass) Don't need init for z-scores.
3338
3339         * dictionary.c: (dict_create_var) Initialize `init', `reinit'
3340         members.
3341         (dict_clone_var) Copy `reinit' member, initialize `init' member.
3342
3343         * glob.c: (init_glob) Remove vec_init() calls.
3344
3345         * inpt-pgm.c: (cmd_end_input_program) Use `reinit', not `left'.
3346         
3347         * loop.c: (internal_cmd_loop) Don't need to call envector().
3348
3349         * numeric.c: (cmd_numeric) Ditto.
3350         (cmd_string) Ditto.
3351         (cmd_leave) Ditto.  Set `init', `reinit' members.
3352
3353         * recode.c: (cmd_recode) Don't need to call envector().
3354
3355         * repeat.c: (internal_cmd_do_repeat) Ditto.
3356
3357         * var.h: (struct variable) Remove `left'.  Add `init', `reinit'.
3358         (force_create_variable) Removed prototype.
3359         (force_dup_variable) Ditto.
3360
3361         * vector.c: (cmd_vector) Don't need to call envector().
3362
3363         * vfm.c: (reinit_sysmis) Removed.
3364         (reinit_blanks) Removed.
3365         (init_zero) Removed.
3366         (init_blanks) Removed.
3367         (process_active_file_write_case) No need to deal with vectors.
3368         Call clear_temp_case().
3369         (vector_initialization) Rewrite to use `init', `reinit'.
3370         (close_active_file) No need to call vec_clear().
3371         (procedure_write_case) Call clear_temp_case().
3372         (clear_temp_case) New function.
3373
3374 Sun Feb 15 20:50:36 2004  Ben Pfaff  <blp@gnu.org>
3375
3376         * pfm-write.c: (bufwrite) Get rid of nasty cast that also invoked
3377         undefined behavior.
3378
3379 Thu Feb 12 23:35:15 2004  Ben Pfaff  <blp@gnu.org>
3380
3381         Add auxiliary argument to procedure() interface.  Associated small
3382         clean-ups of vfm interface.
3383         
3384         * Updated every caller of procedure() and process_active_file() to
3385         reflect modified interface.  Simple, ordinary changes not listed
3386         otherwise below.
3387
3388         * Updated every function that implements struct case_stream's
3389         `read' function to take a write_case_func and a write_case_data.
3390         Also updated every caller of write_case() to instead call them
3391         through these arguments.  In some cases this meant that the extra
3392         args had to be threaded through a couple of extra levels.  This
3393         wasn't difficult or interesting so the details won't be given.
3394
3395         * data-list.c: (struct repeating_data_trns) Add members
3396         `write_case', `wc_data' as kluge.
3397         (read_one_set_of_repetitions) Rename repeating_data_trns_proc and
3398         make non-static.
3399         (repeating_data_set_write_case) New function.
3400
3401         * data-list.h: New file to declare repeating_data_trns_proc() and
3402         repeating_data_set_write_case().
3403
3404         * inpt-pgm.c: (input_program_source_read) Call
3405         repeating_data_set_write_case() for all the REPEATING DATA
3406         transformations, so that they know where to send their cases.
3407         It's a big kluge.  Also kluge in END CASE.
3408         (end_case_trns_proc) Never called anymore, but we still need it,
3409         so just assert(0).
3410
3411         * sort.c: (read_sort_output) Update to match struct case_stream
3412         `read' member.
3413
3414         * vfm.c: (struct write_case_data) New structure.
3415         (proc_func) Removed.
3416         (virt_proc_func) Removed.
3417         (begin_func) Removed.
3418         (virt_begin_func) Removed.
3419         (end_func) Removed.
3420         (write_case) Removed.
3421         (procedure) Added an auxiliary parameter to each function pointer
3422         argument's prototype.  Added an auxiliary data parameter.
3423         Rewrote.
3424         (process_active_file) Ditto.
3425         (process_active_file_write_case) Pass aux data along.
3426         (close_active_file) Ditto.
3427         (procedure_write_case) Ditto.
3428         (SPLIT_FILE_procfunc) Ditto.
3429
3430         * vfm.h: (typedef write_case_data) New.
3431         (typedef write_case_func) New.
3432         (struct case_stream) Add parameters to `read' member prototype.
3433         
3434 Thu Feb 12 19:24:53 WST 2004 John Darrington <john@darrington.wattle.id.au>
3435
3436         * t-test.q:  Added calculations for independent samples. (But no Levene
3437         test yet!)
3438
3439         * Makefile.am: Moved q_sources_c into own variable 
3440
3441 Wed Feb 11 23:56:51 2004  Ben Pfaff  <blp@gnu.org>
3442
3443         Miscellaneous cleanups.
3444         
3445         * Change unused to UNUSED in many source files to reflect modified
3446         pref.h.  Change use of __WIN32__, __MSDOS, __DJGPP__,
3447         __CYGWIN32__, __unix__, and unix not to assume that they're
3448         defined to a nonzero value.  Change use of __attribute__ to use
3449         NO_RETURN or PRINTF_FORMAT instead.
3450         
3451         * alloc.h: Move definitions for local_alloc(), local_free() here
3452         from ../pref.h.orig and simplify.
3453
3454         * expr-evl.c: Instead of working differently based on PAGED_STACK,
3455         use a pool allocator unconditionally.
3456         (CHECK_STRING_SPACE) Removed.
3457         (ALLOC_STRING_SPACE) Removed.
3458         (expr_evaluate) Use e->pool instead of CHECK_STRING_SPACE and
3459         ALLOC_STRING_SPACE.
3460
3461         * expr-opt.c: (dump_expression) Allocate string pool.
3462
3463         * expr-prs.c: (expr_free) Free string pool.
3464
3465         * pool.c: (pool_destroy) This pool must be removed from its
3466         parent's list of gizmos, not from its own.  Use free_all_gizmos().
3467         (pool_clear) New function.
3468         (free_all_gizmos) New function.
3469         (pool_alloc) Use space in empty block after this one if any.
3470         (pool_release) Only empty out blocks, don't actually free() them.
3471
3472         * print.c: Get rid of PAGED_STACK special case by always
3473         dynamically allocating line buffers.
3474         (struct print_trns) Always include the `line' member.
3475         (internal_cmd_print) Always initialize the `line' member.
3476         (alloc_line) Always allocate memory for `line'.
3477         (print_trns_proc) Always initialize buf from `line' member.
3478         (print_trns_free) Always free `line' memory.
3479
3480         * sort.c: (allocate_file_handles) Special-case MS-DOS for mkdir()
3481         call.
3482         
3483 Wed Feb 11 20:33:18 2004  Ben Pfaff  <blp@gnu.org>
3484
3485         * flip.c: Fixed crash from FLIP when a numeric variable is
3486           specified on NEWNAMES and a large value is used, and a couple of
3487           other minor bugs besides.
3488           (struct varname) Make name a 9-character fixed-size array
3489           instead of a 1-character variable size array.
3490           (make_new_var) Allow digits in variable names.
3491           (flip_stream_write) Limit numeric values to 8 characters and
3492           format system missing and very large and small values more
3493           appropriately.
3494
3495 Thu Feb  5 13:19:06 WAST 2004 John Darrington <john@darrington.wattle.id.au>
3496
3497         * command.c: Fixed test on command return status for the correct 
3498           value,  which had been causing a crash under certain invalid input.
3499
3500 Wed Feb  4 15:34:11 WST 2004 John Darrington <john@darrington.wattle.id.au>
3501
3502         * t-test.q: Added calculations for the one sample variant of the T-TEST
3503
3504 Tue Feb  3 20:09:54 2004  Ben Pfaff  <blp@gnu.org>
3505
3506         * tab.c: (render_strip) Fix bug that sometimes caused joined text
3507           in joined cells to be rendered outside box boundaries.
3508
3509 Tue Feb  3 18:56:45 WST 2004 John Darrington <john@darrington.wattle.id.au>
3510
3511         * random.c (rng_create): Fixed seeding so that it gets reseeded after
3512         SET seed=xx has been called.
3513
3514 Mon Jan 19 14:08:09 2004  Ben Pfaff  <blp@gnu.org> 
3515
3516         * random.c (rng_get_double): Fix always-returning-zero bug in my
3517         preferred way, and at the same time make sure rounding doesn't
3518         bite us.
3519
3520 Thu Jan  1 23:16:41 2004  Ben Pfaff  <blp@gnu.org>
3521
3522         * html.c: (change_attributes) Dead code, removed.
3523         (escape_string) Eliminate code to call change_attributes() that
3524         never actually called it.
3525         (output_tab_table) Get rid of dependence on tab_hit
3526         and struct tab_joined_cell's hit member, which are abominations.
3527
3528         * tab.c: (tab_output_text) Don't call
3529         d->class->text_set_font_by_name if it's a null pointer.
3530         (macro UNROLL_LOOP) Eliminate.
3531         (macro UNROLL_3_LOOPS) Eliminate.
3532         (tabi_render) Rewrite not to use the above macros.
3533
3534 Thu Jan  1 23:09:07 2004  Ben Pfaff  <blp@gnu.org>
3535
3536         Start working on a new output driver system, one that doesn't suck
3537         so much, by adding a "device-independent" output driver.  The idea
3538         is to write out only a single output stream, then use separate
3539         processes to translate them into whatever formats we want.  This
3540         is similar to how "groff" works with its various output drivers
3541         (grops, grotty, grodvi, ...).
3542         
3543         * Makefile.am: (pspp_SOURCES) Add devind.c, devind.h.
3544
3545         * list.q: (write_all_headers) Stub out devind class.
3546         (clean_up) Ditto.
3547         (determine_layout) Ditto.
3548         (list_cases) Ditto.
3549
3550         * output.c: (outp_init) Add devind class.
3551
3552         * devind.c: New file.
3553
3554         * devind.h: New file.
3555
3556 Thu Jan  1 23:08:14 2004  Ben Pfaff  <blp@gnu.org>
3557
3558         * frequencies.q: (hash_value_alpha) Fixed up the previous change
3559         to use the proper string length.
3560
3561 Wed Dec 31 16:27:33 WAST 2003 John Darrington <john@darrington.wattle.id.au>
3562
3563         * Fixed bug where FREQ would crash on alpha values
3564
3565 Tue Dec 30 22:42:57 2003  Ben Pfaff  <blp@gnu.org>
3566
3567         * Removed bletcherous alloca() workarounds for AIX from top of
3568         many files.  AIX can use the alternative alloca() implementation
3569         instead.
3570
3571 Tue Dec 30 22:35:16 2003  Ben Pfaff  <blp@gnu.org>
3572
3573         * ascii.c: (ascii_option) Fix implementation of headers option.
3574
3575 Tue Dec 30 22:32:53 2003  Ben Pfaff  <blp@gnu.org>
3576
3577         * ascii.c: Add a "squeeze" option to the ASCII driver to squeeze
3578         multiple blank lines into one.
3579         (struct ascii_driver_ext) Add squeeze_blank_lines option.
3580         (ascii_preopen_driver) Initialize squeeze_blank_lines.
3581         (static var option_tab) Add squeeze entry.
3582         (ascii_option) Set squeeze_blank_lines.
3583         (output_lines) Implement squeezing blank lines.
3584
3585 Wed Dec 31 07:19:46 WST 2003 John Darrington <john@darrington.wattle.id.au>
3586
3587         * Removed redundant code from output.h
3588
3589 Sat Dec 27 22:17:52 2003  Ben Pfaff  <blp@gnu.org>
3590
3591         Dictionary classes: each variable is "ordinary", "system", or
3592         "scratch".
3593
3594         * var.h: (enum dict_class) New enum.
3595
3596         * vars-prs.c: (dict_class_from_id) New function.
3597         (dict_class_to_name) New function.
3598
3599 Sat Dec 27 22:16:06 2003  Ben Pfaff  <blp@gnu.org>
3600
3601         * var.h: (struct freq_tab_set) Removed (not used).
3602
3603 Sat Dec 27 22:15:21 2003  Ben Pfaff  <blp@gnu.org>
3604
3605         * value-labels.c: (val_labs_destroy) vls needs to be freed too.
3606
3607 Sat Dec 27 22:10:49 2003  Ben Pfaff  <blp@gnu.org>
3608
3609         * stats.c: (hypercube) Rename pow4().  All references updated.
3610
3611 Sat Dec 27 22:05:49 2003  Ben Pfaff  <blp@gnu.org>
3612
3613         * rename-vars.c: (cmd_rename_variables) Rewritten.
3614         (compare_name) Removed.
3615
3616 Sat Dec 27 22:03:51 2003  Ben Pfaff  <blp@gnu.org>
3617
3618         var_set feature, and code taking advantage of it.
3619         
3620         * crosstabs.q: (static var var_dict) Removed.
3621         (static var variables) New variable.
3622         (static var variables_cnt) New variable.
3623         (cmd_crosstabs) Free variables instead of var_dict.
3624         (internal_cmd_crosstabs) Initialize and use variables,
3625         variables_cnt instead of var_dict.
3626         (free_var_dict) Removed.
3627         (crs_custom_tables) Use var_set instead of a copied dictionary.
3628         (crs_custom_variables) Set up variables, variables_cnt instead of
3629         var_dict.
3630         [DEBUGGING] (debug_print) Ditto.
3631
3632         * means.q: (mns_custom_tables) Use var_set instead of a copied
3633         dictionary.
3634
3635         * vars-prs.c: (parse_vs_variable) New function.
3636         (parse_dict_variable) Rewritten.
3637         (parse_variable) Rewritten.
3638         (parse_variables) Renamed parse_var_set_vars(), rewritten.
3639         (parse_variables) New function in terms of parse_var_set_vars().
3640         Now requires its first argument to be non-null.  All references
3641         that passed a null pointer updated to pass default_dict instead.
3642         (macro id_dict) Removed.
3643         (parse_DATA_LIST_vars) Add assertions.
3644         (parse_mixed_vars) Ditto.
3645         (struct var_set) New structure.
3646         (var_set_get_cnt) New function.
3647         (var_set_get_var) New function.
3648         (var_set_lookup_var) New function.
3649         (var_set_destroy) New function.
3650         (dict_var_set_get_cnt) New function.
3651         (dict_var_set_get_var) New function.
3652         (dict_var_set_lookup_var) New function.
3653         (dict_var_set_destroy) New function.
3654         (var_set_create_from_dict) New function.
3655         (struct array_var_set) New structure.
3656         (array_var_set_get_cnt) New function.
3657         (array_var_set_get_var) New function.
3658         (array_var_set_lookup_var) New function.
3659         (array_var_set_destroy) New function.
3660         (var_set_create_from_array) New function.
3661
3662         * q2c.c: (dump_parser) Use parse_variables(default_dict, ...)
3663         instead of parse_variables(NULL, ...) in output code.
3664
3665 Sat Dec 27 21:38:53 2003  Ben Pfaff  <blp@gnu.org>
3666
3667         Change inp_init from a 2-bit vector to an ordinary array.
3668         Initialize it all in cmd_end_input_program() instead of in
3669         create_variable().
3670
3671         * inpt-pgm.c: (enum value_init_type) New enum.
3672         (global var inp_init) Change to `enum value_init_type *', make
3673         static.
3674         (inp_init_size) Removed.
3675         (inp_nval) Change to `size_t', make static.
3676         (cmd_input_program) Don't initialize inp_init or inp_init_size.
3677         (cmd_end_input_program) Initialize inp_init, inp_nval.
3678         (init_case) Rewrite.
3679         (clear_case) Rewrite.
3680
3681         * inpt-pgm.h: Removed.
3682
3683 Sat Dec 27 21:36:38 2003  Ben Pfaff  <blp@gnu.org>
3684
3685         * hash.c: (hsh_hash_bytes) Use Fowler-Noll-Vo hash instead of
3686         Colin Plumb hash.  It is simpler and should better resist
3687         collisions.
3688         (hsh_hash_string) Ditto.
3689
3690 Sat Dec 27 21:34:57 2003  Ben Pfaff  <blp@gnu.org>
3691
3692         * get.c: (export_write_case_func) Remove debug printing code.
3693
3694 Sat Dec 27 21:11:09 2003  Ben Pfaff  <blp@gnu.org>
3695
3696         * get.c: (cmd_save_internal) Rename parameter.  Use &t->h instead
3697         of cast.
3698         (save_write_case_func) Use &trns->h instead of cast.
3699         (cmd_export) Use &t->h instead of cast.
3700
3701 Sat Dec 27 20:57:42 2003  Ben Pfaff  <blp@gnu.org>
3702
3703         Moved vectors into the dictionary.
3704
3705         * var.h: (struct vector) Moved here from vector.h.  `index' member
3706         renamed `idx', `v' renamed `var', `nv' renamed `cnt'.  All
3707         references updated.
3708         
3709         * vector.h: Removed.
3710
3711         * vector.c: (global var vec) Removed.
3712         (global var nvec) Removed.
3713         (cmd_vector) Rewritten.
3714         (find_vector) Removed.
3715
3716         * dictionary.c: (dict_create_vector) New function.
3717         (dict_get_vector) New function, replaces reading global vec[]
3718         array.
3719         (dict_get_vector_cnt) New function, replaces reading global nvec
3720         variable.
3721         (dict_lookup_vector) New function, replaces find_vector().
3722         (dict_clear_vectors) New function.
3723
3724 Sat Dec 27 20:54:01 2003  Ben Pfaff  <blp@gnu.org>
3725
3726         Start to move away from `struct variable' p `union' member to void
3727         * aux member.
3728
3729         * var.h: (struct variable) Add `aux' member.
3730
3731 Sat Dec 27 20:36:25 2003  Ben Pfaff  <blp@gnu.org>
3732
3733         Get rid of struct variable `foo' member.
3734
3735         * frequencies.q: (internal_cmd_frequencies) Use p.frq.used instead
3736         of foo.
3737         (frq_custom_variables) Ditto.
3738         (frq_custom_grouped) Ditto.
3739
3740         * get.c: (struct save_trns) Change `var' member from `int *' to
3741         `struct variable **'.
3742         (cmd_save_internal) Use aux instead of foo.
3743         (save_trns_proc) Use revised `var' member.
3744         (static var mtf_seq_no) Renamed mtf_seq_num.
3745         (static var mtf_seq_nums) New static var.
3746         (cmd_match_files) Initialize mtf_seq_nums.
3747         (mtf_free) Free mtf_seq_nums.
3748         (mtf_processing) Use mtf_seq_nums instead of foo.
3749         (mtf_merge_dictionary) No need to initialize mv->foo.
3750         (cmd_export) Use aux instead of foo.  Use revised `var' member.
3751         (mns_custom_tables) Don't use foo to check for duplicates, that's
3752         what PV_NO_DUPLICATE is for.
3753
3754         * var.h: (struct variable) Remove `foo' member.
3755         (struct frequencies_proc) New member.
3756         
3757 Sat Dec 27 19:46:13 2003  Ben Pfaff  <blp@gnu.org>
3758
3759         Clean up COMPUTE and IF.
3760
3761         * compute.c: More or less rewrite the darn thing.
3762         (struct compute_trns) Rename and reorder and add and delete
3763         members.
3764         (cmd_compute) Rewrite.
3765         (compute_num) Make conditional on test expression.  Now used for
3766         both COMPUTE and IF.
3767         (compute_num_vec) Ditto.
3768         (compute_str) Ditto.
3769         (compute_str_vec) Ditto.
3770         (cmd_if) Rewrite.
3771         (if_num) Removed.
3772         (if_num_vec) Removed.
3773         (if_str) Removed.
3774         (if_str_vec) Removed.
3775         (parse_target_expression) Renamed parse_rvalue_expression(),
3776         rewritten.
3777         (new_trns) Renamed compute_trns_create(), rewritten.
3778         (delete_trns) Removed.
3779         (free_trns) Renamed compute_trns_free(), rewritten.
3780         (struct lvalue) New structure.
3781         (parse_var_or_vec) Renamed lvalue_parse(), rewritten.
3782         (lvalue_get_type) New function.
3783         (lvalue_is_vector) New function.
3784         (lvalue_finalize) New function.
3785         (lvalue_destroy) New function.
3786         
3787 Sat Dec 27 19:44:14 2003  Ben Pfaff  <blp@gnu.org>
3788
3789         * command.def: Disallow MODIFY VARS in input mode, so that
3790         variables can't get dropped and confuse cmd_end_input_program()'s
3791         attempt to fill inp_init[].
3792         
3793         * modify-vars.c: (static var forward_positional_ordering) New
3794         variable.
3795         (struct var_modification) Entirely changed.
3796         (rearrange_dict) Interface changed, rewritten.
3797         (cmd_modify_vars) Deal with modified struct var_modification, much
3798         rewritten.
3799         (struct var_renaming) New structure.
3800         (compare_var_renaming_by_new_name) New function.
3801         (validate_var_modification) New function.
3802
3803         * var.h: (struct modify_vars_proc) Removed.
3804         (struct variable) Removed member p.mfv.
3805
3806 Sat Dec 27 19:40:26 2003  Ben Pfaff  <blp@gnu.org>
3807
3808         Make EVALUATE a valid command whether we're debugging or not, so
3809         that `make check' can succeed regardless of whether debugging is
3810         turned on.
3811         
3812         * command.def: [GLOBAL_DEBUGGING] Drop the #if.
3813
3814         * compute.c: [GLOBAL_DEBUGGING] (cmd_evaluate) Drop the #if.
3815
3816 Sat Dec 27 19:34:40 2003  Ben Pfaff  <blp@gnu.org>
3817
3818         * apply-dict.c: (cmd_apply_dictionary) Replace a ghastly switch
3819         statement by a simple if test.
3820
3821         * dfm.c: (dfm_get_record) Add assertion.
3822
3823 Sat Dec 27 17:51:26 2003  Ben Pfaff  <blp@gnu.org>
3824
3825         For each file x.c, move #include "x.h" to the very top of the
3826         include list, to catch x.h failing to include the proper headers.
3827
3828 Sat Dec 27 17:50:19 2003  Ben Pfaff  <blp@gnu.org>
3829
3830         * algorithm.c: (find) New function.
3831         (remove_equal) New function.
3832         (set_difference) New function.
3833         (adjacent_find_equal) New function.
3834         [TEST_UNIQUE] Removed test case.
3835         (copy_if) Find end test.
3836
3837 Sat Dec 27 17:42:45 2003  Ben Pfaff  <blp@gnu.org>
3838
3839         * dictionary.c: (dict_get_case_weight) New convenience function.
3840
3841         * aggregate.c: (accumulate_aggregate_info) Use
3842         dict_get_case_weight().
3843
3844         * frequencies.q: (calc_general) Ditto.
3845         (calc_integer) Ditto.
3846         (calc) Ditto.
3847
3848         * t-test.q: (groups_calc) Ditto.
3849         (z_calc) Ditto.
3850
3851 Sat Dec 27 17:29:45 2003  Ben Pfaff  <blp@gnu.org>
3852
3853         * glob.c: (global var default_dict) Change from `struct
3854         dictionary' to `struct dictionary *'.  All references changed.
3855         (init_glob) Initialize default_dict with dict_create().
3856
3857 Sat Dec 27 17:06:06 2003  Ben Pfaff  <blp@gnu.org>
3858
3859         struct dictionary now made opaque.  All related functions:
3860
3861         * get.c: (rename_variables) Removed.
3862         (dict_delete_run) Removed.
3863         
3864         * temporary.c: (copy_variable) Removed.
3865         (new_dictionary) Removed.
3866         (save_dictionary) Removed.
3867         (restore_dictionary) Removed.
3868         (free_dictionary) Removed.
3869
3870         * vars-atr.c: (clear_default_dict) Removed.
3871         (find_variable) Removed.
3872         (find_dict_variable) Removed.
3873         (create_variable) Removed.
3874         (delete_variable) Removed.
3875         (common_init_stuff) Removed.
3876         (init_variable) Removed.  Updating of inp_init moved into
3877         cmd_end_input_program().
3878         (replace_variable) Removed.
3879         (rename_variable) Removed.
3880         (clear_variable) Removed.
3881         (dup_variable) Removed.
3882
3883         * vars-prs.c: (is_varname) Removed.
3884         (is_dict_varname) Removed.
3885         (fill_all_vars) Removed.
3886
3887         * vector.c: (find_vector) Removed.
3888
3889         * weight.c: (stop_weighting) Removed.
3890
3891         * dictionary.c: New file.
3892         (dict_create) New, replaces new_dictionary().
3893         (dict_clone) New, replaces save_dictionary() and
3894         restore_dictionary().
3895         (dict_clear) New, replaces clear_default_dict().
3896         (dict_destroy) New, replaces free_dictionary().
3897         (dict_get_var_cnt) New function, replaces references to
3898         dict->nvar.
3899         (dict_get_var) New function, replaces references to dict->var[i].
3900         (dict_get_vars) New function, replaces fill_all_vars().
3901         (dict_create_var) New, replaces create_variable().  Interface
3902         drops `type' parameter, using a zero `width' to designate numeric.
3903         (dict_clone_var) New, replaces dup_variable().
3904         (dict_rename_var) New, replaces rename_variable().
3905         (dict_lookup_var) New, replaces find_variable(),
3906         find_dict_variable(), is_varname().
3907         (dict_contains_var) New function.
3908         (compare_variable_dblptrs) New function.
3909         (dict_delete_var) New function, replaces clear_variable().
3910         (dict_delete_vars) New function, replaces dict_delete_run().
3911         (dict_reorder_vars) New function.
3912         (dict_rename_vars) New function, replaces rename_variables().
3913         (dict_get_weight) New function, replaces reading dict->weight_var.
3914         (dict_set_weight) New function, replaces writing dict->weight_var
3915         or calling stop_weight(dict).
3916         (dict_get_filter) New function, replaces reading dict->filter_var.
3917         (dict_set_filter) New function, replaces writing dict->filter_var.
3918         (dict_get_case_limit) New function, replaces reading dict->N.
3919         (dict_set_case_limit) New function, replaces writing dict->N.
3920         (dict_get_value_cnt) New function, replaces reading dict->nval.
3921         (dict_compact_values) New function, replaces a loop that was
3922         replicated in several places.
3923         (dict_get_split_vars) New function, replaces reading dict->splits.
3924         (dict_get_split_cnt) New function, replaces reading
3925         dict->n_splits.
3926         (dict_set_split_vars) New function, replaces writing dict->splits.
3927         (dict_get_label) New function, replaces reading dict->label.
3928         (dict_set_label) New function, replaces writing dict->label.
3929         (dict_get_documents) New function, replaces reading
3930         dict->documents.
3931         (dict_set_documents) New function, replaces writing
3932         dict->documents.
3933         
3934         All references to above functions updated.
3935         
3936         * aggregate.c: (cmd_aggregate) Copy file label and documents from
3937         old dictionary to new by hand, because dict_create() can't do it
3938         itself.  Use dict_set_documents(), dict_set_split_vars().
3939
3940         * temporary.c: (cancel_temporary) Also set temp_dict to NULL after
3941         calling dict_destroy().
3942
3943         * data-list.c: (dls_var_spec) Remove `type' member, replace by
3944         `width'.
3945         (fixed_parse_compatible) Some slightly nontrivial changes for
3946         dict_create_var().
3947         (dump_fmt_list) Ditto.
3948         (parse_free) Ditto.
3949
3950         * file-type.c: (create_col_var) Ditto.
3951
3952         * get.c: (cmd_get) Use dict_compact_values() instead of a loop.
3953         (trim_dictionary) Use dict_delete_vars(), dict_reorder_vars().
3954         (rename_variables) Use dict_rename_vars().
3955         (mtf_merge_dictionary) Use dict_get_documents(),
3956         dict_set_documents(), dict_compact_values().
3957
3958         * pfm-read.c: (read_variables) Deal with changes to weighting.
3959
3960         * q2c.c: (dump_parser) Use dict_lookup_var() instead of
3961         is_varname() in output code.
3962
3963         * sfm-read.c: (read_header) Use dict_create(), dict_set_label(),
3964         other dictionary functions.
3965
3966         * title.c: (add_document_line) Use dict_get_documents(),
3967         dict_set_documents().
3968
3969         * vars-atr.c: (discard_variables) Use dict_clear(default_dict),
3970         reset default_handle by hand.  dict_clear() will clear vectors so
3971         there's no need for that by hand.
3972
3973         * vfm.c: (close_active_file) Move call to finish_compaction()
3974         earlier, so that we can do the compaction as a single step using
3975         dict_compact_values().  Use dict_clear_vectors().
3976         (finish_compaction) Use dict_delete_var(), dict_compact_values().
3977                 
3978         Some functions don't have replacements:
3979
3980         * vars-atr.c: (force_create_variable) Removed.  All references
3981         updated to dict_create_var() followed by an assertion.
3982         (force_dup_variable) Removed.  All references updated to
3983         dict_clone_var() followed by an assertion.
3984         
3985         * weight.c: (update_weighting) Removed.  No longer necessary, so
3986         all references removed.
3987
3988 Sat Dec 27 16:43:01 2003  Ben Pfaff  <blp@gnu.org>
3989
3990         Clean up AGGREGATE.
3991         
3992         * aggregate.c: Eliminate separation of weighted and unweighted
3993         case.  It made the code too obscure and I doubt it was actually
3994         faster.  Instead, all code uses the "weighted" code, because
3995         that's a generalization of the "unweighted" code.
3996         (FWEIGHT) Removed.
3997         (FOPTIONS) Ditto.
3998         (parse_aggregate_functions) No need to set FWEIGHT.
3999         (accumulate_aggregate_info) Get rid of FWEIGHT cases.
4000         (dump_aggregate_info) Ditto.
4001         (initialize_aggregate_info) No need for special plain_function
4002         that gets rid of FWEIGHT option.
4003
4004         * aggregate.c: Get rid of approximations.
4005         (accumulate_aggregate_info) Don't use approx_gt(), approx_lt(),
4006         approx_in_range().
4007         (aggregate_single_case) Don't use approx_ne().
4008
4009 Sat Dec 27 16:19:36 2003  Ben Pfaff  <blp@gnu.org>
4010
4011         * ascii.c (ascii_line_width): Dead code, removed.
4012
4013         * postscript.c (ps_line_width): Ditto.
4014
4015         * q2c.c (xrealloc): Ditto.
4016
4017         * count.c (internal_cmd_count): Ditto.
4018
4019         * means.q (validate_dependent_endpoint): Ditto.
4020
4021         * set.q: (cmd_gset) Ditto.
4022
4023         * weight.c: [0] (weight_trns_proc) Ditto.
4024
4025 Sat Dec 27 16:18:16 2003  Ben Pfaff  <blp@gnu.org>
4026
4027         Make the code -Wmissing-prototypes clean.
4028
4029         * Makefile.am (version.c): Add #include "version.h".
4030         
4031         * ascii.c: (ascii_open_global) Make static.
4032         (ascii_close_page) Ditto.
4033         (ascii_font_sizes) Ditto.
4034         (ascii_postopen_driver) Ditto.
4035         (ascii_close_driver) Ditto.
4036         (ascii_option) Ditto.
4037         (ascii_open_page) Ditto.
4038         (ascii_line_horz) Ditto.
4039         (ascii_line_vert) Ditto.
4040         (ascii_line_intersection) Ditto.
4041         (ascii_box) Ditto.
4042         (ascii_polyline_begin) Ditto.
4043         (ascii_polyline_point) Ditto.
4044         (ascii_polyline_end) Ditto.
4045         (ascii_text_set_font_by_name) Ditto.
4046         (ascii_text_set_font_by_position) Ditto.
4047         (ascii_text_set_font_by_family) Ditto.
4048         (ascii_text_get_font_name) Ditto.
4049         (ascii_text_get_font_family) Ditto.
4050         (ascii_text_set_size) Ditto.
4051         (ascii_text_get_size) Ditto.
4052         (ascii_text_metrics) Ditto.
4053         (ascii_text_draw) Ditto.
4054         (ascii_close_page) Ditto.
4055
4056         * cmdline.h: New header for parse_command_line().  Used where
4057         needed.
4058
4059         * command.c: Move prototypes for cmd_*() functions to command.h.
4060
4061         * command.h: Prototypes for cmd_*() functions moved here from
4062         command.c.
4063
4064         * crosstabs.q: (gamma_int) Ditto.
4065
4066         * file-handle.h: Add fh_init_files() prototype.
4067         
4068         * getline.c: (welcome) Ditto.
4069
4070         * glob.h: New header for init_glob().  Used where appropriate.
4071
4072         * hash.c: (comparison_helper) Ditto.
4073
4074         * html.c: (html_open_global) Ditto.
4075         (html_close_global) Ditto.
4076         (html_preopen_driver) Ditto.
4077         (html_postopen_driver) Ditto.
4078         (html_close_driver) Ditto.
4079         (html_option) Ditto.
4080         (html_open_page) Ditto.
4081         (html_close_page) Ditto.
4082         (html_submit) Ditto.
4083
4084         * inpt-pgm.c: (input_program_source_read) Ditto.
4085
4086         * output.c: (find_defn_value) Ditto.
4087         (destroy_list) Ditto.
4088
4089         * pfm-read.c: (read_int) Ditto.
4090
4091         * postscript.c: (ps_open_global) Ditto.
4092         (ps_close_global) Ditto.
4093         (ps_font_sizes) Ditto.
4094         (ps_preopen_driver) Ditto.
4095         (ps_postopen_driver) Ditto.
4096         (ps_close_driver) Ditto.
4097         (ps_option) Ditto.
4098         (ps_open_page) Ditto.
4099         (ps_close_page) Ditto.
4100         (ps_line_horz) Ditto.
4101         (ps_line_vert) Ditto.
4102         (ps_line_intersection) Ditto.
4103         (ps_box) Ditto.
4104         (ps_polyline_begin) Ditto.
4105         (ps_polyline_point) Ditto.
4106         (ps_polyline_end) Ditto.
4107         (ps_text_set_font_by_name) Ditto.
4108         (ps_text_set_font_by_position) Ditto.
4109         (ps_text_set_font_family) Ditto.
4110         (ps_text_get_font_name) Ditto.
4111         (ps_text_get_font_family) Ditto.
4112         (ps_text_set_size) Ditto.
4113         (ps_text_get_size) Ditto.
4114         (ps_text_metrics) Ditto.
4115         (ps_text_draw) Ditto.
4116
4117         * q2c.c: (finish_up) Ditto.
4118         (xmalloc) Ditto.
4119         (xstrdup) Ditto.
4120         (get_buffer) Ditto.
4121         (st_lower) Ditto.
4122         (st_upper) Ditto.
4123         (skip_ws) Ditto.
4124         (get_line) Ditto.
4125         (add_symbol) Ditto.
4126         (find_symbol) Ditto.
4127         (lex_get) Ditto.
4128         (force_id) Ditto.
4129         (force_string) Ditto.
4130         (match_id) Ditto.
4131         (match_token) Ditto.
4132         (skip_token) Ditto.
4133         (parse) Ditto.
4134         (parse_setting) Ditto.
4135         (parse_specifier) Ditto.
4136         (parse_specifiers) Ditto.
4137         (parse_subcommand) Ditto.
4138         (dump_specifier_vars) Ditto.
4139         (is_keyword) Ditto.
4140         (make_identifier) Ditto.
4141         (dump_declarations) Ditto.
4142         (dump_specifier_init) Ditto.
4143         (dump_vars_init) Ditto.
4144         (make_match) Ditto.
4145         (dump_specifier_parse) Ditto.
4146         (dump_subcommand) Ditto.
4147         (dump_parser) Ditto.
4148         (dump_header) Ditto.
4149         (dump_free) Ditto.
4150         (recognize_directive) Ditto.
4151
4152         * recode.c: (string_to_long) Ditto.
4153
4154         * repeat.c: (find_DO_REPEAT_substitution) Ditto.
4155
4156         * repeat.h: New header for perform_DO_REPEAT_substitutions, used
4157         where appropriate.
4158
4159         * sort.c: (sort_stream_read) Ditto.
4160         (sort_stream_mode) Ditto.
4161         
4162 Fri Dec 19 23:35:04 2003  Ben Pfaff  <blp@gnu.org>
4163
4164         * algorithm.c (binary_search): Fix comparison.
4165
4166 Fri Dec 19 23:27:45 2003  Ben Pfaff  <blp@gnu.org>
4167
4168         * algorithm.c: (binary_search) Fix assertion.
4169
4170 Fri Dec 19 21:31:48 2003  Ben Pfaff  <blp@gnu.org>
4171
4172         * sysfile-info.c: (compare_vectors_by_name) Rewrite.
4173
4174 Fri Dec 19 21:30:24 2003  Ben Pfaff  <blp@gnu.org>
4175
4176         * sort.c: (compare_case_lists) Rewrite.
4177
4178 Fri Dec 19 16:44:22 2003  Ben Pfaff  <blp@gnu.org>
4179
4180         * quicksort.c: Removed (not used).
4181
4182         * quicksort.h: Removed (not used).
4183
4184         * sort.c: Removed blp_quicksort() prototype.
4185
4186 Fri Dec 19 16:42:13 2003  Ben Pfaff  <blp@gnu.org>
4187
4188         * postscript.c: (int_2_compare) Rewrite.
4189         (compare_line) Rewrite.
4190
4191 Fri Dec 19 16:38:35 2003  Ben Pfaff  <blp@gnu.org>
4192
4193         * matrix-data.c (compare_factors) Use lexicographical_compare()
4194         algorithm.
4195         (compare_doubles) New function.
4196         
4197         * algorithm.c: (lexicographical_compare) New algorithm.
4198
4199 Fri Dec 19 16:23:45 2003  Ben Pfaff  <blp@gnu.org>
4200
4201         * matrix-data.c (compare_variables_by_mxd_vartype): Rewrite.
4202
4203 Fri Dec 19 15:54:45 2003  Ben Pfaff  <blp@gnu.org>
4204
4205         * expr-prs.c: (cmp_func) Removed.
4206         (parse_function) Use binary_search() algorithm.
4207         (compare_functions) New function.
4208         (init_func_tab) Use sort() algorithm.
4209
4210         * algorithm.c: (binary_search) New algorithm.
4211
4212 Fri Dec 19 15:50:45 2003  Ben Pfaff  <blp@gnu.org>
4213
4214         * descript.q: (display) Use sort() algorithm instead of qsort().
4215         (compare_func) Removed.
4216         (descriptives_compare_variables) New function.
4217
4218 Fri Dec 19 15:08:38 2003  Ben Pfaff  <blp@gnu.org>
4219
4220         Get rid of AVL trees.  Hashes are more appropriate for everything
4221         PSPP does.
4222
4223         * Makefile.am: (pspp_SOURCES) Remove avl.c, avl.h.
4224         
4225         * avl.c: Removed.
4226
4227         * avl.h: Removed.
4228
4229 Fri Dec 19 14:33:31 2003  Ben Pfaff  <blp@gnu.org>
4230
4231         Much code can be clarified by using C++ STL-like algorithms.  Not
4232         all uses of these algorithms are listed below, only the ones where
4233         the change to an algorithm was the only change of interest.
4234         
4235         * Makefile.am: (pspp_SOURCES) Add algorithm.c, algorithm.h.
4236         
4237         * algorithm.c: New file.
4238
4239         * algorithm.h: New file.
4240
4241         * modify-vars.c: (static var forward) Removed.
4242         (static var positional) Removed.
4243         (compare_variables) Removed.
4244         (struct ordering) New.
4245         (cmd_modify_vars) Use sort() algorithm.
4246         (compare_variables_given_ordering) New function.
4247         (rearrange_dict) Use sort() algorithm.
4248
4249         * sysfile-info.c: (cmd_display) Use sort() algorithm.
4250         (cmp_var_by_name) Removed.
4251
4252 Fri Dec 19 14:26:17 2003  Ben Pfaff  <blp@gnu.org>
4253
4254         Make file handles use a hash table.
4255         
4256         * file-handle.q: (files) Change to hash table, make static.
4257         (cmd_file_handle) Use hash table functions.
4258         (fh_get_handle_by_filename) Ditto.
4259         (fh_get_handle_by_name) Ditto.
4260         (hash_file_handle) New function.
4261         (cmp_file_handle) Rewrite.
4262         (fh_init_files) Use hash table functions.
4263
4264 Fri Dec 19 14:24:38 2003  Ben Pfaff  <blp@gnu.org>
4265
4266         Clean up FREQUENCIES.
4267         
4268         * Makefile.am: (pspp_SOURCES) Remove frequencies.g.
4269
4270         * frequencies.q: Remove a lot of old #if'd out code at the end.
4271         (internal_cmd_frequencies) Use calc() instead of calc_no_weight()
4272         or calc_weight().  Initialize percentile_values.
4273         (calc) New function based on calc_weight() from frequencies.g.
4274         (precalc) Use hash functions.
4275         (static var comparison_func) Removed.
4276         (static var comparison_param) Removed.
4277         (comparison_helper) Removed.
4278         (get_freq_comparator) New function.
4279         (not_missing) New function.
4280         (add_freq) Removed.
4281         (postprocess_freq_tab) Use hash table functions, algorithms,
4282         get_freq_comparator().  Rewrite.
4283         (cleanup_freq_tab) Rephrase.
4284         (add_percentile) Clean up spacing.
4285         (hash_value_numeric) New function.
4286         (hash_value_alpha) New function.
4287         (compare_value_numeric_a) Rewrite.
4288         (compare_value_alpha_a) Rewrite.
4289         (compare_value_numeric_d) Rewrite.
4290         (compare_value_alpha_d) Rewrite.
4291         (compare_freq_numeric_a) Rewrite.
4292         (compare_freq_alpha_a) Rewrite.
4293         (compare_freq_numeric_d) Rewrite.
4294         (compare_freq_alpha_d) Rewrite.
4295         (calc_stats) Clean up mode, percentiles, max.
4296         (dump_statistics) Clean up spacing.
4297         
4298         * frequencies.g: Removed.
4299
4300         * var.h: (struct freq_tab) Change `data' to hash table.
4301
4302 Fri Dec 19 14:15:46 2003  Ben Pfaff  <blp@gnu.org>
4303
4304         * file-handle.h: Remove declaration of global variable `files',
4305         which wasn't used anywhere.
4306
4307         * postscript.c: (add_encoding) Remove superfluous cast.
4308         (line) Ditto.
4309
4310         * sfm-read.c: [linux] (bswap_int32) Drop ntohl() non-portable
4311         version.
4312
4313         * temporary.c: [0] (display_tree) Removed.
4314
4315 Fri Dec 19 14:13:04 2003  Ben Pfaff  <blp@gnu.org>
4316
4317         Implement a new random number generator based on the alleged RC4
4318         algorithm.
4319
4320         * expr-evl.c: (expr_evaluate) Use rng_get_double_normal() instead
4321         of rand_normal().
4322
4323         * random.c: [!HAVE_GOOD_RANDOM] (real_rand) Removed.
4324         [!HAVE_GOOD_RANDOM] (real_srand) Removed.
4325         (macro k) Removed.
4326         (static var V[]) Removed.
4327         (static var Y) Removed.
4328         (static var X2) Removed.
4329         (setup_randomize) Removed.
4330         (shuffle) Removed.
4331         (rand_uniform) Removed.
4332         (rand_normal) Removed.
4333         (struct rng) New structure.
4334         (rng_create) New function.
4335         (rng_destroy) New function.
4336         (swap_byte) New static function.
4337         (rng_seed) New function.
4338         (rng_get_bytes) New function.
4339         (rng_get_int) New function.
4340         (rng_get_unsigned) New function.
4341         (rng_get_double) New function.
4342         (rng_get_double_normal) New function.
4343         (pspp_rng) New function.
4344
4345         * random.h: Sync up to random.c.
4346
4347         * sample.c: (struct sample_trns) Make `frac' unsigned and a
4348         fraction of UINT_MAX, not 65536.
4349         (cmd_sample) Use rng_get_unsigned(), rng_get_double(), UINT_MAX
4350         fraction.
4351
4352         * vfm.c: (open_active_file) No need to call setup_randomize() any
4353         longer.
4354
4355 Fri Dec 19 12:05:56 2003  Ben Pfaff  <blp@gnu.org>
4356
4357         Change dictionary name indexes to use hash tables instead of AVL
4358         trees.
4359
4360         * crosstabs.q: (free_var_dict) Use hash tables.
4361         (crs_custom_tables) Ditto.
4362         (calc_general) Ditto.
4363         (compare_table_entry) Rewrite.
4364         (enum_var_values) Reorder parameters.  All references updated.
4365         Rewrite.
4366
4367         * get.c: (rename_variable) Use hash tables.
4368         (mtf_merge_dictionary) Ditto.
4369
4370         * glob.c: (init_glob) Use hash tables.
4371         (cmp_variable) Removed.
4372
4373         * means.q: (mns_custom_tables) Use hash tables.
4374
4375         * modify-vars.c: (rearrange_dict) Use hash tables.
4376
4377         * rename-vars.c: (cmd_rename_variables) Use hash tables.
4378
4379         * sfm-read.c: (read_header) Use hash tables.
4380         (read_variables) Ditto.
4381
4382         * temporary.c: (new_dictionary) Use hash tables.
4383         (save_dictionary) Ditto.
4384         (restore_dictionary) Ditto.
4385
4386         * var.h: (struct dictionary) Change AVL tree `var_by_name' into
4387         hash table `name_tab'.
4388
4389         * vars-atr.c: [DEBUGGING] (dump_one_var_node) Removed.
4390         [DEBUGGING] (dump_var_tree) Removed.
4391         (find_variable) Use hash tables.
4392         (find_dict_variable) Ditto.
4393         (common_init_stuff) Ditto.
4394         (rename_variable) Ditto.
4395         (clear_variable) Ditto.  Also, remove debug code.
4396         (dup_variable) Use hash tables.
4397
4398         * vars-prs.c: (fill_all_vars) Use hash tables.
4399         (is_dict_varname) Ditto.
4400         (parse_dict_variable) Ditto.
4401         
4402 Fri Dec 19 11:46:23 2003  Ben Pfaff  <blp@gnu.org>
4403
4404         Change value labels to use hash tables instead of AVL trees, and
4405         change value labels into an ADT.
4406
4407         * Makefile.am: (pspp_SOURCES) Add value-labels.c, value-labels.h.
4408         
4409         * value-labels.c: New file.
4410
4411         * value-labels.h: New file.
4412
4413         * apply-dict.c: (cmd_apply_dictionary) Use value label ADT.
4414         Get rid of a stupid use of goto.
4415
4416         * autorecode.c: (compare_alpha_value) Rewrite.
4417         (hash_alpha_value) Ditto.
4418         (compare_numeric_value) Rewrite.
4419         (hash_numeric_value) Ditto.
4420
4421         * frequencies.q: (dump_full) Use value label ADT.
4422
4423         * pfm-read.c: (read_value_label) Use value label ADT.
4424
4425         * pfm-write.c: (write_value_labels) Use value label ADT.
4426
4427         * sfm-read.c: (read_variables) Use value label ADT.
4428         (read_value_labels) Rewrite.
4429
4430         * sfm-write.c: (write_value_labels) Rewrite.
4431
4432         * sysfile-info.c: (cmd_sysfile_info) Use value label ADT.
4433         (display_variables) Ditto.
4434         (describe_variable) Ditto.
4435
4436         * t-test.q: (print_t_groups) Use value label ADT.
4437
4438         * temporary.c: (copy_variable) Use value label ADT.
4439         (free_dictionary) Ditto.
4440
4441         * val-labs.c: (verify_val_labs) Use value label ADT.
4442         (get_label) Ditto.
4443         (debug_print) Ditto.
4444         (val_lab_cmp) Removed.
4445         (inc_ref_count) Removed.
4446         (copy_value_labels) Removed.
4447
4448         * var.h: (struct value_label) Removed.
4449         (struct variable) Change AVL tree `val_lab' into hash table
4450         `val_labs'.
4451
4452         * vars-atr.c: (init_variable) Use value label ADT.
4453         (clear_variable) Ditto.
4454         (free_value_label) Removed.
4455         (free_val_lab) Removed.
4456         (get_val_lab) Removed.
4457         (compare_variables) New function.
4458         (hash_variable) New function.
4459
4460         * vfm.c: (dump_splits) Use value label ADT.
4461
4462 Fri Dec 19 11:18:11 2003  Ben Pfaff  <blp@gnu.org>
4463
4464         Add to the hash table interface.
4465
4466         * hash.c: (hsh_hash_bytes) Add assertion.
4467         (hsh_hash_string) Ditto.
4468         (hsh_clear) Ditto.
4469         (hsh_rehash) Ditto.
4470         (hsh_probe) Ditto.
4471         (hsh_create) Ditto.  Also make minimum `size'.
4472         (hsh_destroy) Rephrase.
4473         (sort_nulls_last) Removed.
4474         (not_null) New function.
4475         (hsh_data) Ditto.
4476         (comparison_helper) Ditto.
4477         (hsh_sort) Rewritten.
4478         (hsh_data_copy) New function.
4479         (hsh_sort_copy) Ditto.
4480         (hsh_insert) Ditto.
4481         (hsh_replace) Ditto.
4482         (hsh_hash_double) Ditto.
4483         (hsh_delete) Fix stupid bug.
4484         
4485 Thu Dec 18 12:27:03 WAST 2003 John Darrington <john@darrington.wattle.id.au>
4486         * added a calculation of the mode to FREQUENCIES
4487
4488 Wed Dec 17 12:53:01 WAST 2003 John Darrington <john@darrington.wattle.id.au>
4489
4490         * moved (un)defs of DEBUGGING to config.h
4491
4492 Mon Dec 15 21:35:59 2003  Ben Pfaff  <blp@gnu.org>
4493
4494         * groff-font.c: (add_kern) Fix indentation.
4495         (add_kern) Use & instead of % to take power-of-2 modulus.
4496         (font_get_kern_adjust) Likewise.
4497
4498 Fri Dec 12 23:54:37 2003  Ben Pfaff  <blp@gnu.org>
4499
4500         * autorecode.c: (recode) Replace stupid use of memcpy() by
4501         memberwise copy.
4502         (hash_alpha_value) Use hsh_hash_bytes().  Get rid of nasty casts.
4503         (hash_numeric_value) Ditto.
4504         (autorecode_proc_func) pool_strdup() was wrong here because the
4505         source string was not null-terminated.  Use new pool_strndup()
4506         instead.
4507
4508         * crosstabs.q: (enum_var_values) Remove superfluous and bizarre
4509         use of hsh_iterator_init().
4510
4511         * data-in.c: (parse_N) Initialize i->v->f.
4512
4513         * flip.c: (cmd_flip) Use memmove(), not memcpy(), to copy
4514         overlapping arrays.
4515
4516         * groff-font.c: Use power-of-2 hash table sizes, not prime.
4517         (groff_read_font) Don't call hsh_next_prime().  Don't call
4518         fclose(NULL).
4519         (static var hash) Remove `size_p', `max_used' members.
4520         (font_char_name_to_index) Don't call hsh_next_prime().  Use
4521         hsh_hash_string() instead of hashpjw(), & instead of %.
4522         (default_font) Don't call hsh_next_prime().
4523
4524         * pool.c: (pool_strndup) New function.
4525         (pool_strdup) Reimplement in terms of pool_strndup.
4526
4527         * postscript.c: (hash_font_entry) Use hsh_hash_string().  Get rid
4528         of nasty casts.
4529         (hash_ps_encoding) Use hsh_hash_string().
4530         (hash_ps_combo) Use hsh_hash_string(), hsh_hash_int().
4531         (hash_filename2font) Use hsh_hash_string().
4532
4533         * som.c: Add #include <stdlib.h>.
4534
4535         * tab.c: (tab_destroy) Don't set t->container after freeing `t'
4536         (by destroying its pool).
4537         
4538 Fri Dec 12 23:18:59 2003  Ben Pfaff  <blp@gnu.org>
4539
4540         Miscellaneous hash table code cleanup:
4541         
4542         * hash.h: (struct hsh_table) Moved into hash.c.
4543         (hsh_count) Ditto, and transformed into function.
4544         (hsh_compare_func) New typedef, used for defining otherwise-long
4545         function types here and in hash.c
4546         (hsh_hash_func) Ditto.
4547         (hsh_free_func) Ditto.
4548         
4549         * hash.c: (struct hsh_table) Renamed `n' to `used', `m' to `size',
4550         `table' to `entries'.  Removed `mp'.  All references updated.
4551         (hsh_clear) Don't shrink entries array; if the hash was this big
4552         once, it probably will be again.
4553         (hsh_rehash) Made static.
4554         (force_hsh_insert) Renamed hsh_force_insert.
4555         (force_hsh_find) Renamed hsh_force_find.
4556
4557         Made hash table sizes powers of 2, because that's fine with any
4558         reasonable hash function and because taking a power-of-2 modulus
4559         is faster than any other:
4560         
4561         (hsh_prime_tab) Removed;
4562         (hsh_next_prime) Ditto.
4563         (next_power_of_2) New function.
4564         (hsh_create) Use next_power_of_2.
4565         (hsh_rehash) Use & instead of %.
4566
4567         Cleaned up hsh_sort:
4568         
4569         (internal_comparison_fn) Removed.
4570         (sort_nulls_last) New function.
4571         (hsh_sort) Removed second parameter, switched to using the new
4572         quicksort() function from quicksort.h to avoid using nasty need
4573         for static variables with qsort().  All references updated.
4574
4575         Changed the hash functions offered, because there are better hash
4576         functions than the ones we had, and cleaned up the names to boot:
4577         
4578         * hash.c: (hashpjw_d) Removed.
4579         (hashpjw) Ditto.
4580         (hsh_hash_bytes) New function.
4581         (hsh_hash_string) New function.
4582         (hsh_hash_int) New function.
4583
4584         Improved the hash table iteration interface:
4585         
4586         * hash.h: (hsh_iterator_init) Removed.
4587         (struct hsh_iterator) Removed `init' member, change `next' to
4588         size_t.
4589
4590         * hash.c: (hsh_foreach) Removed.  All references updated to use
4591         hsh_first/hsh_next instead.
4592         (hsh_first) New function.  Notably, unlike hsh_foreach() it does
4593         not treat a null pointer as an empty hash table.
4594         (hsh_next) New function.
4595
4596         Made deletion possible, though slow:
4597
4598         * hash.c: (locate_matching_entry) New function.
4599         (hsh_find) Use locate_matching_entry().
4600         (hsh_delete) New function also using locate_matching_entry().
4601         (hsh_force_delete) New function.
4602
4603 Fri Dec 12 23:16:10 2003  Ben Pfaff  <blp@gnu.org>
4604
4605         * quicksort.c: New file implementing a sort routine with a
4606         interface better than qsort() because it passes a user-provided
4607         parameter to the sort routine.
4608
4609         * Makefile.am: Add quicksort.c, quicksort.h.
4610
4611 Fri Dec 12 13:31:58 2003  Ben Pfaff  <blp@gnu.org>
4612
4613         * All source files: Get rid of nasty special cases for Checker,
4614         which is pretty obsolete now.
4615
4616 Thu Dec 11 21:38:24 WST 2003 John Darrington <john@darrington.wattle.id.au>
4617
4618         * Fixed a bug apparent when using the FREQUENCIES command with the
4619         html driver.  The html driver was incorrectly trying to display 
4620         empty cells.
4621
4622 Sun Jan  2 21:40:13 2000  Ben Pfaff  <blp@gnu.org>
4623
4624         * Makefile.am: Reorganized.  Put locale dir in version.c instead
4625         of passing it to each compile command.  Only put local gmp libs in
4626         LD_ADD if not installed on system.  Remove `boast' target.
4627
4628         * All source files: struct and union typedefs eliminated.
4629         `sizeof type' replaced by `sizeof object' where practical.  Moved
4630         `unused' qualifiers from start to end of declarations for gcc
4631         2.7.2 compatibility.  Change `while (1)' to `for (;;)'.  Made
4632         assertions on pointers strictly compliant.  Removed _ prefixes on
4633         some function parameter names.
4634
4635         * alloc.c: New source file, containing these external linkage
4636         functions removed from common.c: xmalloc, xcalloc, xrealloc,
4637         xstrdup.
4638
4639         * arena.c: Removed.
4640         
4641         * arena.h: Removed.
4642
4643         * ascii.c: Migrated from arenas to pools.
4644         (struct ascii_driver_ext) ops[], box[], fonts[] changed from
4645         c_string to len_string.  All references changed.
4646         (ascii_option) Signature changed to comply to new output.c
4647         interface.
4648         (count_fancy_chars) Removed.
4649         (delineate) Removed support for rich text.
4650         (ascii_text_metrics) Ditto.
4651         (text_draw) Ditto.
4652         (output_shorts) Change `box', `off', `on' from c_string to
4653         len_string.  Change `remaining' from int to size_t.
4654         (ascii_close_page) Make page numbering less haphazard.
4655
4656         * autorecode.c: Migrate from arenas to pools.
4657
4658         * avl.c: Migrate from arenas to pools.  Synch from libavl 1.4.0.
4659
4660         * bitvector.h: New file containing these macros from misc.h:
4661         SET_BIT, CLEAR_BIT, SET_BIT_TO, TEST_BIT, BIT_INDEX.
4662
4663         * command.c: (struct command) cmd1, cmd2, cmd3 members changed to
4664         word[3].  ncmd removed.
4665         (var empty_string) Removed.
4666         (var cmd_table) Declaration updated.
4667         (var cmdtab) Removed.
4668         (cmp_command) Removed.
4669         (split_words) Rewritten to use strtok_r().
4670         (init_cmd_parser) Renamed cmd_init().  Rewritten.
4671         (find_command) Removed.
4672         (FILE_TYPE_okay) Rewritten.
4673         (cmd_parse) Rewritten.  Semantics of the return value of command
4674         handlers has changed: they must now return one of the new CMD_*
4675         enumerals, rather than a magic value.  This meant that all
4676         commands had to be modified, and they were.
4677         (figure_out_command) New function.
4678
4679         * command.def: Add CORRELATIONS, PEARSON CORRELATIONS.  Add
4680         #defines for INIT, INPU, etc.
4681
4682         * command.h: New CMD_* enum series.
4683         (cur_proc) Make const char *, not char *.
4684         (cmd_init) Prototype.
4685         (cmd_parse) Ditto.
4686
4687         * common.c: Removed.
4688
4689         * common.h: Removed.
4690
4691         * correlations.q: New file.
4692
4693         * crosstabs.q: Migrate from arenas to pools.  Migrate to new-style
4694         q2c.
4695         (custom_tables) Renamed crs_custom_tables().
4696         (custom_variables) Renamed crs_custom_variables().
4697         (calc_integer) Add in some `const' qualifiers.
4698         (table_value_missing) Change from a_string to len_string.
4699         (float_M_suffix) Change from a_string to len_string.
4700
4701         * data-in.c: Rewritten.  All references to
4702         parse_string_as_format() changed to data_in().
4703
4704         * data-in.h: New file.
4705
4706         * data-list.c: Change DLS_* from #define's to enums.  Move from
4707         rpd_msg() to tmsg().
4708         (RPD_ERR) New #define.
4709         (do_reading) Change dfm_push_cust() to dfm_push(), pop_cust() to
4710         dfm_pop().
4711         (read_from_data_list_fixed) Change from old
4712         parse_string_as_format() to new data_in().
4713         (read_from_data_list_free) Ditto.
4714         (read_from_data_list_list) Ditto.
4715         (cmd_repeating_data) Modify approach to checking for end of
4716         command.
4717         (rpd_msg) Removed.
4718         (rpd_parse_record) Change from old parse_string_as_format() to new
4719         data_in().  Change from old convert_format_to_string() to new
4720         data_out().
4721         (read_one_set_of_repetitions) Change dfm_push_cust() to
4722         dfm_push(), pop_cust() to dfm_pop().
4723
4724         * data-out.c: Rewritten.  All references to
4725         convert_format_to_string() changed to data_out().
4726
4727         * descript.q: Migrate to new q2c.
4728         (cmd_descriptives) Removed.
4729         (internal_cmd_descriptives) Renamed cmd_descriptives ().
4730         (custom_variables) Renamed dsc_custom_variables().
4731
4732         * dfm.c: (struct dfm_fhuser_ext) `ln' removed.  All references
4733         removed.
4734         (open_file_r) Initialize h->where.line_number.  Migrate to new
4735         struct string.
4736         (open_file_w) Initialize h->where.line_number.
4737         (read_record) Change from ext->ln to h->where.line_number.
4738         Migrate to struct string.
4739         (dfm_put_record) Rephrased.
4740         (dfm_push_cust) Renamed dfm_push(), rewritten.
4741         (dfm_pop) New function.
4742
4743         * error.c: All references updated.
4744         (glob var error_count) Renamed err_err_count.
4745         (glob var warning_count) Renamed err_warning_count.
4746         (glob var error_already_flagged) Renamed err_already_flagged.
4747         (glob var verbosity) Renamed err_verbosity.
4748         (glob var cust_fn) Removed.
4749         (glob var cust_ln) Removed.
4750         (static var file_loc) New.
4751         (static var nfile_loc) New.
4752         (static var mfile_loc) New.
4753         (tmsg) New function.
4754         (push_cust) Removed.
4755         (pop_cust) Removed.
4756         (msg) Rewritten.
4757         (static var terminating) Removed.
4758         (failure) Renamed err_failure().
4759         (hcf) Renamed err_hcf().
4760         (err_push_file_locator) New function.
4761         (err_pop_file_locator) New function.
4762         (err_location) New function.
4763         (check_error_count) Renamed err_check_count().
4764         (vmsg) Renamed err_vmsg().  Interface changed.
4765         (verbose_msg) Removed.
4766         (err_cond_fail) New function.
4767         (error_break) Renamed err_break().
4768
4769         * error.h: All references updated.
4770         (enum MSG_CLASS_COUNT) Renamed ERR_CLASS_COUNT.
4771         (enum ERR_CLASS_MASK, ERR_VERBOSITY_SHIFT, ERR_VERBOSITY_MASK)
4772         New.
4773         (struct file_locator) New.
4774         (struct error) New.
4775         (macro verbose_msg) Removed.
4776         (macro cond_fail) Removed.
4777
4778         * expr-opt.c: (evaluate_tree) sizeof(char) == 1.
4779
4780         * expr-prs.c: Reorganized.  All references updated.
4781         (exprtypename) Renamed expr_type_name().
4782         (typename) Renamed type_name().
4783         (free_expression) Renamed expr_free().
4784         (parse_expression) Renamed expr_parse().  Uses new type_check()
4785         function.
4786         (init_functab) Renamed init_func_tab().
4787         (type_check) New function.
4788         (parse_or) Rewritten to use new allocate_nonterminal() and
4789         append_nonterminal_arg() functions.
4790         (parse_and) Ditto.
4791         (parse_not) Ditto.
4792         (parse_rel) Ditto.  Also simplified logic.
4793         (parse_add) Ditto.
4794         (parse_mul) Ditto.
4795         (parse_neg) Ditto.
4796         (parse_exp) Ditto.
4797         (SYSMIS_func) Ditto.
4798         (VALUE_func) Rephrased.
4799         (CONCAT_func) Fix memory leak by replacing free by free_node on
4800         lossage.
4801         (generic_str_func) Ditto.
4802         (parse_function) Ditto.  Also rephrasings.  Uses bsearch() to find
4803         function.
4804         (allocate_nonterminal) New function.
4805         (append_nonterminal_arg) New function.
4806         (static func_tab[]) Now at file level.
4807         (cmp_func) Moved.
4808         (init_func_tab) Moved.  Now just uses qsort() to sort func_tab[].
4809
4810         * expr.h: (enum series OP_*) Moved to exprP.h.
4811         (OP_* defines) Ditto.
4812         (struct op_desc) Ditto.
4813         (global ops[]) Ditto.
4814         (struct num_con_node) Ditto.
4815         (struct str_con_node) Ditto.
4816         (struct var_node) Ditto.
4817         (struct lag_node) Ditto.
4818         (struct casenum_node) Ditto.
4819         (struct nonterm_node) Ditto.
4820         (union any_node) Members renamed.
4821         (struct sys_node) Removed.
4822         (struct val_node) Removed.
4823         (operator typedef) Removed.
4824         (typedef exprtype) Removed.
4825         (enum series EX_*) Moved to exprP.h.
4826         (struct expression) Ditto.  Also renamed a lot of the members.
4827         (PXP_* defines) Changed to enums.
4828         (free_node prototype) Moved to exprP.h.
4829
4830         * file-handle.h: (struct file_handle) New member `where'.
4831
4832         * file-handle.q: Migrated to new q2c format.
4833         (prepend_current_directory) Removed (dead code).
4834         (cmd_file_handle) Incorporated all of internal_cmd_file_handle().
4835         (fh_get_handle_by_filename) Removed dead code.
4836         Set new `where' member.
4837
4838         * file-type.c: (file_type_source_read) References to
4839         parse_string_as_format() changed to data_in().
4840         dfm_push_cust()/pop_cust() changed to dfm_push()/dfm_pop().
4841
4842         * filename.c: All references updated.
4843         (init_filename) Renamed fn_init().
4844         (expand_line) Removed.
4845         (macro EXPAND_LINE) Removed.
4846         (interp_vars) Renamed fn_interp_vars().  Now uses st_*() instead
4847         of custom functions.
4848         (gnu_getcwd) Renamed fn_get_cwd(), rewritten.
4849         (tilde_expand) Renamed fn_tilde_expand(), uses ds_*().
4850         (normalize_filename) Renamed fn_normalize().
4851         (search_path) Renamed fn_search_path(), rewritten.
4852         (prepend_dir) Renamed fn_prepend_dir().
4853         (blp_getenv) Renamed fn_getenv().
4854         (blp_dirname) Renamed fn_dirname().
4855         (fn_basename) New function, not used.
4856         (absolute_filename_p) Renamed fn_absolute_p().
4857         (is_special_filename) Renamed fn_special_p().
4858         (file_exists) Renamed fn_exists_p().
4859         (readlink_malloc) Renamed fn_readlink().
4860         (getenv_default) Renamed fn_getenv_default().
4861         (open_file) Renamed fn_open().
4862         (close_file) Renamed fn_close().
4863         (open_file_ext) Renamed fn_open_ext().
4864         (close_file_ext) Renamed fn_close_ext().
4865
4866         * font.h: Migrate from arenas to pools.
4867
4868         * format.c: (parse_format_specifier_name) Deal with ds_* strings.
4869
4870         * frequencies.g: Migrate from arenas to pools.
4871
4872         * frequencies.q: Migrate to new q2c version.  Migrate from arenas
4873         to pools.
4874
4875         * getline.c: All references updated.
4876         (global getl_buf) Changed from char * to struct string.
4877         (static getl_include_path) Ditto.
4878         (global getl_buf_len) Removed.
4879         (global getl_buf_size) Removed.
4880         (getl_include_path) Deal with new getl_buf, getl_include_path.
4881         (getl_uninitialize) New function.
4882         (getl_get_current_directory) Rewritten.
4883         (getl_clear_include_path) Rewritten.
4884         (getl_add_include_dir) Rewritten.
4885         (getl_add_file) Assertion fixed.
4886         (getl_add_virtual_file) Change initial value of `remaining_loops'
4887         from 2 to 1.
4888         (welcome) Rewritten.
4889         (handle_line_buffer) Make static.  Change logic to make
4890         getl_add_virtual_file() change sensible.  Use ds_*() strings.
4891         (getl_read_line) Use ds_*() strings.  Implement SET ECHO.
4892         (getl_close_file) Moved.
4893         (getl_location) New function.
4894
4895         * getline.h: All references updated.
4896         (macro curln) Removed.
4897         (macro curfn) Removed.
4898         (macro am_interactive) Renamed getl_am_interactive.
4899         (macro am_reading_script) Renamed getl_reading_script.
4900
4901         * glob.c: (global fmt_parse_ignore_error) Removed.
4902         (init_glob) Use locale_dir not LOCALEDIR.  Use feholdexcept() on
4903         systems that support it (C99).  Turn off SET ECHO by default.  No
4904         necessary julcal initialization anymore.
4905
4906         * groff-font.c: Migrate from arenas to pools.
4907         (groff_read_font) Use err_push_file_locator().
4908         (groff_read_DESC) Ditto.
4909         (font_msg) Use tmsg().
4910
4911         * hash.c: (hsh_sort) Fix debug code.
4912         [GLOBAL_DEBUGGING] Include stdio.h.
4913
4914         * hash.h: (macro force_hsh_insert) Rephrase.
4915
4916         * heap.c: Rewritten.
4917         
4918         * heap.h: Rewritten.
4919
4920         * html.c: (html_option) Change from outp_value to struct string.
4921         (postopen) Change from curfn to getl_location().
4922         (escape_string) Remove rich-text code.  Signature changed.
4923         (output_tab_table) Switch from a_string to struct len_string.
4924         Remove rich text support.
4925
4926         * lexer.c: All references updated.  Largely rewritten.  Major
4927         changes listed below.  Removed tagged quote support.  Adapted to
4928         struct string tokstr.
4929         (global tokstr) Changed to struct string.
4930         (global tokstr_size) Removed.
4931         (global tokstr_len) Removed.
4932         (global tokid) New.
4933         (global tokint) Removed.
4934         (global toklongstr) Removed.
4935         (C* defines) Removed.
4936         (static tbl[]) Removed.
4937         (static id[]) Removed.
4938         (static une[]) Removed.
4939         (discard_line) Renamed lex_discard_line().
4940         (get_entire_line) Renamed lex_entire_line().
4941         (get_rest_of_line) Renamed lex_rest_of_line().
4942         (get_dotted_rest_of_line) Merged into lex_rest_of_line().
4943         (make_hexit) Removed.
4944         (syntax_error) Renamed lex_error().  Return value removed.
4945         (get_token_representation) Renamed lex_token_representation().
4946         (putback) Renamed lex_put_back().
4947         (putfwd) Renamed lex_put_forward().
4948         (convert_negative_to_dash) Renamed lex_negative_to_dash().
4949         (set_prog) Renamed lex_set_prog().
4950         (init_lex) Renamed lex_init().
4951         (reset_eof) Renamed lex_reset_eof().
4952         (lookahead) Renamed lex_look_ahead().
4953         (check_id) Rewritten.
4954         (yylex) Renamed lex_get(), rewritten.
4955         (lex_end_of_command) New function.  Many commands were rephrased
4956         using this.
4957         (lex_integer_p) New function.  Replaces compare of tokint against
4958         NOT_LONG.
4959         (lex_integer) New function.  Replaces tokint.
4960         (match_tok) Renamed lex_match().
4961         (match_id) Renamed lex_match_id().
4962         (match_int) Renamed lex_match_int().
4963         (force_match_id) Renamed lex_force_match_id(), added return value.
4964         (force_match) Renamed lex_force_match(), added return value.
4965         (force_string) Renamed lex_force_string(), added return value.
4966         (force_int) Renamed lex_force_int(), added return value.
4967         (lex_id_match_len) New function.
4968         (id_match) Renamed lex_id_match(), rewritten.
4969         (get_line) Renamed lex_get_line().
4970         (preprocess_line) Renamed lex_preprocess_line().
4971         (tokname) Renamed lex_token_name().
4972         (bin_value_func) Removed.
4973         (oct_value_func) Removed.
4974         (hex_value_func) Removed.
4975         (unexpected_eof) New function.
4976         (convert_numeric_string_to_char_string) New function.
4977         (parse_string) Rewritten, signature changed.
4978         (add_tokstr_char) Removed.
4979         (add_tokstr_unsigned) Removed.
4980         (add_tokstr_string) Removed.
4981         (parse_tagged_quote) Removed.
4982         (skip_comment) Renamed lex_skip_comment().
4983
4984         * lexer.h: All references updated.
4985         (macro is_id1) Renamed CHAR_IS_ID1.
4986         (macro is_idn) Renamed CHAR_IS_IDN.
4987         (token names ID, NUM, STRING, STOP, ... WITH, EXP) Renamed with
4988         prefix T_: T_ID, T_NUM, T_STRING, T_STOP, ... T_WITH, T_EXP.
4989         (macro get_token) Removed.
4990         (macro id_match) Removed.
4991         (macro force_match_id) Removed.
4992         (macro force_match) Removed.
4993         (macro force_string) Removed.
4994         (macro force_int) Removed.
4995         (macro force_num) Removed.
4996         (macro force_id) Removed.
4997
4998         * lexerP.h: Removed.
4999
5000         * list.q: Migrated to new q2c format.
5001         (write_line) Deal with struct len_string.
5002         (write_varname) Ditto.
5003         (write_fallback_headers) Ditto.
5004
5005         * magic.c: New file, incorporating the following global variables
5006         previously in other files: endian, second_lowest_value.  And both
5007         of those are conditional on #define's.
5008
5009         * magic.h: New file, incorporating the following global variable
5010         declarations: endian, second_lowest_value, and the following macro
5011         declarations: NOT_DOUBLE, NOT_LONG, NOT_INT.
5012
5013         * main.c: Added declarations of pgmname, finished, curdate,
5014         start_interactive.
5015         (main) Call new parse_script() function.
5016         (parse_script) New function.
5017         (execute_command) New function.
5018         (dump_token) Removed.
5019         (handle_error) New function.
5020
5021         * matrix.c: New file.
5022
5023         * matrix.h: New file.
5024
5025         * matrix-data.c: Migrated from arenas to pools.
5026         (mget_token) Change from parse_string_as_format() to data_in().
5027
5028         * means.q: Migrate to new q2c.
5029         (custom_tables) Renamed mns_custom_tables().
5030         (custom_crossbreak) Renamed mns_custom_crossbreak().
5031         (custom_variables) Renamed mns_custom_variables().
5032
5033         * mis-val.c: (static var width) Changed from `int' to `size_t'.
5034         (parse_varnames) Prototype.
5035         (parse_numeric) Rephrasings.
5036         (parse_alpha) Adapt to new struct string tokstr.
5037
5038         * misc.c: (intlog10) Rewritten.
5039         (spacing) Removed.
5040         (ansi_rand) Renamed real_rand(), moved into random.c.
5041         (ansi_srand) Renamed real_srand(), moved into random.c.
5042         (setup_randomize) Moved to random.c.
5043         (rand_uniform) Ditto.
5044         (rand_normal) Ditto.
5045         (rand_simple) Ditto.
5046         (get_config_line) Removed.
5047         (reverse) Removed (dead code).
5048
5049         * misc.h: (macro SET_BIT) Moved to bitvector.h.
5050         (macro CLEAR_BIT) Ditto.
5051         (macro TEST_BIT) Ditto.
5052         (macro SET_BIT_TO) Ditto.
5053         (macro BIT_INDEX) Ditto.
5054
5055         * output.c: (outp_read_devices) Move to err_push_file_locator()
5056         from push_cust().  Use struct string.
5057         (expand_op_tokstr) Removed.
5058         (static var op_tokstr) Changed to struct string.
5059         (static var op_tokstr_size) Removed.
5060         (tokener) Rephrasings.  Use struct string.
5061         (parse_options) Use struct string.
5062         (destroy_driver) Fix assertion.
5063         (outp_get_paper_size) Move to err_push_file_locator().
5064         [0] Removed dead code.
5065         (outp_string_width) Move to len_string.
5066
5067         * output.h: Comment fixes.
5068         (TAG_* enum series) Removed.
5069         (struct outp_value) Removed.
5070         (enum OUTP_T_FANCY) Removed.
5071         (struct outp_text) `s' changed from a_string to len_string.
5072         (struct outp_class) `option' change arg 3 from outp_value to
5073         struct string.
5074
5075         * pfm-read.c: (corrupt_msg) Rewritten.
5076
5077         * pfm-write.c: (bufwrite) Fix assertion.
5078
5079         * pool.c: New file, reference version.
5080
5081         * pool.h: New file, reference version.
5082
5083         * postscript.c: (ps_font_sizes) Fix assertion.
5084         (ps_option) Change arg 3 from outp_value to struct string.
5085         Adapt to struct string.
5086         (macro output_line) Removed.
5087         (macro add_string) Removed.
5088         (output_encodings) Adapted to struct string.  Moved to
5089         err_push_file_locator().
5090         (find_encoding_file) Fix assertion.
5091         (read_ps_encodings) Move to err_push_file_locator().
5092         (postopen) Use getl_location() instead of curfn.
5093         (out_text_plain) Move to len_string.
5094         (text) Ditto.  Remove rich text support.
5095
5096         * print.c: (cmd_print) Remove now-unneeded resource cleanup code.
5097         (cmd_print_eject) Ditto.
5098         (cmd_write) Ditto.
5099         (internal_cmd_print) Now cleans up after itself.  Uses
5100         fh_parse_file_handle() now.
5101         (cmd_print_space) Use PXP_NUMERIC to type-check.
5102
5103         * q2c.c: Overhauled.  Removed _("") i18n support.  All references
5104         updated.  All output functions updated to handle structures rather
5105         than local or static variables.  Adapt to new PSPP lex_*()
5106         functions.
5107         (macro _) Removed.
5108         (macro N_) Removed.
5109         (macro MAX_N_SBC) Removed.
5110         (global bare) Removed.
5111         (enum STRING) Renamed T_STRING.
5112         (enum ID) Renamed T_ID.
5113         (get_buffer) Buffer size increased.
5114         (strlower) Renamed st_lower(), rephrased.
5115         (strupper) Renamed st_upper(), rephrased.
5116         (skip_ws) New function.
5117         (get_line) Don't special-case any types of lines (like those
5118         beginning with ! or $, for instance).
5119         (get_token) Renamed lex_get().  Rephrased.
5120         (static var `prefix') New.
5121         (parse) New function.
5122         (parse_setting) Minor rephrasing.
5123         (dump_specifier_vars) Ditto.
5124         (make_identifier) Put null terminator on identifier, duh.
5125         (dump_vars) Renamed dump_declarations().  Never indent.  Never
5126         static.  Output changed entirely.
5127         (dump_specifier_init) Rephrase.
5128         (dump_vars_init) No index variable needed.  Other modifications.
5129         (dump_parser) Don't parse command name.  Do dump functions instead
5130         of just code fragments.
5131         (dump_free) Dump function instead of code fragment.
5132         (recognize_directive) New function.
5133         (main) Use recognize_directive().  Don't rely on magic $ line
5134         beginning: instead, parse comments.  Update list of headers.
5135
5136         * random.c: New file, containing the following functions:
5137         real_rand(), real_srand(), setup_randomize, shuffle, rand_uniform,
5138         rand_normal, rand_simple.
5139
5140         * random.h: New file.
5141
5142         * recode.c: (cmd_recode) Merge internal_cmd_recode() into this
5143         function.  `max_src_width', `max_dst_width' changed to size_t.
5144         (internal_cmd_recode) Removed.
5145         (parse_dest_spec) Merge similar cases.
5146         (parse_src_spec) Add assertion.
5147
5148         * repeat.c: (recognize_keyword) New function.
5149         (internal_cmd_do_repeat) Parse and handle PRINT keyword on END
5150         REPEAT.  Improve recognition of END REPEAT (use
5151         recognize_keyword()).  Move from curfn to getl_location().  Use
5152         struct string.
5153                 
5154         (perform_DO_REPEAT_substitutions) Adapt to struct string.
5155
5156         * set.q: Adapt to new q2c.
5157         (cmd_set) Range-check some values better.
5158         (custom_blanks) Renamed stc_custom_blanks().
5159         (custom_length) Renamed stc_custom_length().
5160         (custom_results) Renamed stc_custom_results().
5161         (custom_seed) Renamed stc_custom_seed().
5162         (custom_width) Renamed stc_custom_width().
5163         (custom_format) Renamed stc_custom_format().
5164         (custom_journal) Renamed stc_custom_journal().
5165         (custom_color) Renamed stc_custom_color().
5166         (custom_listing) Renamed stc_custom_listing().
5167         (custom_disk) Renamed stc_custom_disk().
5168         (custom_log) Renamed stc_custom_log().
5169         (custom_rcolor) Renamed stc_custom_rcolor().
5170         (custom_viewlength) Renamed stc_custom_viewlength().
5171         (custom_workdev) Renamed stc_custom_workdev().
5172
5173         * settings.h: Not necessary to include format.h any longer.
5174
5175         * sfm-read.h: (macro bswap_int32) Moved here from sfmP.h.
5176         (corrupt_msg) Rewritten.
5177
5178         * sort.c: Adapt to rewritten heap ADT.
5179
5180         * str.c: (aa_strcpy) Removed.
5181         (ab_strcpy) Removed.
5182         (ac_strcpy) Removed.
5183         (ba_strcpy) Removed.
5184         (bb_strcpy) Removed.
5185         (ca_strcpy) Removed.
5186         (aa_strdup) Removed.
5187         (aa_strdupcpy) Removed.
5188         (ba_strdup) Removed.
5189         (sa_strdup) Removed.
5190         (memrev) Renamed mm_reverse().
5191         (memrmem) Renamed mm_find_reverse().
5192         (cmp_str) Renamed st_compare_pad().
5193         (strmaxcpy) Removed.
5194         (strbarepadcpy) Renamed st_bare_pad_copy(), signature changed.
5195         (strbarepadlencpy) Renamed st_bare_pad_len_copy(), signature
5196         changed.
5197         (strpadcpy) Renamed st_pad_copy(), signature changed.
5198         (blpstrset) Removed.
5199         (ds_create) New function.
5200         (ds_init) New function.
5201         (ds_replace) New function.
5202         (ds_destroy) New function.
5203         (ds_clear) New function.
5204         (ds_extend) New function.
5205         (ds_shrink) New function.
5206         (ds_truncate) New function.
5207         (ds_length) New function.
5208         (ds_size) New function.
5209         (ds_value) New function.
5210         (ds_end) New function.
5211         (ds_concat) New function.
5212         (ds_concat_buffer) New function.
5213         (ds_printf) New function.
5214         (ds_putchar) New function.
5215         (ds_getline) New function.
5216         (ds_get_config_line) New function derived from the old
5217         misc.c:get_config_line().
5218         (ls_create) New function.
5219         (ls_create_buffer) New function.
5220         (ls_init) New function.
5221         (ls_shallow_copy) New function.
5222         (ls_destroy) New function.
5223         (ls_null) New function.
5224         (ls_null_p) New function.
5225         (ls_empty_p) New function.
5226         (ls_length) New function.
5227         (ls_value) New function.
5228         (ls_end) New function.
5229
5230         * str.h: Reformatted.
5231         (struct a_string) Removed.
5232         (struct b_string) Removed.
5233         (struct c_string) Removed.
5234         (struct len_string) New.
5235         (struct string) New.
5236         (macro as_streq) Removed.
5237         (macro bs_streq) Removed.
5238         (macro cs_streq) Removed.
5239         (macro sa_streq) Removed.
5240         (macro sb_streq) Removed.
5241         [__GNUC__] (inline function ds_putchar) New function.
5242         [__GNUC__] (inline function ds_length) New function.
5243         [__GNUC__] (inline function ds_value) New function.
5244         [__GNUC__] (inline function ds_end) New function.
5245
5246         * sysfile-info.c: (cmd_sysfile_info) Rephrased.
5247         (display_vectors) Fix missing i18n.
5248
5249         * t-test.q: Migrate to new q2c.
5250
5251         * tab.c: Migrate from arenas to pools.
5252         (tab_create) Use struct len_string.
5253         (tab_realloc) Ditto.
5254         (text_format) Ditto.
5255         (tab_joint_text) Ditto.
5256         (tab_natural_width) Remove rich text support.
5257         (tab_natural_height) Ditto.
5258         (tab_output_text) Handle TAT_FIX.
5259         (tab_raw) Change arg from a_string to len_string.
5260         (tabi_driver) Fix assertion.  Use struct len_string.
5261         (render_strip) Use struct len_string.  Remove rich text support.
5262         Add `const' qualifiers.
5263
5264         * tab.h: (enum TAB_RICH) Remove.
5265         (enums TAB_COL_NONE, TAB_COL_DONE) New.  Where appropriate,
5266         SOM_COL_* updated to read TAB_COL_*.
5267         (struct tab_table) Change arena to pool.  Change a_string to
5268         len_string.
5269
5270         * temporary.c: (restore_dictionary) Rewrite Checker code.
5271
5272         * var.h: (macros MAX_SHORT_STRING, MIN_LONG_STRING, SYSMIS,
5273         LOWEST, HIGHEST) Moved here from common.h.
5274         (typedef any_trns) Removed.  All references changed to `struct
5275         trns_header'.
5276
5277         * vars-atr.c: (force_create_variable) Fix assertion.
5278         (force_dup_variable) Fix assertion.
5279         
5280 Thu Jun  3 18:40:42 1999  Ben Pfaff  <blp@gnu.org>
5281
5282         Using alphanumeric variables in functions under AGGREGATE
5283         segfaulted.  Fixed.  Thanks to Dr. Dirk Melcher
5284         <BZN-mdksh@t-online.de> for reporting this bug.
5285         
5286         * aggregate.c: (parse_aggregate_functions) When setting the
5287         FSTRING bit, also allocate memory for the `string' member of
5288         agr_next.
5289         (free_aggregate_functions) Free iter->string.  Don't use the
5290         non-function bits when indexing the array of functions.
5291         [DEBUGGING] (debug_print) Don't use the non-function bits when
5292         indexing the array of functions.        
5293
5294 Sun May 30 00:00:54 1999  Ben Pfaff  <blp@gnu.org>
5295
5296         Under certain circumstances, the final case would be omitted from
5297         the results of an AGGREGATE operation.  Fixed.  Thanks to Dr. Dirk
5298         Melcher <BZN-mdksh@t-online.de> for reporting this bug.
5299         
5300         * aggregate.c (agr_00x_end_func): Increment number of cases in
5301         sink before writing case.  For streams that keep track of how many
5302         cases there are based on this value, this means that the last case
5303         will be read in on the next stream read.
5304
5305 Sat May 29 22:03:31 1999  Ben Pfaff  <blp@gnu.org>
5306
5307         Undefined behavior was invoked by referencing a freed pointer.
5308         
5309         * vfm.c (memory_stream_write): Free pointer *after* checking for
5310         non-null status.
5311
5312 Sat May 29 22:02:22 1999  Ben Pfaff  <blp@gnu.org>
5313
5314         A wrong record size was displayed when paging the active file to
5315         disk.
5316         
5317         * vfm.c: (memory_stream_write) Fix off-by-one error.
5318
5319 Sat May 29 21:50:26 1999  Ben Pfaff  <blp@gnu.org>
5320
5321         Not having enough temporary space for sorting caused a core dump.
5322         Fixed.
5323         
5324         * sort.c: (allocate_cases) Initialize i.
5325
5326 Sat May 29 21:40:54 1999  Ben Pfaff  <blp@gnu.org>
5327
5328         Syntax errors in function descriptions on AGGREGATE caused core
5329         dumps.  Fixed.
5330         
5331         * aggregate.c (cmd_aggregate): Don't free agr_dict after calling
5332         free_aggregate_functions(), since that function already frees
5333         agr_dict.
5334         
5335 Sat May 29 21:06:10 1999  Ben Pfaff  <blp@gnu.org>
5336
5337         A null pointer was dereferenced, causing a core dump, when
5338         PERCENTILES was specified on FREQUENCIES.  This fixes the problem,
5339         but PSPP still doesn't calculate percentiles.  Thanks to Regnor
5340         Jernsletten <rjernsle@eunet.no> for reporting this problem.
5341         
5342         * arena.c: (arena_malloc) If the arena hasn't been initialized
5343         already, initialize it.
5344
5345 Sat May 29 20:47:29 1999  Ben Pfaff  <blp@gnu.org>
5346
5347         * Makefile.cygwin: New file supplied by Hankin <hankin@dunno.com>
5348         for compilation with Cygnus Windows B20.  Not used by other
5349         systems.
5350
5351 Sat May 29 20:36:04 1999  Ben Pfaff  <blp@gnu.org>
5352
5353         SORT always sorted in ascending order.  Fixed.  Thanks to Dr. Dirk
5354         Melcher <BZN-mdksh@t-online.de> for reporting this bug.
5355
5356         * sort.c: (compare_case_lists) Reverse sense of comparison if
5357         sorting in descending order.
5358         (compare_record) Ditto.
5359
5360 Tue Mar  9 13:18:54 1999  Ben Pfaff  <blp@gnu.org>
5361
5362         SPLIT FILE with a string variable caused a core dump.  Fixed.
5363
5364         * vfm.c: If the variable is a string then make a temporary value
5365         struct pointing to it.  The underlying problem is a lot bigger
5366         than this (see TODO) but this is a stopgap for the simple case at
5367         least.
5368         
5369 Tue Mar  9 13:15:53 1999  Ben Pfaff  <blp@gnu.org>
5370
5371         Nested INCLUDEs didn't work.  Fixed.
5372
5373         * getline.c: (getl_include) Set first_line to NULL in allocated
5374         structure.
5375
5376 Tue Mar  9 13:13:46 1999  Ben Pfaff  <blp@gnu.org>
5377
5378         The MATCH FILES procedure set the values of variables not present
5379         to 0.  It should have been SYSMIS.  This is now fixed.
5380
5381         * get.c: (mtf_delete_file_in_place) Replace 0.0 by SYSMIS.
5382
5383 Tue Mar  9 12:52:23 1999  Ben Pfaff  <blp@gnu.org>
5384
5385         The REMARK command was too aggressive about skipping lines.  It
5386         didn't like being the last command in a file.
5387
5388         * command.c: (cmd_remark) Call get_entire_line() instead of
5389         get_line().
5390
5391 Tue Mar  9 12:48:05 1999  Ben Pfaff  <blp@gnu.org>
5392
5393         Comment parsing wasn't consistent with the rest of the code in its
5394         idea of where one command ends and another starts.  This meant
5395         that sometimes commands would be mysteriously ignored.  Thanks to
5396         Dr. Dirk Melcher <BZN-mdksh@t-online.de> for reporting this bug.
5397          
5398         * command.c: (parse_cmd) Hand off comment parsing to new function
5399         skip_comment() in lexer.c.
5400         * lexer.c: (skip_comment) New function.
5401
5402 Wed Jan 20 20:22:07 1999  Ben Pfaff  <blp@gnu.org>
5403
5404         The TABLE subcommand on MATCH FILES worked only erratically at
5405         best.  This fixes it.  Thanks to Dr. Dirk Melcher
5406         <BZN-mdksh@t-online.de> for reporting this bug.
5407
5408         * get.c: (mtf_compare_BY_values) When comparing string values, a
5409         difference of 1 is still a difference :-)
5410         (mtf_processing) Inverted TABLE reading logic fixed.  Also don't
5411         advance TABLE files automatically when matched.  Comment fixes.
5412
5413 Tue Jan 19 22:32:31 1999  Ben Pfaff  <blp@gnu.org>
5414
5415         VARIABLE LABELS rejected a slash before the first variable
5416         specification, contradicting the documentation.  Thanks to Walter
5417         M. Gray <graywm@northernc.on.ca> for reporting this bug.
5418
5419         * var-labs.c: (cmd_variable_labels) Ignore a leading slash in
5420         command specification.
5421
5422 Tue Jan 19 22:29:54 1999  Ben Pfaff  <blp@gnu.org>
5423
5424         Because of an incorrect optimization in memory allocation,
5425         CROSSTABS sometimes segfaulted when asked to output multiple
5426         tables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
5427         reporting this bug.
5428
5429         * crosstabs.q: (postcalc) New variables maxcols, maxcells, which
5430         are passed to output_pivot_table() for its use.
5431         (output_pivot_table) Instead of assuming the number of columns is
5432         constant, keep track with maxcols.  In general mode, use maxcells
5433         to determine whether more matrix cells need to be allocated.    
5434
5435 Tue Jan 19 22:27:46 1999  Ben Pfaff  <blp@gnu.org>
5436
5437         CROSSTABS didn't display value labels for column and row
5438         variables.  Thanks to Walter M. Gray <graywm@northernc.on.ca> for
5439         reporting this bug.
5440
5441         * crosstabs.q: (table_value_missing) If the specified value has a
5442         value label for this variable, then show it instead of the raw
5443         value.
5444         (display_dimensions) Delegate display of value_labels to
5445         table_value_missing.
5446
5447 Mon Jan 18 20:04:06 1999  Ben Pfaff  <blp@gnu.org>
5448
5449         WRITE didn't write line ends.  Fixed.  Thanks to Dr. Dirk Melcher
5450         <BZN-mdksh@t-online.de> for reporting this bug.
5451
5452         * print.c: (print_trns_proc) Write (CR/)LF if PRINT is used _or_
5453         if the file isn't declared as binary.
5454
5455 Mon Jan 18 19:56:45 1999  Ben Pfaff  <blp@gnu.org>
5456
5457         MATCH FILES corrupted memory and dumped core on some syntax
5458         errors.  Fixed.
5459
5460         * get.c: (cmd_match_files) Set file->handle to NULL before
5461         jumping to lossage.
5462         (mtf_free_file) Don't free a null dictionary.   
5463
5464 Mon Jan 18 19:27:57 1999  Ben Pfaff  <blp@gnu.org>
5465
5466         MATCH FILES should set numeric values not available to the
5467         system-missing value, not to 0.  Thanks to Dr. Dirk Melcher
5468         <BZN-mdksh@t-online.de> for reporting this bug.
5469
5470         * get.c: (mtf_processing) Set unused records to system-missing,
5471         not 0.
5472
5473 Mon Jan 18 15:06:46 1999  Ben Pfaff  <blp@gnu.org>
5474
5475         KEEP didn't work properly on the SAVE procedure.  Fixed.  Thanks
5476         to Ralf Geschke <ralf@kuerbis.org> for reporting this bug.
5477
5478         * temporary.c: (save_dictionary) Initialize var_by_name AVL tree
5479         in newly created dictionary, and add each copied variable to the
5480         tree.
5481  
5482 Mon Jan 18 15:04:48 1999  Ben Pfaff  <blp@gnu.org>
5483
5484         Memory leak fix.
5485         
5486         * get.c: (trim_dictionary) Free variable list for KEEP after
5487         finishing with it.
5488
5489 Mon Jan 18 12:57:36 1999  Ben Pfaff  <blp@gnu.org>
5490
5491         Some systems didn't like the way open_file was coded.  Thanks to
5492         Hankin <hankin@rogue.consultco.com> for pointing this out.
5493
5494         * filename.c: (open_file) Don't try to store stdin, stdout,
5495         stderr as part of an array, because that doesn't always work.
5496
5497 Mon Jan 18 12:53:27 1999  Ben Pfaff  <blp@gnu.org>
5498
5499         The SAVE procedure didn't save long string variables properly.
5500         Fixed by this patch.  Thanks to Hankin
5501         <hankin@rogue.consultco.com> for this patch.
5502         
5503         * sfm-write.c: (write_variable) Fix off-by-one error in writing
5504         out variable pad records.
5505
5506 Tue Jan  5 14:29:27 1999  Ben Pfaff  <blp@gnu.org>
5507
5508         Previously, if PRINT SPACE were given a negative argument, it
5509         would report an error, then spin in an (almost) infinite loop.
5510         This fixes that behavior.
5511
5512         * print.c: (print_space_trns_proc) After reporting a negative
5513         argument, set number of lines to print to 1.
5514
5515 Tue Jan  5 13:59:55 1999  Ben Pfaff  <blp@gnu.org>
5516
5517         SPSS 8.0 outputs some new record types in its system files, and it
5518         allows longer value labels.  Accept these system files.
5519
5520         * sfm-read.c: (sfm_read_dictionary) Ignore record type 7 subtype
5521         11 emitted by SPSS 8.0.
5522         
5523 Tue Jan  5 13:55:50 1999  Ben Pfaff  <blp@gnu.org>
5524
5525         The LIST procedure was too conservative in allocating space for
5526         buffers, which caused a bug that only showed up with very long
5527         output variables.  Thanks to Hankin <hankin@dunno.com> for this
5528         bug report.
5529
5530         * list.q: (determine_layout) Allocate 1022 bytes instead of 256.
5531
5532 Tue Jan  5 13:34:34 1999  Ben Pfaff  <blp@gnu.org>
5533
5534         Typo meant string format specifiers weren't checked properly.  I
5535         think that Hankin <hankin@dunno.com> sent me this report, but I'm
5536         willing to be corrected on this point.
5537  
5538         * format.c: (check_string_specifier) Fix obvious typo.  
5539
5540 Tue Jan  5 12:50:42 1999  Ben Pfaff  <blp@gnu.org>
5541
5542         Using $CASENUM in an expression didn't work.  Here's a fix.
5543         Thanks to Dirk Melcher <BZN-mdksh@t-online.de> for reporting this
5544         bug.
5545          
5546         * expr-evl.c: (evaluate_expression) Add OP_CASENUM case.
5547
5548         * expr-opt.c: (dump_node) OP_CASENUM is acceptable.
5549
5550 Tue Jan  5 12:47:48 1999  Ben Pfaff  <blp@gnu.org>
5551
5552         The changes in 0.2.1 to fix DATA LIST FREE parsing broke some
5553         other behavior, *sigh*.  This patch hopefully fixes that.  This
5554         time I've actually tested it.
5555
5556         Thanks to Hankin <hankin@dunno.com> for reporting this bug.
5557
5558         * data-list.c: (read_from_data_list_free,
5559         read_from_data_list_list) Call parse_string_as_format() directly
5560         without mucking around with the field width.
5561
5562 Tue Jan  5 12:31:19 1999  Ben Pfaff  <blp@gnu.org>
5563
5564         Occasionally, you may encounter a script that wants to be
5565         interpreted in interactive mode.  Make -i emulate this behavior to
5566         allow such scripts to be executed with PSPP.
5567
5568         Thanks to Hankin <hankin@dunno.com> for reporting this behavior.
5569
5570         * cmdline.c: (pre_syntax_message[]) Update -i description.
5571
5572         * lexer.c: (preprocess_line) When getl_interactive is 2 (i.e.,
5573         when -i is given on the command line) don't treat unindented lines
5574         as starting a new command.
5575
5576 Tue Jan  5 12:30:10 1999  Ben Pfaff  <blp@gnu.org>
5577
5578         In conjunction with egcs 1.1.1, Checker emits some bogus warnings,
5579         mostly caused by local initialized aggregates.  After egcs is
5580         fixed upstream these can be removed, but for now they're not a big
5581         deal.
5582         
5583         * ascii.c: (ascii_postopen_driver) Checker chokes on local
5584         initialized arrays.  Avoid this.
5585
5586         * sfm-write.c: (sfm_write_dictionary) Don't use a local
5587         initialized struct.
5588
5589 Tue Jan  5 12:07:24 1999  Ben Pfaff  <blp@gnu.org>
5590
5591         egcs 1.1.1 has some new warnings relative to gcc 2.8.1, which the
5592         following changes avoid.  Currently I compile sources with egcs
5593         1.1.1 and gcc 2.7.2.3 before sending them out.
5594
5595         * apply-dict.c: (apply_dict) Use new avl_traverser_init() macro.
5596         
5597         * ascii.c: (option_tab[]) Initialize all struct members.
5598
5599         * avl.h: (avl_traverser_init) New macro.
5600         
5601         * command.c: (DEFCMD, UNIMPL macros, cmd_table[]) Initialize all
5602         struct members.
5603
5604         * crosstabs.q: (enum_var_values) Use new hsh_iterator_init()
5605         macro.
5606
5607         * hash.c: Comment fix.
5608
5609         * hash.h: (hsh_iterator_init) New macro.
5610
5611         * html.c: (option_tab[]) Initialize all struct members.
5612
5613         * pfm-write.c: (write_value_labels) Use new avl_traverser_init()
5614         macro.
5615
5616         * postscript.c: (option_tab[]) Initialize all struct members.
5617         (output_encodings, preclose, dump_lines) Use new
5618         hsh_iterator_init() macro.
5619
5620         * sfm-write.c: (write_value_labels) Use new avl_traverser_init()
5621         macro.
5622
5623         * sysfile-info.c: (describe_variable) Use new avl_traverser_init()
5624         macro.
5625
5626 Thu Nov 19 12:32:45 1998  Ben Pfaff  <blp@gnu.org>
5627
5628         * data-in.c: Examined each of the parsing functions to make sure
5629         that they wouldn't dump core if they were passed a string of the
5630         wrong length, since now the DATA LIST FREE/LIST routines don't
5631         check for field width before passing it to the data parser.
5632         (parse_RBHEX, parse_AHEX) Reject odd length input.
5633         (parse_string_as_format) Reject input that's too short or too
5634         long.
5635
5636         * data-list.c: Before, the DATA LIST FREE/LIST routines would pad
5637         a field to its entire declared output width then pass it to the
5638         data-in parsing routines.  This contradicted the documented
5639         behavior.  This is fixed in these changes.  Thanks to Mark H. Wood
5640         <mwood@IUPUI.Edu>.  In addition, this fixes a few more details of
5641         free-format parsing that differed from SPSS.
5642         (cut_field) Commas and spaces are treated identically.  Returns
5643         the proper column instead of a fixed 1 value.
5644         (parse_field) Removed.
5645         (read_from_data_list_free, read_from_data_list_list) Call
5646         parse_string_as_format directly instead of parse_field.
5647
5648         * heap.c: (heap_delete) Stylistic fixes.
5649
5650 Sun Aug  9 11:12:13 1998  Ben Pfaff  <blp@gnu.org>
5651
5652         * loop.c: (loop_2_trns_proc) Formatting fix.
5653
5654         * sel-if.c: (cmd_filter) Set FILTER_before_TEMPORARY.
5655
5656         * var.h: (glob var FILTER_before_TEMPORARY) New global var.
5657
5658         * vfm.c: (macro FILTERED) New.
5659         (static var filter_var) New.
5660         (process_active_file_write_case) Use FILTERED.
5661         (setup_filter) Set filter_var.
5662         (close_active_file) Delete the filter if not
5663         FILTER_before_TEMPORARY.
5664         (procedure_write_case) Use FILTERED.
5665
5666 Sat Aug  8 00:20:14 1998  Ben Pfaff  <blp@gnu.org>
5667
5668         * crosstabs.q: Changed /PIVOT={ON,OFF} to /FORMAT={PIVOT,NOPIVOT}.
5669
5670         * data-in.c: (parse_day_count) Message fix.
5671         (parse_month) Style fix.
5672
5673         * data-list.c: (struct data_list_pgm) New member eof.
5674         (cmd_data_list) Init eof to 0.
5675         (do_reading) Implement the /END subcommand and read-past-eof
5676         checking.
5677
5678         * do-if.c: Include stdio.h when debugging.
5679         (cmd_else_if) Make sure the command is .-terminated.
5680
5681         * glob.c: (init_glob) Capitalize the command prompt.
5682
5683         * inpt-pgm.c: (end_case_trns_proc) Debugging message.
5684         (end_file_trns_proc) Debugging message.
5685
5686         * loop.c: (internal_cmd_loop) Make it work when there's no loop
5687         index!
5688         (loop_2_trns_proc) Enable MXLOOPS (why was this disabled?)
5689
5690         * main.c: (dump_token) Make kwtab[] const.
5691
5692         * set.q: Spelling, comment fixes.
5693
5694         * sysfile-info.c: (cmd_display) DISPLAY VECTORS not DISPLAY
5695         VECTOR.
5696
5697         * vars-prs.c: (fill_all_vars) Style fix.
5698
5699         * vfm.c: (index_to_varname) Return const.
5700
5701 Tue Aug  4 23:49:23 1998  Ben Pfaff  <blp@gnu.org>
5702
5703         * Changes in many source files for partial -ansi -pedantic and
5704         no-debugging compliance: Remove trailing common in enum
5705         declarations; add `unused' attributes; insert some appropriate
5706         casts.
5707
5708         * cmdline.c: (parse_command_line) Add new --testing-mode flag.
5709
5710         * command.c: (shell) Make static.
5711         (run_command) Make static.
5712
5713         * data-list.c: (dump_fixed_table) Remove use of local_strdup().
5714
5715         * dfm.c: (cmd_begin_data) I18n fix.
5716
5717         * error.c: (verbose_msg) Define if __STRICT_ANSI__.
5718
5719         * error.h: (macro verbose_msg) Define if __STRICT_ANSI__.
5720
5721         * expr-opt.c: (evaluate_tree) Don't initialize local arrays if
5722         __STRICT_ANSI__.
5723
5724         * file-handle.q: Don't prepend the source file directory name to
5725         the data file name.  (Ongoing issue.)
5726         (prepend_current_directory) Comment out.
5727         (internal_cmd_file_handle) Don't call prepend_current_directory().
5728         (fh_get_handle_by_filename) Ditto.
5729
5730         * filename.c: Append zero byte to readlink() return value.
5731
5732         * getline.c: (getl_read_line) I18n fix.
5733
5734         * lexer.h: Don't use gcc features if __STRICT_ANSI__.
5735
5736         * misc.h: Don't use gcc features if __STRICT_ANSI__.
5737
5738         * pfm-write.c: (bufwrite) Don't try to increment a void * pointer
5739         directly.
5740
5741         * postscript.c: (output_encodings) Don't use local_strdup().
5742         (postopen) Ditto.
5743
5744         * print.c: Don't use gcc features if __STRICT_ANSI__.
5745
5746         * q2c.c: (dump_vars) Don't put a , at the end of the last enum.
5747
5748         * recode.c: (parse_src_spec) Fully brace nested if's.
5749
5750         * set.q: (global var set_testing_mode) New var.
5751
5752 Wed Jul 29 22:01:44 1998  Ben Pfaff  <blp@gnu.org>
5753
5754         * ascii.c: Add some more `unused' attributes that only come into
5755         play when NDEBUG is defined.
5756         (ascii_close_page) Set s_len when reallocating s.
5757         
5758         * crosstabs.q: (delete_missing) New function.
5759         (output_pivot_table) Call delete_missing() if /MISSING=REPORT.
5760         (make_summary_table) Create summary table reallocable.
5761
5762         * postscript.c: Add more `unused' attributes as above.
5763
5764         * tab.c: (tab_create) [GLOBAL_DEBUGGING] Set reallocable member.
5765         (tab_realloc) [GLOBAL_DEBUGGING] Assert that table is reallocable.
5766          
5767         * tab.h: (struct tab_table) [GLOBAL_DEBUGGING] New `reallocable'
5768         member.
5769
5770         * var.h: (macro force_dup_variable) [!GLOBAL_DEBUGGING] Remove
5771         gratuitous space between parameter definition.
5772
5773         * vars-atr.c: Changed some assert(0)'s to abort()'s to prevent
5774         complaints about running off the end of functions with NDEBUG
5775         enabled.
5776
5777 Sun Jul  5 00:17:25 1998  Ben Pfaff  <blp@gnu.org>
5778
5779         * Several source files: Removed some PORTME notes when reflection
5780         revealed that ANSI forbids that sort of breakage.  Also, added
5781         lots of `unused' qualifiers here and there.
5782
5783         * aggregate.c: (accumulate_aggregate_info) Remove local var
5784         weighting that turned out not to be used.
5785
5786         * avl.c: Update to version 1.1.0.  Add unused specifier.
5787         (avl_destroy) Initialize ab to 0.  Comment fixes.  Cast return
5788         value to void *.
5789         (avl_probe) Replace some instances of 1 with +1 where appropriate.
5790         (avl_find) Cast return value to void *.
5791         (avl_delete) q doesn't need to be initialized at the beginning of
5792         the function.  Replace some instances of 1 with +1.
5793         (force_avl_delete) Renamed avl_force_delete, all references changed.
5794         (compare_ints) `param' marked unused.
5795         (print_int) `param' marked unused.
5796         (recurse_tree) Replace some instances of 1 with +1.
5797
5798         * avl.h: Update to version 1.1.0.  Only declares avl function
5799         types if not already declared.
5800         (AVL_MAX_HEIGHT) Only define if not already defined.
5801         (struct avl_node) New unused member char pad[2].
5802         [GLOBAL_DEBUGGING] Change conditionalization to NDEBUG instead.
5803         (force_avl_insert) Renamed avl_force_insert.
5804         (force_avl_delete) Renamed avl_force_delete.
5805
5806         * crosstabs.q: (struct table_entry) Put `freq' into a union with
5807         new member `data'.
5808         (struct crosstab) Add new member `ofs'.
5809         (glob var int_tab) Removed.
5810         (custom_tables) In integer mode, assign v[i] properly through the
5811         indirect var_dict.
5812         (custom_variables) Now p.crs.max == max + 1.
5813         [DEBUGGING] (debug_print) p.crs.min and p.crs.max are now ints.
5814         (precalc) Implement integer mode.
5815         (calc_integer) Implement integer mode.
5816         (compare_table_entry) Remove unused local variable `comparing'.
5817         (make_summary_table) Implement integer mode.
5818         (macro ns_rows) Implemented as static variable now.
5819         (several variables) Made static, from global.
5820         (output_pivot_table) Use table_value_missing() for column heads.
5821         Remove several unused local variables.  Implement integer mode
5822         table summing.  Count up ns_rows.
5823         (crosstabs_dim) Make columns wider when /MISSING=REPORT requested.
5824         (find_pivot_extent) Moved into find_pivot_extent_general; now just
5825         calls that function or find_pivot_extent_integer.
5826         (find_pivot_extent_integer) New function.
5827         (enum_var_values) Implemented for integer mode.
5828         (table_value_missing) New function.
5829         (display_dimensions) Call table_value_missing() for heads.
5830         (float_M_suffix) New function.
5831         (display_crosstabulation) Call table_value_missing() for row
5832         heads.  Handle missing values in /MISSING=REPORT mode.
5833         (calc_fisher) Remove unused var N.
5834         (calc_r) Remove unused var fact.
5835
5836         * data-list.c: (dump_fixed_table) Fix table dimensioning.
5837         (read_one_set_of_repetitions) Remove unused vars var_spec, column.
5838
5839         * data-out.c: (insert_commas) Remove unused var cp.
5840         (convert_CCx) Remove unused vars save_set_decimal,
5841         save_set_grouping.
5842
5843         * descript.q: (dump_z_table) Fix table dimensioning.
5844         (pre_calc) Remove unused var j.
5845         (display) Remove unused vars title, s.  Fix table dimensioning.
5846
5847         * expr-evl.c: Comment fixes.
5848
5849         * frequencies.q: (full_dim) New function.
5850         (dump_full) Fix table dimensioning.
5851         (condensed_dim) New function.
5852         (dump_condensed) Fix table dimensioning.
5853
5854         * get.c: (cmd_match_files) Remove unused var n_val.  Remove unused
5855         label winnage.
5856
5857         * html.c: (html_close_drive) Remove unused var i.
5858         (postopen) Remove unused vars title, curfn_len, cp.
5859         (preclose) Remove unused vars this, x.
5860
5861         * lexer.c: Comment fixes.
5862
5863         * matrix-data.c: (cmd_matrix_data) Remove unused var index.
5864
5865         * means.q: (custom_tables) Remove unused var m_dim.
5866
5867         * mis-val.c: Format fix.
5868
5869         * modify-vars.c: (cmd_modify_vars) Remove unused var new_dict.
5870
5871         * output.c: (outp_get_paper_size) Remove unused var cp.
5872
5873         * pfm-read.c: (read_float) Remove unused var save, unused label
5874         underflow.
5875         (read_variables) Remove unused vars cp, j.
5876         (read_value_label) Remove unused var j.
5877
5878         * pfm-write.c: (bufwrite) Remove unused var i.
5879
5880         * postscript.c: (ps_postopen_drive) Remove unused vars dev_info,
5881         fn.
5882         (output_encodings) Remove unused vars char_cp, n_output.
5883         (read_ps_encodings) Remove unused var ep.
5884         (postopen) Remove unused var title.
5885         (preclose) Remove unused var fp.
5886         (ps_open_page) Remove unused vars true, false, orientation,
5887         mirror_horz, mirror_vert, width, length.
5888         (ps_text_metrics) Remove unused var x.
5889
5890         * q2c.c: (find_symbol) Remove unused var y.
5891         (parse_setting) Remove unused parameter sbc, all references
5892         changed.
5893         (dump_parser) Remove unused var cp.
5894         (dump_free) Remove unused var i.
5895
5896         * set.q: (static vars args, n) Removed.
5897         (internal_cmd_gset) Removed.
5898
5899         * sfm-read.c: (sfm_read_dictionary) Removed unused var i.
5900         (read_machine_flt64_info) Removed unused var file_endian.
5901         (read_documents) Removed unused var i.
5902         (read_compressed_data) Removed unused parameter dict, all
5903         references changed.
5904
5905         * sfm-write.c: (bufwrite) Removed unused var i.
5906         (sfm_write_case) Removed unused var i.
5907
5908         * sort.c: (merge_once) Remove unused var t.
5909         (write_separate) #if 0 out as dead code.
5910
5911         * split-file.c: (cmd_split_file) Remove unused var i.
5912
5913         * sysfile-info.c: (sysfile_info_dim) New function.
5914         (cmd_sysfile_info) Fix table dimensioning.
5915         (variables_dim) New function.
5916         (display_variables) Fix table dimensioning.
5917         (describe_variable) Remove unused var prev_r.
5918
5919         * t-test.q: (z_postcalc) Removed.
5920         (pairs_calc) Remove unused var bad_weight.
5921         (postcalc) Remove unused vars dfn, dfd.
5922
5923         * tab.c: (tab_create) Set t->dim to NULL.
5924         (tab_dim) Make sure t->dim is NULL first.
5925         (tab_natural_width) Remove parameter `clamp'.
5926         (tab_value) Remove duplicate assertion for table.
5927         (tab_raw) New function.
5928         (nowrap_dim) New function.
5929         (wrap_dim) New function.
5930         (tab_output_text) Fix table dimensioning.
5931
5932         * tab.h: (tab_raw) New macro.
5933
5934         * val-labs.c: (get_label) Remove unused var type.
5935         (copy_value_labels) Remove unused var trav.
5936
5937         * var.h: (struct crosstab_proc) Completely changed.
5938
5939         * vars-prs.c: (parse_dict_variable) Remove unused var v.
5940
5941         * vfm.c: (open_active_file) Remove unused vars i, lp.
5942
5943         * weight.c: (weight_trns_proc) #if 0 out as dead code.
5944         
5945 Tue Jun  2 23:37:21 1998  Ben Pfaff  <blp@gnu.org>
5946
5947         * Makefile.am: Add apply-dict.c, flip.c.
5948
5949         * apply-dict.c: New file.
5950         
5951         * command.c: (struct command) Make cmd[] larger for CLEAR
5952         TRANSFORMATIONS command name.
5953         (parse_cmd) Make sure we're in a valid state before using it as an
5954         index.  Discard variables and reset state on invalid transitions.
5955         (cmd_clear_transformations) New function.
5956
5957         * command.def: Add APPLY DICTIONARY, CLEAR TRANSFORMATIONS, FLIP.
5958         Add unimplemented PRESERVE, RESTORE.
5959
5960         * file-handle.h: Include stddef.h.
5961
5962         * flip.c: New file.
5963         
5964         * pfm-read.c: (parse_value) Pad value label values with spaces,
5965         not nulls.
5966
5967         * sfm-read.c: (struct sfm_fhuser_ext) Add reference count.
5968         (sfm_close) Decrement reference count, make sure it's zero.
5969         (sfm_maybe_close) New function.
5970         (sfm_read_dictionary) Handle reference counts.
5971
5972         * vars-atr.c: (clear_default_dict) New function.
5973         (discard_variables) Use clear_default_dict().
5974
5975 Sun May 31 00:58:05 1998  Ben Pfaff  <blp@gnu.org>
5976
5977         * Makefile.am: Add pfm-write.c.
5978         (LDADD) Add the libgmp2 libraries.
5979
5980         * command.def: Define EXPORT.
5981
5982         * get.c: (cmd_export) New function.
5983         (export_write_case_func) New function.
5984
5985         * pfm-read.c: (static spss2ascii[]) Make it const.
5986
5987         * pfm-write.c: New file.
5988
5989         * sfm-write.c: Formatting, comment fixes.
5990
5991         * var.h: Comment fix.
5992
5993 Fri May 29 21:44:12 1998  Ben Pfaff  <blp@gnu.org>
5994
5995         * Makefile.am: Add pfm.h, pfm-read.c.
5996
5997         * command.def: IMPORT is now implemented.
5998
5999         * format.c: (glob var translate_fmt[]) New var.
6000
6001         * get.c: (enum GTSV_NONE) Renamed GTSV_OPT_NONE.
6002         (cmd_import) New function.
6003         (import_source_read) New function.
6004         (glob var import_source) New var.
6005
6006         * pfm-read.c: New file.
6007
6008         * pfm.h: New file.
6009         
6010         * sfm-read.c: (parse_format_spec) Local variable translate_fmt[]
6011         moved in format.c.
6012         (dump_dictionary) Disabled printing a couple of items.
6013
6014 Mon May 25 12:42:37 1998  Ben Pfaff  <blp@gnu.org>
6015
6016         * crosstabs.q: (postcalc) Call make_summary_table().
6017         (make_summary_table) New function.
6018         (insert_summary) New function.
6019         (display_dimensions) Remove some unnecessary arguments, all
6020         references changed.
6021         (output_pivot_table) Fix lots of problems with the risk table
6022         setup.
6023         (submit) Don't display an empty table.
6024         (display_risk) Fix order of arguments to calc_risk().
6025
6026         * glob.c: Always include assert.h and stdlib.h.
6027
6028         * output.h: (enum OUTP_T_JUST_FULL) Removed, all references
6029         removed.
6030
6031         * tab.c: (tab_create) Cosmetic changes.
6032
6033         * tab.h: (enum TAB_JUSTIFY) Removed, all references removed.
6034
6035 Sun May 24 22:39:23 1998  Ben Pfaff  <blp@gnu.org>
6036
6037         * tab.def: Removed.
6038
6039         * crosstabs.q: (output_pivot_table) Headers drawing and submission
6040         code simplified, moved into new function submit().
6041         (submit) New function.
6042         (crosstabs_dim) New function.
6043         (display_directional) Substitute variable names for %s where
6044         appropriate.
6045         (somers_d_v[], somers_d_ase[], somers_d_t[]) New static vars.
6046         (calc_symmetric) Initialize parameters only if non-NULL.
6047         Calculate Somers' d.
6048         (calc_directional) Calculate Somers' d (or copy it, really).
6049         Calculate eta.
6050
6051         * output.c: (outp_string_width) New function.
6052
6053         * postscript.c: (postopen) Calculate font widths based on the
6054         width of the zero '0' character, not the width of the space
6055         character.  Set paper-width and paper-length based on points, not
6056         device units.
6057         (ps_open_page) Fix page setup string for landscape mode.
6058
6059         * som.h: (struct som_dimension) Removed.
6060         (struct som_table_class) height, width members take int * not
6061         som_dimesion * now.
6062
6063         * tab.c: Many functions now have added parameter validation.
6064         (tab_height, tab_width) These functions were removed and merged
6065         into a single function tab_resize(), and all references changed.
6066         (tab_dim) Rewritten since the interface changed; reduced from
6067         hundreds of lines to two.  All callers were changed.  Currently
6068         most of them just use tab_natural_dimensions as their callback and
6069         await detailed translation of functionality.
6070         (tab_natural_width) New function.
6071         (tab_natural_height) New function.
6072         (tab_natural_dimensions) New function.  This is a callback
6073         function, not something that you'd want to call directly.
6074         (tab_nat_dim) Removed.
6075         (tabi_table) Allocates t->w and t->h.
6076         (tabi_driver) Inlined sum_columns()'s functionality.  Calls the
6077         dimensions callback.
6078         (evaluate_dimensions) Removed.
6079         (sum_columns) Removed.
6080
6081         * tab.h: (enum TAL_1THIN) Removed.
6082         (enum series t_*) Removed.
6083         (struct tab_table) Members trh, trv changed to unsigned char *
6084         from int *.  Member dim changed to a function pointer from a
6085         unsigned char *.  Member max_stack_height removed.  New members
6086         hr_tot, vr_tot.
6087         (macros tab_l, tab_r, tab_t, tab_b) New.
6088
6089 Sat May 23 23:22:13 1998  Ben Pfaff  <blp@gnu.org>
6090
6091         * ascii.c: (delineate) Assign last_space_nchars before skipping
6092         spaces, to fix right justification.
6093
6094         * crosstabs.q: (static vars risk, direct) New vars.
6095         (static var pearson_r) Removed.
6096         (glob var chisq_fisher) Made static.
6097         (static vars row_tot[], col_tot[]) Don't include grand total
6098         anymore.
6099         (static var grand_total) Renamed W, all references changed.
6100         (output_pivot_table) Only make `table' if num_cells != 0.  Make
6101         risk and directional tables.  Deal with grand total no longer part
6102         of col_tot[].  Free rows and cols after we're done with them.
6103         (display_risk) New function.
6104         (display_directional) New function.
6105         (clac_r) Rewritten so that it stores all its results into its
6106         arguments, so it can be used for Spearman's correlation too.
6107         (calc_symmetric) Added a t[] argument, all references changed.
6108         Calculates ASEs for tau-b, tau-c, gamma.  Calculates Spearman's r,
6109         Pearson's r, Cohen's kappa.
6110         (calc_risk) New function.
6111         (calc_directional) New function.
6112
6113         * som.c: (som_submit) Improved debugging code.
6114
6115         * stats.c: (hypercube) New function.
6116         (cube) New function.
6117         (sqr) New function.
6118         (normal_sig) Went back to old implementation, which actually
6119         worked.
6120
6121         * stats.h: (macros square, cube, hypercube) Removed.  The
6122         equivalent functions in stats.c are inlined here; all references
6123         to square changed to sqr.
6124
6125 Fri May 22 00:03:41 1998  Ben Pfaff  <blp@gnu.org>
6126
6127         * crosstabs.q: (N_SYMMETRIC) New define.
6128         (postcalc) Disable debug printing.
6129         (static vars chisq_fisher, pearson_r) New.
6130         (output_pivot_table) Add support for symmetric measures.  Add
6131         chi-square output of exact sigs.
6132         (display_chisq) Rewritten.
6133         (display_symmetric) New function.
6134         (gamma_int) New function.
6135         (Pr) New function.
6136         (swap) New function.
6137         (calc_fisher) New function.
6138         (calc_chisq) Check boundary conditions better. Calculate Yates,
6139         Fisher, Mantel-Haenszel tests.
6140         (calc_r) New function.
6141         (calc_symmetric) New function.
6142
6143         * stats.c: (normal_sig) Rewritten with new algorithm.  Renamed
6144         from calc_normal.
6145         (chisq_sig) Better boundary conditions.  Renamed from
6146         calc_significance.
6147
6148         * tab.h: (struct tab_table) New member cf.
6149
6150         * tab.c: (tab_create) Set cf.
6151         (tab_width) New function.
6152         (tab_realloc) Handle cf.
6153         (tab_vline) Handle cf.
6154         (tab_hline) Handle cf.
6155         (tab_box) Handle cf.
6156         (tab_value) Handle cf.
6157         (tab_float) Handle cf.
6158         (tab_text) Handle cf.
6159         (tab_joint_text) Handle cf.
6160         (tab_offset) Handle cf.
6161         (tab_next_row) Handle cf.
6162         (evaluate_dimensions) Handle cf.
6163         (render_strip) Handle cf.
6164
6165 Wed May 20 00:03:59 1998  Ben Pfaff  <blp@gnu.org>
6166
6167         * crosstabs.q: (postcalc) New vars row_tot, col_tot, pass them to
6168         output_pivot_table().
6169         (output_pivot_table) Moved lots of local variables outside and
6170         made them static.  Add beginnings of chi-square statistic
6171         support.  Now column and row totals aren't in the main matrix.
6172         Always zero out any leftover rows & columns after we're done with
6173         the table entries.  Move all output stuff into
6174         display_dimensions(), display_crosstabs(), display_chisq().
6175         (display_dimensions) New function.
6176         (display_crosstabulation) New function.
6177         (display_chisq) New function.
6178         (calc_chisq) Implemented Pearson and likelihood-ratio chisquares.
6179
6180         * frequencies.q: (dump_full, dump_condensed) Remove tab_null()
6181         references, simplify logic.
6182
6183         * postscript.c: Remove scale, translate-x, translate-y,
6184         mirror-horz, mirror-vert, rotate-180 options.
6185         (struct ps_driver_ext) Remove scale, translate_x, translate_y.
6186         All references deleted.
6187         (macro YT) New macro.
6188         (array option_tab[]) Removed options.
6189         (ps_option) Removed options.
6190         (ps_open_page) Write page setup explicitly to output file, without
6191         using now-deleted BP function.
6192         (macro dump_line) Use YT().
6193         (macro dump_thick_line) Use YT().
6194         (draw_headers) Use YT().
6195         (switch_font) Reorder arguments to SF function.
6196         (write_text) Use YT().
6197
6198         * sfm-read.c: (sfm_read_case) Don't attempt to read variables that
6199         have get.fv == -1.
6200
6201         * sysfile-info.c: (describe_variables) Don't use tab_nulls().
6202
6203         * tab.c: (tab_create) Initialize t->ct to zeros.  Remove
6204         null-debugging code.
6205         (tab_realloc) Remove null-debugging code.  Initialize new regions
6206         of t->ct to zeros.
6207         (tab_vline) Support offsets.
6208         (tab_hline) Support offsets.
6209         (tab_box) Support offsets.
6210         (tab_null) Removed.
6211         (tab_nulls) Removed.
6212         (tab_row) Removed.
6213         (tab_col) Removed.
6214         (evaluate_dimensions) Remove null-debugging code.  Understand
6215         TAB_EMPTY attribute.  Assert that text.s.s is always non-NULL if
6216         TAB_EMPTY not present.
6217
6218         * tab.h: New cell attribute TAB_EMPTY.
6219         (macros tab_nr, tab_nc, tab_row, tab_col) New.
6220
6221         * vars-atr.c: (init_variable) Set get.fv to -1 so that GET doesn't
6222         try to read them from system files.
6223
6224         * vfm.c: (dump_splits) Don't call tab_null().   
6225
6226 Sat May 16 19:36:55 1998  Ben Pfaff  <blp@gnu.org>
6227
6228         * crosstabs.q: (struct crosstab) Added `missing' member.
6229         (custom_tables) Init missing.
6230         (calc_general) Handle missing values.
6231         (calc_chisq) New function.
6232         (output_pivot_table) Start work on chi-square output.  Update for
6233         new tab offset support functions.  Shorten statistic names.
6234
6235         * Several files: add in more `const's to placate gcc's warnings.
6236
6237         * tab.h: (struct tab_table) Add col_ofs, row_ofs members.  Comment
6238         fixes.
6239
6240         * tab.c: (tab_height, tab_realloc, tab_vline, tab_hline, tab_box,
6241         tab_null, tab_nulls, tab_value, tab_float, tab_text,
6242         tab_joint_text) Add col_ofs and row_ofs support.
6243         (tab_offset) New function.
6244         (tab_next_row) New function.
6245         (tab_row) New function.
6246         (tab_col) New function.
6247         (tabi_table) Add col_ofs and row_ofs support.
6248
6249         * vars-atr.c: (is_system_missing) New function.
6250
6251 Tue May 12 16:14:30 1998  Ben Pfaff  <blp@gnu.org>
6252
6253         * crosstabs.q: Expanded subcommand names RESID --> RESIDUAL, etc.
6254         (static var no_cells) Removed.
6255         (static var num_cells) New.
6256         (static var expected) New.
6257         (static var cells[]) New.
6258         (internal_cmd_crosstabs) Deal with new variables.
6259         (postcalc) Removed most of the meat and put it in new function
6260         output_pivot_table().
6261         (output_pivot_table) Calculates and outputs an entire pivot table.
6262
6263         * postscript.c: (postopen) Fix problems with free()ing addresses
6264         not obtained from malloc().
6265
6266         * som.c: (som_submit) Add assertion.
6267
6268         * sysfile-info.c: (describe_variable) Use new tab_nulls()
6269         function.
6270
6271         * tab.c: (static var tab_names[]) New.
6272         (tab_realloc) -1 for nc or nr indicates no change.
6273         (tab_nulls) New function.
6274         (tab_dim) Use tab_names[].
6275         (tabi_cumulate) Don't include bottom or right headers.  Furrfu.
6276         (evaluate_dimensions) Don't terminate on uninited cells, just put
6277         an X in them and emit a notice.  Use tab_names[].
6278
6279         * tab.h: Move bits into tab.def.
6280
6281         * tab.def: New.  Don't try to declare tab_table_class because then
6282         som.h has to be included.       
6283         
6284 Thu May  7 22:55:04 1998  Ben Pfaff  <blp@gnu.org>
6285
6286         * command.def: New file, contains all the command definitions
6287         previously included bodily in command.c.
6288
6289         * format.def: New file, contains all of the format definitions
6290         previously split across format.h, format.c, and sfm-write.c.
6291
6292         * lexer.h: Renamed from tokens.h in order to match corresponding
6293         .c file name.
6294
6295         * lexerP.h: Moved some rarely used functions exported by lexer.c
6296         into here.
6297
6298         * Makefile.am: Commemorate renamed files.
6299         (EXTRA_DIST) Add command.def, format.def.
6300
6301         * command.c: [0] (walk_cmdtable_func) Removed.
6302
6303         * crosstabs.q: (postcalc) Made it work and print out matrices
6304         proving it.
6305         (enum_column_values) Renamed enum_var_values, generalized for any
6306         variable.
6307
6308         * format.h: (struct fmt_desc) New member `spss'.
6309
6310         * q2c.c: (main) Generated code includes lexer.h instead of
6311         tokens.h.
6312
6313         * sfm-write.c: (write_format_spec) Use new spss member of fmt_spec
6314         instead of an independent translation table.
6315
6316 Tue May  5 13:19:03 1998  Ben Pfaff  <blp@gnu.org>
6317
6318         * Lots of source files: Added const to declarations.
6319
6320         * aggregate.c: (parse_aggregate_function) Rename inner i to j.
6321         
6322         * arena.c: (arena_clear) Set prev pointer to null when done.
6323
6324         * ascii.c: (ascii_option) Rename index as indx.
6325
6326         * avl.c: This is now a separate library called libavl.
6327         (xmalloc) Make static.
6328         (avl_probe) Step A7 can use the cache instead of an explicit
6329         compare.
6330         (avl_delete) Don't maintain a q pointer because it's always
6331         available in the pointer stack.  Comment fix.
6332
6333         * avl.h: This is now a separate library called libavl.
6334
6335         * command.c: (cmd_table[]) Remove spurious trailing "".
6336
6337         * common.h: Only include random() fix if this system needs it.
6338
6339         * crosstabs.q: Include alloca headers.
6340         (n_sorted_tab) New global var.
6341         (postcalc) Mostly rewritten.
6342         (find_pivot_extent) Rewritten.
6343         (enum_column_values) Rewritten.
6344
6345         * data-out.c: (convert_F) Rename inner n as n_spaces.
6346
6347         * error.c: (dump_message) Don't have an outer var i.
6348
6349         * file-handle.q: (static var f) Removed.  All references removed.
6350         (internal_cmd_file_handle) Uses a local variable instead of f.
6351
6352         * get.c: (trim_dictionary) Change scope of i, i1, i2.
6353         (cmd_match_files) Don't strcpy tokstr into sbc (why was this ever
6354         done?)
6355
6356         * getline.h: Declare getl_history as extern.  Reported by
6357         palme@uni-wuppertal.de (Hubert Palme).
6358
6359         * postscript.c: (postopen) Some large mods for constness.
6360
6361         * recode.c: Remove spurious copyrights since PSPP is owned by FSF
6362         anyway.
6363
6364 Fri Apr 24 12:52:47 1998  Ben Pfaff  <blp@gnu.org>
6365
6366         * Makefile.am: Rename BUILT_SOURCES to q_sources, all references
6367         changed.  Add avl.c, avl.h to pspp_SOURCES.  Remove avllib from
6368         LDADD.
6369
6370         * avl.c, avl.h: New files.  These form a clean-room
6371         reimplementation of avllib.  Iterative algorithms are used in
6372         place of recursive ones, so there is no resemblance in the code.
6373
6374         * Lots of headers: Don't include other headers by default.
6375
6376         * Lots of source files: Explicitly include all needed headers.
6377
6378         * arena.c: (arena_clear) New function.
6379
6380         * crosstabs.q: (ROW_VAR, COL_VAR) New enums.
6381         (static var ar) Removed.
6382         (staitc vars ar_tc, ar_col) New.
6383         (cmd_crosstabs) Destroy the arenas.
6384         (internal_cmd_crosstabs) Create the arenas.
6385         (precalc) Don't need a free function for the hash.
6386         (calc_general) Make sure to zero out the trailer on the key data
6387         before inserting.
6388         (print_table_entries) Updated.
6389         (postcalc) Worked on actually implementing.
6390         (find_pivot_extent) New function.
6391         (compare_value) New function.
6392         (enum_column_values) New function.
6393
6394         * data-in.c: (parse_month) Make local array `static const'.
6395         
6396         * data-out.c: (convert_date) Make local array `static const'.
6397         (convert_WKDAY) Same.
6398         (convert_MONTH) Same.
6399
6400         * frequencies.q: (postprocess_freq_tab) avl_walk_inorder() has
6401         been renamed to avl_walk().
6402         
6403         * hash.c: Rewritten more efficiently.
6404
6405         * hash.h: Add attribute const to hsh_next_prime declaration.
6406
6407         * lexer.c: (id_match) Make arguments const.
6408
6409         * postscript.c: (ps_postopen_driver) Make default fonts the
6410         Helvetica family.
6411
6412         * q2c.c: (main) Generated code needs stdlib.h.
6413
6414         * sfm-write.c: (write_value_labels) An avl_traverser needs to be
6415         initialized to 0 now, not to NULL.  All other references to
6416         avl_traverser were updated in the same way.
6417
6418         * tokens.h: Macro version of id_match updated to use const
6419         properly.
6420
6421         * val-labs.c: (inc_ref_count) New function.
6422         (copy_value_labels) Simply through use of new avl_copy() function.
6423
6424 Wed Apr 15 13:01:58 1998  Ben Pfaff  <blp@gnu.org>
6425
6426         * crosstabs.q: Probably doesn't compile.  New PIVOT subcommand.
6427         (postcalc) Worked on this.
6428
6429         * postscript.c: (OPO_DOUBLE_LINE) New enum.
6430         (struct ps_driver_ext) New line_width_thick member.
6431         (ps_preopen_drive) Init line_width_thick.
6432         (option_tab[]) Add line-* options.
6433         (ps_option) Parse line-* options.
6434         (postopen) Add line_width_thick support.  Strip leading spaces on
6435         prologue output lines.
6436         (ps_open_page) Include line_width_thick in output.
6437         (macro dump_thick_line) New.
6438         (dump_fancy_line) Support thick lines as well as double lines.
6439
6440 Tue Apr 14 00:50:08 1998  Ben Pfaff  <blp@gnu.org>
6441
6442         * Makefile.am: Add crosstabs.c to BUILT_SOURCES.  Add crosstabs.q
6443         to pspp_SOURCES.  Add crosstabs.q to EXTRA_DIST.
6444
6445         * Many source files: Rename `options' to `pv_opts' as appropriate.
6446
6447         * command.c: (static var cmd_table[]) Add CROSSTABS command.
6448
6449         * common.c: (xcalloc) New function.
6450
6451         * crosstabs.q: New file.  Not finished yet, though.
6452                 
6453         * data-list.c: Comment fix.
6454
6455         * error.c: Remove some old Checker cruft.
6456
6457         * frequencies.q: (dump_full) Cumulate valid percent instead of
6458         regular percent.
6459
6460         * getline.c: Comment fix.
6461
6462         * hash.c: Comment fixes.
6463
6464         * hash.h: (struct hsh_table) Make hash functions return unsigned
6465         instead of int to avoid problems with taking the modulo of
6466         negative return values.  All references changed.
6467
6468         * misc.c: (intlog10) Make its table static const instead of auto.
6469
6470         * sfm-read.c: (read_header) Make `prefix' static const instead of
6471         auto.
6472
6473         * var.h: (union value) Add member `hash'.
6474         (struct variable) Rename prv_index as `foo'--all references
6475         changed.  Reorder.
6476         (typedef pv_opts) Removed.  All references changed.
6477
6478         * vars-prs.c: (parse_variables) Message fixes.
6479         
6480 Mon Mar  9 15:35:08 1998  Ben Pfaff  <blp@gnu.org>
6481
6482         * get.c: (cmd_match_files) Don't reverse the order of FILEs as
6483         they are being inserted.  Don't check for BY variables of
6484         different types.  Discard variables if the active file isn't
6485         included in the merge.
6486         (mtf_processing) Essentially rewritten.
6487         (mtf_merge_dictionary) Check for master/slave variables of
6488         different types/widths.
6489
6490         * vfm.c: (static var not_canceled) New var.
6491         (process_active_file) Don't call vfm_source->read() if
6492         there's no vfm-source.  Initialize not_canceled.
6493         (process_active_file_write_case) Honor and update not_canceled.
6494         (prepare_for_writing) Rollback changes from yesterday, they were
6495         wrong.
6496         (close_active_file) Don't destroy vfm_source unless it exists.
6497         
6498 Mon Mar  9 00:56:16 1998  Ben Pfaff  <blp@gnu.org>
6499
6500         * Lots of source files: Added { } around nested if/else constructs
6501         to avoid new gcc 2.8 warnings.
6502
6503         * data-in.c: (parse_Z) Declare `int' type explicitly.
6504         (convert_Z) Ditto.
6505
6506         * get.c: (struct mtf_file) Add prev, next_min, by, input members.
6507         (cmd_match_files) Initialize mtf_by_values.  Manage by, input,
6508         prev members.  Put TABLEs at the end of the chain and FILEs at the
6509         beginning.  Don't allow the active file in STATE_INIT.  Use proper
6510         `seen' value for the active file.  Fill out the by members and
6511         make sure they're of consistent type.  Do the actual merge
6512         operation.
6513         (mtf_processing_finish) New function.
6514         (var_type_description) New function.
6515         (mtf_free_file) New function.
6516         (mtf_free) Rewritten.
6517         (mtf_delete_file_in_place) New function.
6518         (mtf_read_nonactive_records) New function.
6519         (mtf_compare_BY_values) New function.
6520         (static var mtf_seq_no) New var.
6521         (mtf_processing) New function.
6522         (mtf_merge_dictionary) Assign nval members for the system file
6523         dictionary.  Assign fv values for its variables.  Point each slave
6524         variable to the corresponding master variable.
6525
6526         * hash.c: Include str.h.
6527
6528         * mis-val.c: (copy_missing_values) src arg is const.
6529
6530         * misc.c: (spacing) Make `max' var explicitly int.
6531
6532         * sfm-read.c: (dump_dictionary) Message reformatting.
6533         (sfm_read_case) Add assertion.
6534
6535         * sort.c: Esthetic fixes.
6536
6537         * var.h: (struct match_files_proc) New struct.
6538         (struct variable) Add private data match_files_proc.
6539
6540         * vars-atr.c: (delete_variable) Implement.  Add argument for the
6541         dictionary that owning the variable.
6542         (dup_variable) Add assertion.
6543
6544         * vfm.c: Comment fixes, hopefully the comments are correct now.
6545         (process_active_file) New function.
6546         (process_active_file_write_case) New function.
6547         (process_active_file_output_case) New function.
6548         (prepare_for_writing) Use temp_dict->nval for vfm_info, not
6549         default_dict.nval.
6550         (write_case) Renamed procedure_write_case().  Now write_case is a
6551         pointer to a function.  Style fixes.
6552         
6553 1998-03-05  Ben Pfaff  <blp@gnu.org>
6554
6555         * Makefile.am: (q2c) Link with libmisc.
6556         (version.c) Define default_config_path, include_path,
6557         groff_font_path.
6558
6559         * ascii.c: (ascii_postopen_driver) When the default newline string
6560         is requested, open file in text mode.  Suggested by
6561         palme@uni-wuppertal.de (Hubert Palme).
6562         (static vars line_buf, line_p) Change from char * to unsigned char
6563         *.
6564         (ascii_close_page) char * to unsigned char *.
6565
6566         * cmdline.c: (parse_command_line) Implement -r option by
6567         prepending ~/.pspp/rc to the list of files to process.
6568
6569         * command.c: (cmd_remark) Reset getl_prompt to the standard prompt
6570         before pulling in a final line.
6571         (null_func, null_int_func) Removed (dead code).
6572
6573         * descript.q: (display) Calculate width of variable name column
6574         properly.  Calculate number of valid cases properly.  Reported by
6575         palme@uni-wuppertal.de (Hubert Palme).
6576
6577         * filename.c: (init_filename) Use default_config_path instead of
6578         now obsolete CONFIG_PATH.
6579
6580         * getline.c: (getl_initialize) Use include_path instead of now
6581         obsolete INCLUDE_PATH.
6582         (getl_add_file) New argument `where'.  All references changed.
6583
6584         * groff.c: (find_font_file) Use groff_font_path instead of now
6585         obsolete GROFF_FONT_PATH.
6586         
6587         * postscript.c: (find_ps_file) Use groff_font_path instead of now
6588         obsolete GROFF_FONT_PATH.  Copy through temporary variable to
6589         avoid problems with constness.
6590
6591         * str.h: (macro cs_streq) New macro.
6592
6593         * version.h: (glob var default_config_path, include_path,
6594         groff_font_path) New vars.
6595         
6596 1998-02-23  Ben Pfaff  <blp@gnu.org>
6597
6598         * Many source files: Change verbose_msg() priority levels and
6599         messages.
6600
6601         * aggregate.c: Include debug-print.h.
6602
6603         * cmdline.c: (parse_command_line) Add --safer/-s and --command/-c
6604         options.
6605         (static var pre_syntax_message) Document --safer/-s and
6606         --command/-c.
6607
6608         * command.c: (cmd_erase, cmd_host) Disable if set_safer is set.
6609
6610         * dfm.c: (open_inline_file) [__CHECKER__] Zero out ext->file,
6611         because it's not used but it's still copied.
6612         (open_file_r) Remove gratuitous debug message.
6613
6614         * filename.c: (safety_violation) New function.
6615         (open_file) Remove gratuitous debug messages.  Don't allow pipe
6616         files if set_safer is set.
6617
6618         * get.c: Turn off debugging.
6619
6620         * getline.c: (getl_add_virtual_file) New function.
6621         (getl_read_line) Add verbose_msg() call for opening new syntax
6622         file.
6623         (getl_perform_delayed_reset) Add a return value describing whether
6624         any action was taken.  Call reset_eof().
6625
6626         * getline.h: Comment fix.
6627
6628         * groff-font.c: (groff_read_font) Use `goto next_iteration' in
6629         place of incorrect `continue'.  Use strtok_r() instead of
6630         strtok().  Always check strtok_r() return value.
6631         (groff_read_DESC) Use strtok_r() instead of strtok().
6632
6633         * lexer.c: (reset_eof) New function.
6634
6635         * main.c: (parse) Get a token after performing a delayed reset
6636         action; allow empty syntax files.
6637
6638         * postscript.c: (output_encodings) Use strtok_r() instead of
6639         strtok().
6640
6641         * q2c.c: (dump_parser) Use strtok_r() instead of strtok().
6642
6643         * set.q: Comment fixes.
6644         (glob var set_safer) New var.
6645         (internal_cmd_set) Support SAFER.
6646
6647         * str.h: [!HAVE_STRTOK_R] Declare strtok_r() prototype.
6648
6649         * temporary.c: (free_dictionary) Set d->splits to NULL after
6650         freeing.
6651
6652         * vars-atr.c: (clear_variable) Decrement dict->n_splits if
6653         variable deleted, not if it *isn't* deleted.
6654
6655 1998-02-16  Ben Pfaff  <blp@gnu.org>
6656
6657         * command.c: (array cmd_table[]) Add MATCH FILES.
6658
6659         * common.c: Comment fixes.
6660
6661         * data-list.c, dfm.c, error.c, filename.c, list.q, matrix-data.c,
6662         modify-vars.c, postscript.c, sfm-read.c, sfm-write.c, tab.c:
6663         Include alloca.h.  Problem reported by palme@uni-wuppertal.de
6664         (Hubert Palme).
6665
6666         * expr-opt.c: Include str.h.  Problem reported by
6667         palme@uni-wuppertal.de (Hubert Palme).
6668
6669         * get.c: (cmd_get) [DEBUGGING] Update v->p.get to v->get.
6670         (static var mtf_by) Change from char ** to variable **.
6671         (static var mtf_master) New var.
6672         (mtf_merge_dictionary) New function.
6673         (cmd_match_files) Init mtf_master.  Parse mtf_by according to new
6674         var type.  Reorder tests properly.  Initialize file->dict.  Detect
6675         TABLE= without BY=.  Read file dictionaries and merge them.  Give
6676         subcommand name with IN, LAST, FIRST error messages.  Create IN,
6677         LAST, FIRST variables.  Comment fixes.
6678         (mtf_free) Don't free default_dict.  Free mtf_master.
6679
6680         * getline.c: Define getl_mode.  Change getl_buf_size to size_t
6681         from int.
6682         (handle_line_buffer) Cast int to size_t in comparison to avoid
6683         warning.
6684
6685         * getline.h: Declare getl_mode extern.
6686
6687         * groff-font.c: (groff_read_font) Type-fix calls to getline.
6688         (groff_read_DESC) Make line_size a size_t.
6689         (match_tok) Parenthesize name to avoid macro expansion.
6690
6691         * mis-val.c: (copy_missing_values) New function.
6692
6693         * postscript.c: (postopen) Make buf_size a size_t.
6694
6695         * sfm-read.c: (dump_dictionary) Make global from static.  Print
6696         variable info in parts for easier debugging with Checker.
6697
6698         * temporary.c: (copy_variable) Use copy_value_labels().
6699         (new_dictionary) New arg: whether to copy file label, documents.
6700
6701         * val-labs.c: (copy_value_labels) New function.
6702
6703         * var.h: (enums MISSING_*) Add MISSING_COUNT.
6704
6705         * vars-atr.c: [GLOBAL_DEBUGGING] (force_dup_variable) New
6706         function.
6707         (dup_variable) Set prv_index, get.fv, get.nv.
6708
6709 Fri Feb 13 15:38:36 1998  Ben Pfaff  <blp@gnu.org>
6710
6711         * Makefile.am: (pspp_SOURCE) Add htmlP.h.
6712
6713         * Many source files: For ANSI-compliance, add empty statement
6714         after label.  Reported by palme@uni-wuppertal.de (Hubert Palme)
6715         and Micah Altman <maltman@www-vdc.fas.harvard.edu>.
6716
6717         * data-in.c: (parse_numeric) Some header files break on
6718         -DBL_MIN_10_EXP because they get a --; add () for safety.
6719         Reported by palme@uni-wuppertal.de (Hubert Palme).
6720
6721         * dfm.c: Idea by Dr Eberhard W Lisse <el@linux.lisse.na>.
6722         (struct dfm_fhuser_ext) Change `file' from FILE * to file_ext.
6723         (dfm_close) Use close_file_ext.
6724         (open_inline_file) Set file.file to NULL, not file.
6725         (open_file_r, open_file_w) Initialize file.file; fill in file_ext
6726         struct and use open_file_ext().
6727         (read_record) Use file.file.
6728
6729         * file-handle.q: (prepend_current_directory) Pass through special
6730         filenames.
6731
6732         * filename.c: Only include unistd.h if HAVE_UNISTD_H.
6733         (normalize_filename) Pass through special filenames.
6734         (open_file, close_file) Accept pipe| and |pipe syntaxes as
6735         equivalent.
6736         (dirname) Rename blp_dirname() because of name conflict on some
6737         OS.  All references changed.  Reported by palme@uni-wuppertal.de
6738         (Hubert Palme).
6739         (is_special_filename) New function.
6740
6741         * get.c: (GTSV_OPT*) Add GTSV_OPT_MATCH_FILES.
6742         (trim_dictionary) Conditionalize some of the options on whether
6743         GTSV_OPT_MATCH_FILES is in *options.
6744         (rename_variables) Don't allow variables to be renamed as scratch
6745         variables.
6746         (MTF_*) New enum series.
6747         (struct mtf_file) New struct.
6748         (static vars mtf_head, mtf_tail, mtf_by, mtf_n_by, mtf_free) New
6749         vars.
6750         (cmd_match_files, mtf_free) New functions.
6751
6752         * lexer.c: (match_int) Needed parentheses around name to escape
6753         macro expansion.  Reported by Micah Altman
6754         <maltman@www-vdc.fas.harvard.edu>.
6755
6756         * print.c: Needed to include alloca.h.  Reported by Micah Altman
6757         <maltman@www-vdc.fas.harvard.edu>.
6758
6759         * recode.c: (convert_to_double) Parenthesize -DBL_MIN_10_EXP to
6760         -(DBL_MIN_10_EXP).  Reported by palme@uni-wuppertal.de (Hubert
6761         Palme).
6762         
6763         * str.h: Include stdarg.h.  Reported by palme@uni-wuppertal.de
6764         (Hubert Palme) and Micah Altman <maltman@www-vdc.fas.harvard.edu>.
6765
6766 Thu Feb  5 00:18:21 1998  Ben Pfaff  <blp@gnu.org>
6767
6768         * html.c: (struct html_driver_ext) Move into htmlP.h.
6769         (html_preopen_driver) Initialize cp_x, cp_y.
6770         (html_submit) Implement as call to output_tab_table().
6771         (change_attributes) New function.
6772         (escape_string) New function.
6773         (output_tab_table) New function.
6774
6775         * list.q: (write_all_headers) Add code for writing headers for the
6776         html driver.
6777         (clean_up) Write out the html close-table tag.
6778         (determine_layout) Ignore html driver.
6779         (list_cases) Write html data.
6780
6781         * som.c: (som_submit) Move more of the code into output_table().
6782
6783         * tab.c: (static var hit) Make a global var and rename tab_hit.
6784         (static var tab_table_class) Make a global var.
6785
6786         * htmlP.h: New file.
6787
6788 Tue Feb  3 16:12:18 1998  Ben Pfaff  <blp@gnu.org>
6789
6790         * dump-sysfile.c: Removed.
6791
6792         * html.c: (preclose) Change comment in emitted code.
6793
6794         * matrix-data.c: Debugging off by default.  Comment fixes.
6795         (static var container) New var.
6796         (cmd_matrix_data) Create and destroy container.  Initialize
6797         is_per_factor[] to 0s.  Move code into new function
6798         string_to_content_type().  Require split values to be present in
6799         the data when ROWTYPE_ is explicit.  Call specific function, not
6800         general read_matrices().
6801         (string_to_content_type) New function.
6802         (context) Exclude all whitespace, not just spaces.
6803         (mget_token) A dot is a number.  Add assertion.
6804         (static var data) Renamed nr_data.
6805         (static var factor_values) Renamed nr_factor_values.
6806         (read_matrices) Renamed read_matrices_without_rowtype().  Handle
6807         only specific case.  Close data_file before exit.
6808         (fill_matrix) New function.
6809         (read_data_lines) Renamed nr_read_data_lines().  Remove debug
6810         printing.  Style fixes.  Message fixes.  Move code into
6811         fill_matrix().
6812         (read_matrices_without_rowtype) Rename
6813         matrix_data_read_without_rowtype().  Fix off-by-one error on
6814         loops.  Allocate nr_data[] memory from arena.
6815         (read_matrices_with_rowtype) Removed.
6816         (read_splits) Renamed nr_read_splits().  Style fixes.
6817         (read_factors) Renamed nr_read_factors().
6818         (dump_cell_content) Comment fixes.  Arguments changed.  Change
6819         debug printing.  All references changed.
6820         (output_data) Renamed nr_output_data().
6821         (static var wr_content) New var.
6822         (struct factor_data) New struct.
6823         (static var wr_data) New var.
6824         (static var wr_current) New var.
6825         (matrix_data_source_destroy_source) Removed.
6826         (read_matrices_with_rowtype) New function.
6827         (matrix_data_read_with_rowtype) New function.
6828         (wr_read_splits) New function.
6829         (compare_factors) New function.
6830         (wr_output_data) New function.
6831         (wr_read_rowtype) New function.
6832         (wr_read_factors) New function.
6833         (wr_read_indeps) New function.
6834         (glob var matrix_data_source) Make destroy_source member NULL as
6835         well.
6836
6837 Fri Jan 23 00:09:08 1998  Ben Pfaff  <blp@gnu.org>
6838
6839         * lexer.c: (syntax_error) Give better error message when at end of
6840         file.
6841
6842         * matrix-data.c: (var content_names[]) Fix PROX spelling.  Change
6843         N_SCALAR to output as plain N.
6844         (mdump_token) Change output format.
6845         (context) Fix message output interaction with spaces in input.
6846         (another_token) New function.
6847         (force_eol) Improved error message.
6848         (static var max_cell_index) New var.
6849         (read_matrices) Init `cells'.  factor_values is now per-cell.
6850         Init max_cell_index.
6851         (read_data_lines) Replace `compare' local with new `compare' arg.
6852         Debugging messages changed.  Only read factors if per_factor.
6853         Propagate error return from read_factors(), force_eol().
6854         Copy N_SCALAR values across the N vector.
6855         (read_matrices_without_rowtype) Don't init `cells'.  Don't need to
6856         check parentheses manually since we now have is_per_factor[].
6857         Call read_data_lines() with new args.  Check for end of data after
6858         looping, using another_token().
6859         (read_factors) Arguments changed.  Use max_cell_index to determine
6860         whether to read or compare factors.  Message fixes.
6861         (dump_cell_content) New function.
6862         (output_data) Completely rewritten because content types were
6863         supported to be nested inside factor values, not vice versa.
6864         
6865 Thu Jan 22 00:26:38 1998  Ben Pfaff  <blp@gnu.org>
6866
6867         * lexer.c: (syntax_error) Support formatted varargs messages.
6868
6869         * matrix-data.c: Turn debugging on by default.
6870         (static content_type[]) New array.
6871         (static content_names[]) New array.
6872         (static rowtype_, varname_) New vars.
6873         (static is_per_factor[]) New array.
6874         (static split_values) Moved declaration.
6875         (static n_continuous, first_continuous) New var.
6876         (cmd_matrix_data) Don't init split_values.  Assign ROWTYPE_ to
6877         rowtype_.  Simplify SPLIT code.  Init is_per_factor[].  Assign
6878         VARNAME_ to varname_.  Initialize first_continuous, n_continuous.
6879         Check for continuous variables.
6880         [DEBUGGING] (debug_print) Remove content_names[].
6881         (mdump_token) New macro.
6882         (mget_token_dump) New function.
6883         (mdump_token) New function.
6884         (context) New function.
6885         (mget_token) Fix messages.
6886         (static var data, split_values, factor_values) New vars.
6887         (read_matrices) Manage split_values, factor_values.
6888         (read_data_lines) New function.
6889         (read_matrices_without_rowtype) Implemented.
6890         (read_splits) Message fixes.  Uses `just_read'.
6891         (read_factors) New function.
6892         (output_data) New function.
6893         (matrix_data_source_destroy_source) Close the file handle.
6894         (glob var matrix_source) Change name from "DATA LIST" to "MATRIX
6895         DATA".
6896
6897         * str.c: (strpadcmp) Removed.
6898
6899         * vfm.c: (dump_splits) Initialize i; fix test for end of splits.
6900
6901 Sun Jan 18 00:30:59 1998  Ben Pfaff  <blp@gnu.org>
6902
6903         * Lots of source files: Add cast to unsigned character to calls to
6904         tolower() and toupper().
6905
6906         * aggregate.c: Set default_dict.splits to NULL.
6907
6908         * command.c: (static variable tab[]) Add MATRIX DATA.
6909
6910         * data-in.c: Add debugging defines.  Formatting fixes.
6911
6912         * expr-opt.c: Formatting fixes.
6913
6914         * lexer.c: (syntax_error) Message fixes.
6915
6916         * matrix-data.c: New enum series.
6917         (static vars fmt, section, diag, explicit_rowtype, signle_split,
6918         split_values, n_factors, factors, cells, pop_n, contents,
6919         n_contents) New vars.
6920         (cmd_matrix_data) Finished implementation.
6921         (compare_variables_by_mxd_vartype) New function.
6922         [DEBUGGING] (debug_print) New function.
6923         (static vars mtoken, mtokstr, mtoklen, mtokval) New vars.
6924         (read_matrices) New function.
6925         (read_matrices_without_rowtype) New function.
6926         (read_matrices_with_rowtype) New function.
6927         (read_splits) New function.
6928         (mget_token) New function.
6929         (force_eol) New function.
6930         [0] (test_tokenizer) New function.
6931         (matrix_data_source_destroy_source) New function.
6932         (glob var matrix_data_source) New var.
6933
6934         * misc.h: Include ieeefp.h if present.
6935
6936         * split-file.h: (cmd_split_file) Changes corresponding to struct
6937         dictionary changes.
6938
6939         * str.h: Fix memmem prototype.
6940
6941         * temporary.c: (save_dictionary, restore_dictionary,
6942         free_dictionary) Changes corresponding to struct dictionary
6943         changes.
6944
6945         * var.h: (MXD_* enums) New enum series.
6946         (struct matrix_data_proc) New struct.
6947         (struct split) Removed.
6948         (struct dictionary) Changed `splits' member from `split *' to
6949         `variable **'.
6950         (macro force_create_variable) New macro.  Replaced lots of
6951         create_variable()/assert() calls with calls to this macro.
6952
6953         * vars-atr.c: (discard_variables) Changed assertion.
6954         [GLOBAL_DEBUGGING] (force_create_variable) New function
6955         called by the macro of the same name.
6956         (clear_variable) Changes to delete splits from the dictionary
6957         corresponding to struct dictionary changes.
6958
6959         * vars-prs.c: (parse_variables) [GLOBAL_DEBUGGING] Check for
6960         corrupted variable `index' values in the dictionary passed in
6961         every time this function is called.
6962
6963         * vfm.c: (dump_splits, SPLIT_FILE_procfunc) Changes corresponding
6964         to struct dictionary changes.
6965
6966 Tue Jan 13 23:45:02 1998  Ben Pfaff  <blp@gnu.org>
6967
6968         * Makefile.am: (pspp_SOURCES) Add matrix-data.c.
6969
6970         * command.c: New includes.
6971         (static array cmd_table[]) Add ERASE, HOST, NEW FILE.
6972         (cmd_erase) New function.
6973         [unix] (shell) New function.
6974         (run_command) New function.
6975         (cmd_host) New function.
6976         (cmd_new_file) New function.
6977
6978         * expr-prs.c: (parse_primary) Message fix.
6979
6980         * inpt-pgm.c: Formatting fix.
6981         (cmd_reread) Implement the FILE subcommand.
6982
6983         * matrix-data.c: New file.
6984
6985         * q2c.c: (dump_header) Change output commenting style.
6986
6987         * weight.c: Comment fix.
6988
6989 Tue Jan 13 00:53:39 1998  Ben Pfaff  <blp@gnu.org>
6990
6991         * aggregate.c: (buf64_10x) Renamed buf64_1xx, all references
6992         changed.
6993         (buf_10x) Renamed buf_1xx, all references changed.
6994         (cmd_aggregate) Implemented cases 010, 011, 110, and 111 (all
6995         cases now implemented).
6996         (create_sysfile) New function.
6997         (agr_11x_func) New function.
6998
6999         * data-in.c: (parse_numeric) Work properly if there's an
7000         explicitly coded decimal point in the data and decimal places are
7001         specified on DATA LIST.  Bug reported by Dr Eberhard W Lisse
7002         <el@linux.lisse.na>.
7003
7004         * get.c: (cmd_get, cmd_save_internal) Allow extraneous slash
7005         before file specification on GET, SAVE, XSAVE.  Bug reported by Dr
7006         Eberhard W Lisse <el@linux.lisse.na>.
7007
7008         * q2c.c: [!HAVE_STRERROR] Include misc/strerror.c, not
7009         strerror.c.  Bug reported by Alexandre Oliva
7010         <oliva@dcc.unicamp.br>.
7011
7012         * sort.c: Include sort.h.  Comment fixes.  A few esthetic fixes.
7013         (static var separate_case_tab) New var.
7014         (cmd_sort_cases) Cancel temporary transformations here.  Free
7015         v_sort before return.
7016         (sort_cases) Run an EXECUTE procedure if SEPARATE is nonzero and
7017         we're reading from a sort stream.  Don't cancel temporary
7018         transformations.  Offload internal sorting to do_internal_sort().
7019         (do_internal_sort) New function.  Handles internal sorting even
7020         when SEPARATE is nonzero.  Doesn't free v_sort.
7021         (do_external_sort) Take new arg SEPARATE.  Only destroy `x' if
7022         it's non-NULL.
7023         (write_initial_runs) Take new arg SEPARATE.  Only destroy the old
7024         sink if SEPARATE is zero.
7025         (read_output_cases) Renamed read_sort_output(), all references
7026         changed.  Now uses separate_case_tab when it exists.
7027         (write_separate) New function.
7028
7029         * vfm.c: (page_to_disk) Destroy memory_source_cases, not
7030         memory_sink_cases.  Don't redundantly call
7031         vfm_source->destroy_source().
7032         (memory_stream_mode) After switching over, set memory_sink_cases
7033         to NULL.
7034
7035 Sat Jan 10 23:35:51 1998  Ben Pfaff  <blp@gnu.org>
7036
7037         * aggregate.c: (struct agr_var) Expand dbl[] array from 2 to 3
7038         elements.
7039         (static var prev_case) New, moved out of aggregate_single_case()
7040         local scope.
7041         (static var buf64_10x, buf_10x) New.
7042         (cmd_aggregate) Initialize prev_case.  Comment fixes.  Implement
7043         the 000, 001, 100, and 101 cases.  Free prev_case.
7044         (parse_aggregate_functions) Disallow scratch variables.
7045         (free_aggregate_functions) Only free agr_dict if non-null.  Use
7046         iter->function to determine numeric/string type, not
7047         iter->src->type.
7048         (aggregate_single_case) Don't manage prev_case.  Initialize
7049         aggregate info after dumping it.
7050         (accumulate_aggregate_info) Fix sum, weighted sum, mean, weighted
7051         mean, stddev, weighted stddev definitions.
7052         (dump_aggregate_info) Implemented.
7053         (initialize_aggregate_info) Renamed from
7054         initialize_aggregate_functions().  Initializes dbl[2].
7055         (agr_00x_trns_proc, agr_00x_end_func, write_case_to_sfm,
7056         agr_10x_trns_proc, agr_10x_trns_free, agr_10x_end_func) New.
7057
7058         * cases.c: (alloc_val) Removed.
7059
7060         * get.c: (cmd_save_internal) Initialize new `dict' member.
7061
7062         * sfm-write.c: (sfm_write_dictionary, write_header,
7063         write_variable, write_value_labels, write_documents) Reorganize,
7064         simplify for new parameter structure.
7065         (write_variable) Only one variable * argument now.
7066
7067         * sfm.h: (struct sfm_write_info) Removed `pri', `sec', and
7068         replaced by new `dict' member.
7069
7070         * temporary.c: (new_dictionary) Initialize n_documents.
7071
7072         * vars-atr.c: (dup_variable) Allocate `value's from dict into
7073         v->fv manually.
7074         (init_variable, replace_variable) Eliminate usage of alloc_val().
7075
7076         * vars-prs.c: (parse_DATA_LIST_vars) Accept PV_NO_SCRATCH option.
7077
7078         * vfm.c: (arrange_compaction) Allow `temporary' value of 2 to
7079         signal that AGGREGATE is to be used for forming final cases.
7080         (close_active_file) Call end_func before stopping lagging.  Cancel
7081         temporary after finishing compaction.
7082         (write_case) Comment fixes.  Cleaned up.
7083         (compact_case) Let AGGREGATE handle compaction when `temporary' is
7084         2.
7085
7086 Sat Jan 10 02:10:47 1998  Ben Pfaff  <blp@gnu.org>
7087
7088         * Makefile.am: (BUILT_SOURCES) Add means.c.
7089         (pspp_SOURCES) Add means.c.
7090         (EXTRA_DIST) Add means.q.
7091
7092         * command.c: (array cmd_table[]) Add MEANS.
7093
7094         * common.h: Esthetic fixes.  Comment fixes.  Test for
7095         MAX_SHORT_STRING greater than 8.
7096         (macros LOWEST, HIGHEST) New.
7097
7098         * data-in.c, data-list.c, recode.c: Comment fixes.
7099
7100         * means.q: New file, base version.
7101
7102         * mis-val.c: (parse_num_or_range, parse_numeric) Replace -DBL_MAX
7103         with LOWEST, DBL_MAX with HIGHEST.
7104
7105         * q2c.c: (dump_vars) Add an enum to array types giving the number
7106         of values for the enum.
7107
7108         * sfm-read.c: (sfm_read_dictionary, read_machine_flt64_info)
7109         Replace second_lowest_value with second_lowest_flt64.
7110
7111         * sfm-write.c: (write_variable, write_rec_7_34) Replace
7112         second_lowest_value with second_lowest_flt64.
7113
7114         * t-test.q: Comment fix.
7115
7116         * temporary.c: (restore_dictionary) Esthetic fix.
7117
7118         * tokens.h: (force_match_id, force_match, force_string, force_int,
7119         force_num, force_id) Replace msg() with syntax_error().
7120
7121         * var.h: (struct means_proc) New.
7122         (struct variable) Add mns member to `p' union.
7123
7124         * vars-prs.c: (parse_variable, parse_dict_variable,
7125         parse_variables, parse_DATA_LIST_vars) Replace msg() with
7126         syntax_error().
7127
7128 Thu Jan  8 22:28:41 1998  Ben Pfaff  <blp@gnu.org>
7129
7130         * Makefile.am: (pspp_SOURCES) Add tab.h.
7131
7132         * Most source files: Added a cast to unsigned char in usages of
7133         the ctype is*() functions.  Replaced `end of command expected'
7134         calls to msg() with calls to syntax_error().
7135
7136         * frequencies.q: (dump_condensed) Fix tab_dim() column reference.
7137
7138         * lexer.c: (hex_val) Removed (was dead code).
7139         (idmatch) Parenthesize function name to avoid macro expansion.
7140
7141         * postscript.c: Comment fixes.
7142         (ps_preopen_driver) Change default font size to 10pt.
7143
7144         * sfm-read.c: (read_variables) Byteswap sv.print, sv.write as
7145         int32s.
7146         (parse_format_spec) Change system-file format spec argument type
7147         to int32.  Parse the format spec with bitwise operators.
7148
7149         * sfmP.h: (struct sysfile_format) Removed.
7150         (struct sysfile_variable) Changed print, write members from
7151         sysfile_format to int32.
7152
7153         * tokens.h: Esthetic fixes.
7154         [__GNUC__] (macro id_match) New macro to hopefully speed up
7155         identifier matching.
7156         (macros match_id, match_tok, match_int) Implemented in
7157         compiler-independent manner; no longer GNU C only.
7158
7159         * vfm.h: Include time.h.
7160
7161 Mon Jan  5 11:06:15 1998  Ben Pfaff  <blp@gnu.org>
7162
7163         * data-list.c: (dump_fixed_table) Change tab_dim().
7164
7165         * dump-sysfile.c: (open_sysfile) Fix mmap() call.
7166
7167         * error.c: Include command.h.
7168
7169         * frequencies.g: Formatting fixes.
7170
7171         * frequencies.q: Add tab_dim() calls.  Make the total cell a
7172         joined cell.
7173
7174         * glob.c: Include command.h.
7175
7176         * sfm-read.c: (struct sfm_fhuser_ext) New members sysmis, highest,
7177         lowest.
7178         (sfm_read_dictionary) Initialize sysmis, highest, lowest.
7179         (sfm_read_machine_flt64_info) Update sysmis, highest, lowest.
7180         (read_variables) Byteswap sv.type; byteswap sv.print, sv.write as
7181         the other elements (is this right?).
7182         (read_variables) Use lowest, highest members.
7183         (parse_format_spec) New arg `vv' for more stringent checking.
7184         (dump_dictionary) Byteswaps nonexplicit data.
7185         (sfm_read_case) Byteswap numeric data.
7186
7187         * som.c: Initialize table_num to 1.
7188         (render_segments) Remember to increment y_index after each table
7189         segment.
7190
7191         * sysfile-info.c: (cmd_sysfile_info) Change tab_dim().  Don't call
7192         avl_count() on a NULL tree.  No title for the second table.
7193         (cmd_display) Handle DISPLAY VECTORS by calling display_vectors().
7194         Handle AS_SCRATCH as AS_NAMES.  Warn if no variables.  Re-enable;
7195         fix call to display_variables().
7196         (display_variables) Default to 4 columns, not 3.  Set up headers.
7197         Column title is Variable, not Name.  Fix index column.
7198         Add joint text.  Add tab_dim().  Handle value labels properly.
7199         Handle DISPLAY LABELS properly.  Draw boxes correctly.
7200         (describe_variable) Value labels don't need titles.  Don't clear
7201         nonexistent index column.
7202         (compare_vectors_by_name) New function.
7203         (display_vectors) New function.
7204
7205         * tab.c: (tab_height) Add assertion.
7206         (tab_null) Add debug code.
7207         (evaluate_dimensions) Add debug code.
7208
7209         * var.h: (struct variable) get_proc data is sometimes used
7210         simultaneously with other per-procedure info, therefore it was
7211         removed from the union.  All references changed.        
7212
7213 Sun Jan  4 18:13:33 1998  Ben Pfaff  <blp@gnu.org>
7214
7215         * ascii.c: (ascii_close_page) Put title on second line of headers
7216         if there is no subtitle.
7217
7218         * command.c: (glob var cur_proc) Move definition here, from
7219         common.c.
7220         (cmd_remark) Emit blank line before remarks.
7221
7222         * command.h: (glob var cur_proc) Move declaration here, from
7223         common.h.
7224
7225         * data-list.c: (dump_fixed_table) Fix messages.
7226         (dump_free_table) Call tab_nat_dim().
7227
7228         * descript.q: (dump_z_table) Modify tab_dim() call.
7229
7230         * frequencies.q: (dump_condensed, dump_statistics) Add tab_dim()
7231         call.
7232         (dump_statistics) Don't output header.
7233
7234         * groff-font.c: Minor format fix.
7235
7236         * html.c: Comment fix.
7237
7238         * list.q: (write_varname) Indent after advancing page.
7239
7240         * output.h: Minor reordering.
7241
7242         * postscript.c: Comment fixes.  Many places, '\n' was replaced by
7243         a reference to eol[].
7244         (struct ps_driver_ext) New member eol[].
7245         (ps_preopen_driver) Initialize eol[].
7246         (ps_postopen_driver) Fix sense of text for text_opt, line_opt
7247         defaults.  Handle headers.  Fix test for minimum page length.
7248         (static var option_tab[]) Add `line-ends'.
7249         (ps_option) Handle line-ends to change eol[].
7250         (postopen) Scale prop_em_width and fixed_width properly.  Set the
7251         prologue title to outp_title if applicable.  Replace the prologue
7252         line ends with eol[].  Call draw_headers() if headers are enabled.
7253         (text_width) New function.
7254         (out_text_plain) New function.
7255         (draw_headers) New function.
7256
7257         * print.c: (dump_table) Call tab_nat_dim().
7258
7259         * som.c: (som_blank_line) Only advance a line if not at the top of
7260         a page.
7261         (som_submit) Move several informational table calls here.
7262         Increment subtable_num if SOMF_NO_TITLE not set.
7263         (output_table) Advance a line if SOMF_NO_SPACING not set.
7264         (render_columns, render_segments, render_simple) Handle spacing
7265         between tables.  Handle table titles.  Remove debug output.
7266
7267         * som.h: (SOMF_*) New enum series.
7268         (struct som_table_class) New member `flags'.
7269
7270         * sysfile-info.c: (cmd_sysfile_info) Calls tab_nat_dim().  No
7271         headers or spacing.
7272         (display_variables) Calls tab_nat_dim().
7273         (describe_variable) Remove restriction on number of value labels.
7274         Make value labels separated by thin lines.
7275
7276         * tab.c: (tab_create) Default `flags' to none.
7277         (tab_float) New arg `w'.  All references changed.
7278         (tab_nat_dim) New function.
7279         (tab_output_text) No title or spacing.
7280         (tab_flags) New function.
7281         (tabi_flags) New function.
7282         (tabi_title) New function.
7283         (strip_height) Removed.
7284         (tabi_render) Skip title when necessary.
7285         (static var tab_tab_class) Add tabi_flags, tabi_title.
7286         (evaluate_dimensions) Disable display of column, row size.
7287         (sum_columns) Add title height to top header.
7288         (render_strip) Moved within file.
7289
7290         * tab.h: (struct tab_table) New member `flags'.
7291
7292         * vfm.c: (dump_splits) Calls tab_nat_dim().  No title.
7293
7294 Sat Jan  3 16:55:44 1998  Ben Pfaff  <blp@gnu.org>
7295
7296         * Most source files: Add `const' attribute in all appropriate
7297         places.
7298         
7299         * sysfile-info.c: (cmd_sysfile_info) Add tab_dim() call, add a
7300         column to the variables table for use by describe_variable().
7301         (cmd_display) Disable for the present.
7302         (display_documents) Don't wrap documents.
7303         (display_variables) Table has four columns now.
7304         (describe_variable) Table has four columns now.  Don't use a
7305         subtable, use joined cells instead.
7306
7307         * tab.c: (tab_create) Don't set `join'.
7308         (tab_realloc) ct array is not made up of a_string's.
7309         Reallocate trh, hrh, h arrays, initialize trh array.  Initialize
7310         cell contents on GLOBAL_DEBUGGING, not DEBUGGING.
7311         (text_format) New function.
7312         (tab_title) Rewritten, uses text_format().
7313         (tab_text) Rewritten, uses text_format().
7314         (tab_joint_text) New function.
7315         (tab_join) Removed.
7316         (static var hit) New variable.
7317         (render_strip) New args r1, r2.  Implement joined cells that fit
7318         on a single page.
7319         (tabi_render) Increment hit.  Pass new args to render_strip().
7320         (evaluate_dimensions) [GLOBAL_DEBUGGING] Check for uninitialized
7321         cells.  For t_naw and t_nah, ignore joined cells and null cells in
7322         calculations.
7323         
7324         * tab.h: (struct tab_join_rect) Removed.
7325         (struct tab_table) Removed `join'.
7326         (TAB_JOIN_MAIN) Removed.
7327         (struct tab_joined_cell) New struct.
7328         (TAT_NOWRAP) New enum.
7329
7330 Fri Jan  2 01:39:58 1998  Ben Pfaff  <blp@gnu.org>
7331
7332         * ascii.c: (ascii_postopen) Replace ASCII_* macros with their
7333         expansions.
7334         (ascii_postopen_driver) Fix initialization of *_spacing so that
7335         the TAL_0 bit doesn't count.
7336
7337         * data-list.c: (dump_fixed_table) Use natural width for Format
7338         column.
7339
7340         * glob.c: (rerange) Removed.
7341         (get_date) Formatting fixes.  Internationalization fix.
7342
7343         * html.c: (html_postopen_driver) Replace HTML_DEFAULT_OUTPUT_FILE
7344         with "pspp.html".
7345
7346         * postscript.c: (ps_postopen_driver) Replace
7347         PS_DEFAULT_OUTPUT_FILE with "pspp.ps".
7348
7349         * som.c: (som_submit) Don't eject page before every table.
7350         (output_table) Fix order of arguments on call to area().
7351         (render_columns) Fix calculation of max_len.
7352         
7353         * tab.c: (tabi_cumulate) Minor change to increase elegance.
7354         (render_strip) New function.
7355         (strip_height) New function.
7356         (tabi_render) Rewrite as calls to render_strip().
7357
7358         * tab.h: (TAT_* enums) Removed TAT_RICH, all references removed.
7359         Renumbered TAT_PRINTF, TAT_TITLE, TAT_FIX to correspond better
7360         with the TAB_* and OUTP_T_* constants.
7361         
7362 Thu Jan  1 11:53:52 1998  Ben Pfaff  <blp@gnu.org>
7363
7364         * Makefile.am: Formatting fixes.
7365
7366         * ascii.c: (ascii_postopen_driver) Initialize *_line_spacing[],
7367         *_line_width[].
7368
7369         * data-list.c: (dump_fixed_table) Add tab_dim() call.
7370
7371         * descript.q: (dump_z_table, display) Add tab_dim() calls.
7372
7373         * dump-sysfile.c: (glob var length) Make type off_t.
7374         (usage) Fix arguments.
7375         (main) Return 0.
7376
7377         * output.h: (OUTP_T_*) Change constants' value to match tab.h.
7378         Now right-justification is the default so many references had to
7379         change.
7380         (struct outp_class) Removed line_width, all references changed.
7381         (OUTP_DEV_*) Add OUTP_DEV_DISABLED.
7382         (struct outp_driver) Add elements horiz_line_width,
7383         vert_line_width, horiz_line_spacing, vert_line_spacing.  Remove
7384         som element.
7385
7386         * postscript.c: (outp_encodings) Formatting fixes.  Fix garbage
7387         collection.
7388         (postopen) Initialize all the informational members of
7389         outp_driver.
7390
7391         * som.c: (som_blank_line) New function, renamed from blank_line(),
7392         all references changed.
7393         (som_submit) Disables drivers whose pages can't be opened.
7394         (render_columns, render_simple, render_segments) Add debug output.
7395         (render_columns) Fix loop range.
7396         (render_simple) Don't try to render the headers, they're taken
7397         care of automatically.  Advance cp_y past the table when done.
7398         (render_segments) Fix loop ranges.
7399
7400         * tab.c: Initialize new members of tab_table.
7401         (tab_vline) Handle trv[]; don't set style for spacing-only lines.
7402         (tab_hline) Handle trh[]; don't set style for spacing-only lines.
7403         (tab_box) Handle trh[], trv[]; don't set style for spacing-only
7404         lines.
7405         (set_expr) Removed.
7406         (tab_dim) New function.
7407         (tab_col_width) Removed.
7408         (tab_row_height) Removed.
7409         (tab_output_text) Call tab_dim().
7410         (tabi_driver) Call evaluate_dimensions(), sum_columns().
7411         (tabi_area) Implemented.
7412         (tabi_cumulate) Implemented.
7413         (tabi_render) Partially implemented, but broken.
7414         (var tab_table_class) Made static.
7415         (evaluate_dimensions) New function.
7416         (sum_columns) New function.
7417
7418         * tab.h: (enum t_*) Now start at t_end.  New: t_ptw, t_nr, t_nc,
7419         t_nah, t_naw, t_neg, t_xch, t_dup, t_lbl, t_jnz, t_sac, t_sar,
7420         t_scr, t_srr, t_sentinel.  Removed: t_nat.
7421         (struct tab_table) New: wl, wr, ht, hb, trh, hrh, trv, wrv, dim,
7422         max_stack_height, w, h.  Removed: ce, re.
7423         (macro blank_line) Removed.
7424         (glob var zero_length) Removed.
7425
7426 Fri Dec 26 15:44:31 1997  Ben Pfaff  <blp@gnu.org>
7427
7428         * Most source files: include some of the new include files broken
7429         out of var.h.
7430         
7431         * Makefile.am: (pspp_SOURCES) Add all the new source files to the
7432         list.
7433
7434         * aggregate.c: (glob var outfile) Make static.
7435
7436         * command.c: (glob var pgm_state) Move here.
7437
7438         * common.c: (glob vars endian, second_lowest_value, pgmname,
7439         finished, curdate, cur_proc, start_interactive, history_file) Move
7440         here.
7441
7442         * descript.q: (structs dsc_z_score, descriptives_trns) Move here.
7443
7444         * file-handle.q: (glob vars files, inline_file) Move here.
7445
7446         * glob.c: Lost lots of glob vars, detailed in individual file
7447         entries.
7448         (init_glob) set_printer, set_screen were obsolete, deleted.
7449         set_cprompt has fewer spaces because pspp has fewer letters than
7450         fiasco.
7451
7452         * inpt-pgm.c: (glob vars inp_init, inp_init_size) Move here.
7453         (inp_nval) Made static.
7454
7455         * lexer.c: (glob vars token, tokval, tokstr, tokstr_size,
7456         tokstr_len, toklongstr, tokint) Move here.
7457
7458         * misc.c: Lost several vars and functions.
7459
7460         * set.q: (all the set_* variables) Move here.
7461
7462         * str.c: (strmaxcpy, strbarepadcpy, strbarepadlencpy, strpadcpy,
7463         blpstrset, strpadcmp, memrev, memrmem, cmp_str) Move here from
7464         misc.c.
7465
7466         * tab.c: (set_expr, tab_col_width, tab_row_height) New functions.
7467
7468         * tab.h: (enum series t_*) New enums.
7469         (struct tab_table) Use arena struct tag.  New members ce, re.
7470
7471         * tokens.h: Comment fixes.
7472
7473         * var.h: Move lots of enums and variables and functions and
7474         structures to other files.  Use and declare a lot more union and
7475         struct tags.  Comment fixes.  
7476
7477         * vector.c: (glob vars vec, nvec) Move here.
7478
7479         * vfm.c: (glob vars reinit_sysmis, reinit_blanks, init_zero,
7480         init_blanks, last_vfm_invocation) Move here.
7481
7482         * cases.h: New file.
7483         (struct long_vec) Move here.
7484         (vec_init, vec_clear, vec_insert, vec_delete, devector, envector)
7485         Move here.
7486
7487         * command.h: New file.
7488         (STATE_* enums) Move here.
7489         (glob var pgm_state) Move here.
7490
7491         * format.c: New file.
7492         (glob var formats) Move here.
7493         (parse_format_specifier_name, fmt_to_string,
7494         check_input_specifier, check_output_specifier,
7495         check_string_specifier, convert_fmt_ItoO, parse_format_specifier)
7496         Move here.
7497
7498         * format.h: New file.  Move functions now in format.c here.
7499         (FMT_* enums) Move here.
7500         (struct fmt_desc) Move here.
7501         (FCAT_* enums) Move here.
7502         (struct fmt_spec) Move here.
7503         (glob vars formats, fmt_parse_ignore_error) Move here.
7504
7505         * inpt-pgm.h: New file.
7506         (INP_* enums) Move here, make #defines into enums.
7507         (glob vars inp_init, inp_init_size) Move here.
7508
7509         * sort.h: New file.
7510         (glob vars v_sort, nv_sort) Move here.
7511         (sort_cases, read_sort_output) Move here.
7512
7513         * vector.h: New file.
7514         (struct vector) Move here, add struct tag.
7515         (glob vars vec, nvec) Move here.
7516         (find_vector) Move here.
7517
7518         * New file.
7519         (glob vars last_vfm_invocation, temp_case, reinit_sysmis,
7520         reinit_blanks, init_zero, init_blanks) Move here.
7521         (struct case_stream) Move here.
7522         (glob vars vfm_source, vfm_sink, vfm_memory_stream,
7523         vfm_disk_stream, sort_stream, data_list_source,
7524         input_program_source, file_type_source, get_source, n_lag) Move
7525         here.
7526         (procedure, write_case, lagged_case, compact_case, page_to_disk)
7527         Move here.
7528                 
7529 Wed Dec 24 22:40:42 1997  Ben Pfaff  <blp@gnu.org>
7530
7531         * Makefile.am: (pspp_SOURCES) Added html.c, som.c, som.h.
7532         (LDADD) Add libdcdflib.
7533
7534         * ascii.c: Comment and formatting fixes.  Almost every external
7535         function had an assert added, checking driver_open and page_open.
7536         (ascii_init_driver) Broken into ascii_preopen_driver,
7537         ascii_postopen_driver, ascii_close_driver.  Manages driver_open.
7538         (ascii_open_page) Sets page_open.
7539         (ascii_close_page) Clears page_open.
7540
7541         * html.c: Comment and formatting fixes.  Almost every external
7542         function had an assert added, checking driver_open and page_open.
7543         (html_init_driver) Broken into html_preopen_driver,
7544         html_postopen_driver, html_close_driver.  Manages driver_open.
7545         (html_open_page) Sets page_open.
7546         (html_close_page) Clears page_open.
7547         (html_submit) Disabled.
7548
7549         * lexer.c: (parse_string) Remove debugging printf.
7550
7551         * list.q: (determine_layout) Open a page if one is not yet open.
7552
7553         * output.c: Comment fixes.
7554         (add_class) Set the class member of the new list element.
7555         (parse_options) Don't handle device type.
7556         (colon_tokenize) New function.
7557         (configure_driver) New four-field format with a field for device
7558         type.  Now initialize driver_open, page_open, next, and prev
7559         fields.  Use new colon_tokenize() function.  Don't do a memory
7560         copy to replace a driver, it doesn't work; instead delete the old
7561         driver and insert a new one.
7562         (destroy_driver) Don't call som_destroy_driver().  Close the page
7563         if it's open.  Find the class in the list of classes and decrement
7564         that reference count.  Remove the driver from the global driver
7565         list.
7566         (outp_iterate_enabled_drivers) Renamed outp_drivers().  All
7567         references changed.  Rewritten.  Don't return a driver that's not
7568         enabled.
7569         (outp_eject_page) All references to som_internal_eject_page()
7570         changed to use this.  Sets cp_x to 0 as well as cp_y.
7571
7572         * output.h: (OUTP_I_* enums) Removed.
7573         (struct som_submission_form) Removed.
7574         (struct outp_class) init_driver broken into preopen_driver,
7575         postopen_driver, and close_driver.  submit changed to take a
7576         som_table argument.
7577
7578         * postscript.c: Comment and formatting fixes.  Almost every
7579         external function had an assert added, checking driver_open and
7580         page_open.
7581         (ps_init_driver) Broken into ps_preopen_driver,
7582         ps_postopen_driver, ps_close_driver.  Manages driver_open.
7583         (ps_open_page) Sets page_open.
7584         (ps_close_page) Clears page_open.
7585
7586         * som.c: New file, base implementation.
7587         
7588         * som.h: (struct som_table) Add struct tag.
7589         (enum SOM_COL_ACROSS) Removed.
7590         (SOM_ROWS, SOM_COLUMNS) New enums.
7591         (struct som_table_class) Add member `cumulate'.  Remove `segment';
7592         change `render' arguments.
7593         (struct som_point, struct som_rect) Removed.
7594         (som_submit_table) Fixed typo, should have been som_submit.
7595
7596         * sysfile-info: (describe_variable) Don't try to insert a
7597         subtable; just destroy it for now.
7598
7599         * t-test.q: Include dcdflib/cdflib.h instead of cdflib.h.  Fix
7600         references to value labels.
7601
7602         * tab.c: (tab_destroy) New function.
7603         (tab_columns) Change argument.
7604         [0] (tab_submit) Remove dead code.
7605         (tab_title) Allocate string from the table's arena.
7606         (tab_output_text) Only free the buffer if we allocated it.
7607         (tab_submit) New function.
7608         (static vars t, d) New static vars.
7609         (tabi_table, tabi_driver, tabi_count, tabi_area, tabi_columns,
7610         tabi_headers, tabi_cumulate, tabi_render) New functions.
7611         (glob var tab_table_class) New global var.
7612
7613         * tab.h: (struct tab_join_rect) Don't use a som_rect; directly
7614         encapsulate the rectangle.  All references changed.
7615         
7616 Sun Dec 21 16:18:58 1997  Ben Pfaff  <blp@gnu.org>
7617
7618         * All header files updated to use struct tags in addition to
7619         typedefs for all structures.  Don't use word `struct' in struct
7620         tags.
7621         
7622         * Makefile.am: (pspp_SOURCES) Remove html.c.
7623         (INCLUDES) Replace the lib/* includes with a single lib/ include;
7624         all references updated.
7625
7626         * command.c: (parse_cmd) Remove call to som_check_workspace.
7627         (output_line) Update to new som.
7628
7629         * data-in.c: (parse_numeric) A single dot is not an error; it is
7630         the system-missing value.
7631
7632         * data-list.c: (dump_fixed_table, dump_free_table) Update to new
7633         som.
7634
7635         * data-out.c: Added `const' as appropriate to many prototypes.
7636         (convert_E, convert_F, convert_CCx) Take double argument instead
7637         of value * argument.
7638         (convert_format_to_string) Call changed functions appropriately.
7639         Instead of modifying the caller's value for FCAT_SHIFT_DECIMAL,
7640         make a local copy of the value.
7641
7642         * descript.q: Remove custom_variables() prototype now provided by
7643         q2c.  
7644         (custom_variables) Don't increment sbc_variables, the caller does
7645         this.
7646         (dump_z_table, display) Update to new som.
7647
7648         * error.c: (vmsg) Add const to prototype.  Remove code to handle
7649         `too many errors' condition.
7650         (check_error_count) New function.
7651         (msg) Add const to prototype.
7652
7653         * filename.c: (open_file) Rewrite for elegance.
7654
7655         * frequencies.q: Remove custom_*() prototypes now provided by q2c.
7656         (dump_full, dump_condensed, dump_statistics) Update for new som.
7657
7658         * list.q: Don't include somP.h.  Change all references to
7659         som_driver_ext to refer to the new members of som_driver.  Change
7660         som_internal_eject_page() references to outp_eject_page().
7661
7662         * main.c: (parse) Rewrite for elegance.  Add call to
7663         check_error_count().
7664
7665         * output.c: (add_class, outp_list_classes, outp_configure_driver)
7666         Rewrite or revise for new outp_driver_class_list structure.
7667         (outp_iterate_enabled_drivers) Fix comparison between disabled
7668         devices and current device type.
7669         (outp_eject_page) New function.
7670
7671         * output.h: Comment fixes.
7672         (struct outp_driver) New members driver_open, page_open, cp_x,
7673         cp_y, font_height, prop_em_width, fixed_width.  Deleted members
7674         ref_count, next.
7675         (struct outp_driver_class_list) New struct.
7676         (outp_class_list) Changed to type outp_driver_class_list; all
7677         references updated.
7678
7679         * print.c: (dump_table, print_trns_proc) Updated for new som.
7680
7681         * q2c.c: (dump_vars) Simplify array subcommand code.  Declare
7682         prototypes for custom subcommands.
7683         (dump_subcommand) Always include the `else'.
7684         (dump_parser) Fix comments in output code.
7685
7686         * set.q: Reordered functions.
7687
7688         * som-frnt.c, som-high.c, som-low.c, somP.h: Removed.
7689         
7690         * som.h: Rewritten from scratch.
7691
7692         * str.h: Remove dead code.
7693
7694         * tab.c, tab.h: New files, base implementation.
7695
7696         * sysfile-info.c: (cmd_sysfile_info, describe_variable) Update to
7697         new som.
7698
7699         * t-test.q: New code from John Williams
7700         <johnr.williams@stonebow.otago.ac.nz>.  Include math.h, cdflib.h.
7701         Many many new static vars and defines.
7702         (precalc, postcalc, g_postcalc, z_postcalc, t_pairs, t_groups,
7703         groups_calc, pairs_calc, z_dev_calc, z_calc) New functions.
7704         (struct value_list) New struct.
7705         (variance, covariance, pooled_variance, oneway, pearson_r, f_sig,
7706         t_crt, t_sig, print_t_groups) New functions.
7707         (cmd_t_test) Implemented.
7708
7709         * temporary.c: (cancel_temporary) Only free the temp_dict if it's
7710         non-NULL.
7711
7712         * vfm.c: (dump_splits) Update to new som.
7713
7714 Thu Dec  4 23:02:22 1997  Ben Pfaff  <blp@gnu.org>
7715
7716         * Makefile.am: (fiasco_SOURCES) Add html.c.
7717
7718         * aggregate.c: Base source.
7719
7720         * ascii.c: (postopen, preclose) Reformat.
7721
7722         * data-out.c, expr-evl.c: Comment fixes.
7723         
7724         * filename.c: (open_file) When opening a file for writing, use
7725         line buffering instead of full buffering for better interactive
7726         performance.  Suggested by Valerio Aimale
7727         <valerio@svpop.com.dist.unige.it>.  Also, recognize special file
7728         names `stdin', `stdout', `stderr'.
7729
7730         * groff-font.c: Comment fixes.
7731
7732         * html.c: New file; base version.
7733
7734         * list.q: (write_all_headers, clean_up, determine_layout,
7735         list_cases) Ignore `special' devices for now.  Needs to be fixed
7736         later.
7737
7738         * output.c: (outp_init) Add html driver to list; reverse list
7739         order.
7740
7741         * output.h: (struct outp_class_struct) New members `special',
7742         `submit'; comment fixes.  All references changed.
7743
7744         * postscript.c: (ps_init_driver) Make defaults for text_opt,
7745         line_opt depend on whether the OUTP_DEV_SCREEN bit is set on the
7746         device.
7747         (postopen) Comment fix.
7748         (preclose) Comment fixes, formatting fixes.  Change x->file.file
7749         references to more proper f->file.
7750
7751         * som-high.c: (som_submit_table) Special classes use their own
7752         renderers.
7753
7754         * som.h: Comment fixes.
7755
7756         * temporary.c: (new_dictionary) Don't try to xstrdup() a NULL
7757         string.
7758         
7759 Tue Dec  2 14:36:07 1997  Ben Pfaff  <blp@gnu.org>
7760
7761         * Makefile.am: (fiasco_SOURCES) Add aggregate.c back in.
7762
7763         * aggregate.c: Still working on this.
7764
7765         * command.c: (cmd_table[]) Add AGGREGATE back in.
7766         (split_words) Make '-' a legal word separator as well as ' '.
7767
7768         * main.c: Comment fixes.
7769
7770         * q2c.c: (dump_parser) Don't require the procedure's full name to
7771         be present, in the generated source.
7772
7773         * t-test.q: Change name to `t-test' from `t test'.  Let PAIRS be
7774         multiply specified and let it be default; let MISSING, CRITERIA,
7775         FORMAT be multiply specified.
7776         (cmd_t_test) Parse command name.  [DEBUGGING] Call debug_print().
7777         (custom_groups) Fix defaults.
7778         (custom_pairs) Check whether this is a PAIRS subcommand before
7779         attempting to parse.  Better garbage collection.  Proper storage
7780         allocation.
7781         [DEBUGGING] (debug_print) New function.
7782
7783         * temporary.c: Comment fixes.
7784         (copy_variable) Don't copy variable name and index.
7785         (save_dictionary) Copy variable name and index by hand.
7786
7787         * vars-atr.c: Comment fixes.
7788         (create_variable) New dictionary argument.  All references
7789         changed.
7790         (common_init_stuff) New dictionary argument.  All references
7791         changed.
7792         (init_variable) New dictionary argument.  All references changed.
7793         (dup_variable) New function.
7794
7795         * vars-prs.c: (parse_variables) If there are any errors, we always
7796         return 0.  Previously, it was possible for some types of errors to
7797         be ignored.
7798         
7799 Sat Nov 22 01:20:59 1997  Ben Pfaff  <blp@gnu.org>
7800
7801         * Makefile.am: (fiasco_SOURCES) For 0.1.5 release, remove
7802         aggregate.c.
7803
7804         * command.c: (cmd_table[]) Comment out AGGREGATE; add T TEST.
7805
7806         * list.q, t-test.q: Remove ALL option from VARLIST declaration in
7807         grammar rules.
7808
7809         * q2c.c: Comment fixes.
7810         (SBC_* enums) Remove SBC_VARLIST_ALL; all references removed.
7811         
7812         * t-test.q: (cmd_list) Rename cmd_t_test.
7813
7814         * temporary.c: (new_dictionary) Don't declare as static.
7815         
7816 Fri Nov 21 00:03:06 1997  Ben Pfaff  <blp@gnu.org>
7817
7818         * aggregate.c: Changes, still not finished.
7819
7820         * file-handle.q, frequencies.q, list.q, set.q: Comment fixes.
7821
7822         * q2c.c: Comment fixes.  Now its output is internationalized.
7823         (get_token) Fix parsing of escapes within literal strings.
7824         (main) Fix bad #line directives in output.
7825
7826         * t-test.q: Base implementation.
7827
7828         * temporary.c: (new_dictionary) New function.
7829         (restore_dictionary) [__CHECKER__] Change fill character to *
7830         (from @).
7831         
7832 Sun Nov 16 01:29:57 1997  Ben Pfaff  <blp@gnu.org>
7833
7834         * Makefile.am: (BUILT_SOURCES, fiasco_SOURCES) Add t-test.c
7835
7836         * aggregate.c: Changes, still not finished.
7837
7838         * descript.q, list.q: Comment fixes.
7839
7840         * q2c.c: Almost completely rewritten.
7841
7842         * t-test.q: New file, not complete.
7843
7844 Fri Nov 14 00:14:48 1997  Ben Pfaff  <blp@gnu.org>
7845
7846         * aggregate.c: Changes, still not finished.
7847
7848         * sort.c: (sort_cases) Call cancel_temporary() instead of doing it
7849         by hand.
7850
7851         * temporary.c: (cancel_temporary) New function.
7852
7853         * vars-atr.c: (discard_variables) Call cancel_temporary() instead
7854         of doing it by hand.
7855
7856         * vfm.c: (close_active_file) After restoring a TEMPORARY
7857         dictionary, set temp_dict to NULL.  Cancel TEMPORARY through
7858         cancel_temporary().
7859         (SPLIT_FILE_procfunc) Comment fix.
7860
7861 Tue Oct 28 16:08:45 1997  Ben Pfaff  <blp@gnu.org>
7862
7863         * Makefile.am: (fiasco_SOURCES) Add aggregate.c.
7864
7865         * aggregate.c: New file, not finished yet.
7866
7867         * command.c: (cmd_table) Add AGGREGATE.
7868
7869         * common.h: (pgm_state) Move declaration to var.h.
7870
7871         * lexer.c: (bin_value_func, oct_value_func, hex_value_func) i18n
7872         fixes.
7873         (parse_string) Message fix.
7874
7875         * recode.c: Comment fix.
7876
7877         * sfm-read.c: (read_variables) Code esthetic fixes.
7878         (write_header) Default date is `Jan', not `JAN'.
7879
7880         * sfmP.h: (bswap_int32) [!__linux__] Fix off-by-one errors.
7881
7882         * sort.c: (cmd_sort_cases) Farm the work out to new function
7883         parse_sort_variables().
7884         (parse_sort_variables) New function.
7885         (sort_cases) New function.  Cancels temporary transformations,
7886         which sorting didn't do previously.
7887         (cmd_sort_cases) Better garbage collection on error.  Uses
7888         do_external_sort().
7889         (write_initial_runs, merge_once) Improved code esthetics.
7890         (sort_stream_read) Reduced to one call to read_output_cases().
7891         (read_output_cases) New function.
7892
7893         * var-labs.c: (cmd_variable_labels) Re-enabled truncation of
7894         variable labels to 120 characters.
7895
7896         * var.h: Comment fixes.
7897         (glob var pgm_state) From common.h.
7898
7899         * vars-atr.c: (discard_variables) Set pgm_state to STATE_INIT.
7900
7901         * vars-prs.c: (parse_DATA_LIST_vars) Support PV_SINGLE in
7902         options.  Set *names to NULL on error.
7903
7904         * vfm.c: (memory_stream_init) Assert compaction_nval != 0.
7905
7906 Thu Oct  9 09:59:49 1997  Ben Pfaff  <blp@gnu.org>
7907
7908         * sfm-write.c, vfm.c: [HAVE_UNISTD] #include <unistd.h>, needed by
7909         SunOS4.  From Alexandre Oliva <oliva@dcc.unicamp.br>.
7910
7911 Wed Oct  8 18:55:24 1997  Ben Pfaff  <blp@gnu.org>
7912
7913         * vfm.c: (page_to_disk) Added missing local variables.
7914
7915 Tue Oct  7 20:23:17 1997  Ben Pfaff  <blp@gnu.org>
7916
7917         * get.c: Comment fix.
7918
7919         * sort.c: (cmd_sort_cases) Attempt to perform internal sort if the
7920         source is anything other than a disk stream, not just if it's in a
7921         memory stream.  Call page_to_disk() before external sort.
7922         (allocate_cases) Message fix.
7923
7924         * vfm.c: (prepare_for_writing) Warn user when paging workspace to
7925         disk.
7926         (page_to_disk) New function.
7927
7928 Sun Oct  5 15:56:14 1997  Ben Pfaff  <blp@gnu.org>
7929
7930         * Makefile.am: (INCLUDES) Include .. instead of $(top_srcdir).
7931
7932         * common.h: (macro strerror) Remove.  From Alexandre Oliva
7933         <oliva@dcc.unicamp.br>.
7934
7935         * get.c: (dict_delete_run) The number of variables to delete is
7936         not necessarily the number of variables that need to be shifted
7937         up.
7938         (trim_dictionary) Don't set *options to 0.  Fix bug that caused
7939         too many variables to be deleted.
7940
7941         * postscript.c: Comment fix.
7942
7943         * q2c.c: Include strerror.c.  From Alexandre Oliva
7944         <oliva@dcc.unicamp.br>.
7945
7946         * set.q: #undef ON and OFF.  From Alexandre Oliva
7947         <oliva@dcc.unicamp.br>.
7948
7949         * sfm-read.c: (sfm_read_dictionary) Don't set the file class too
7950         early, otherwise errors cause a bad free().
7951
7952         * str.h: (macro nvsprintf) s/FORMATS/FORMAT/ typo.  From Alexandre
7953         Oliva <oliva@dcc.unicamp.br>.
7954
7955         * temporary.c: (save_dictionary) Don't allocate memory if
7956         n_documents is 0.
7957
7958         * vfm.c: (memory_stream_write) Message fix.
7959
7960 Sat Oct  4 16:20:43 1997  Ben Pfaff  <blp@gnu.org>
7961
7962         * command.c: (static var cmd_table[]) Define REPEATING DATA
7963         command.
7964
7965         * common.h: Added support for broken systems that are missing
7966         EXIT_SUCCESS, EXIT_FAILURE, RAND_MAX, and/or strerror().
7967
7968         * Many source files: Replace syntax error messages via msg() with
7969         call to syntax_error().
7970
7971         * data-list.c: (dump_fixed_table) Add support for dumping table
7972         for REPEATING DATA as well as DATA LIST FIXED.
7973         (cmd_repeating_data) Allows and requires `/' between subcommands.
7974         Does proper thing with allowing rpd.starts_end to stay 0.  Allows
7975         CONTINUED specifications to be omitted.  Forces CONTINUED to be
7976         specified if ID is.  Calculates starts_end, cont_end from logical
7977         record length as reported by fhp.  Calls dump_fixed_table() if
7978         requested.  Fixed length of record copied by memcpy.
7979         (parse_num_or_var) Sets `num' to 0, not NOT_INT, for variables.
7980         Message fix.
7981         (realize_value) Returns sensible value for out-of-range variable
7982         values.
7983         (rpd_parse_record) New argument `ofs'.  Fixed confusion between
7984         length of occurrences and length of line.  Added warning for
7985         fields that exceed the line length.  Fixed infinite loop.
7986         (read_one_set_of_repetitions) Numerous minor changes for more
7987         complete SPSS compliance.  Message fixes.
7988
7989         * dfm.c: (dfm_close) If the file being closed is the inline file,
7990         read all the remaining data before closing it.
7991         (dfm_get_record) Don't close the file on lossage, as either it
7992         has been closed already or it doesn't belong to us.
7993
7994         * error.c: (puts_stdout) New function.
7995         (vmsg) Use puts_stdout instead of puts.
7996
7997         * file-handle.q: (fh_record_width) New function.
7998
7999         * inpt-pgm.c: (init_case) Fixed buffer overrun when inp_nval % 4
8000         == 0.
8001         (clear_case) Ditto.
8002         (input_program_source_read) Made an old kluge an approved method.
8003
8004         * lexer.c: (syntax_error) New function.
8005
8006         * misc.c: [BROKEN_RAND] (ansi_rand, ansi_srand; static var next)
8007         New.
8008
8009         * output.c: (oupt_get_paper_size) Message fix.
8010
8011         * q2c.c: Numerous fixes to formatting of generated code made to
8012         conform to GNU coding standards.  Uses syntax_error() in generated
8013         code.  Other miscellaneous generated message fixes.  Added support
8014         for broken systems that are missing EXIT_SUCCESS, EXIT_FAILURE,
8015         RAND_MAX, and/or strerror().
8016
8017 Sat Oct  4 02:09:56 1997  Ben Pfaff  <blp@gnu.org>
8018
8019         * data-in.c: Comment fixes.
8020
8021         * data-list.c: (struct repeating_data_trns) New member `id_spec'.
8022         (find_variable_input_spec) New function.
8023         (cmd_repeating_data) Initializes id_spec.
8024         (rpd_parse_record) Implemented.
8025         (read_one_set_of_repetitions) Returns -3 by default in order to
8026         kluge out some potential bugs.
8027
8028         * data-out.c: Comment fixes.
8029
8030         * file-type.c: (internal_cmd_record_type) Message fix.
8031
8032         * inpt-pgm.c: (input_program_source_read) Special temporary kluge
8033         for handling -3 return value.
8034
8035 Sat Sep 20 23:58:15 1997  Ben Pfaff  <blp@gnu.org>
8036
8037         * data-list.c: Comment fixes.
8038         (struct dls_var_spec) Reordered members.
8039         (read_from_data_list_fixed) Restructured.
8040         (struct repeating_data_trns) Reordered members.  Renamed `starts'
8041         as `starts_beg', `ends' as `starts_end'.
8042         (cmd_repeating_data) Calculates length of repeated data if
8043         necessary and possible.
8044         (parse_num_or_var) Don't allow string variables.
8045         (realize_value) New function.
8046         (rpd_msg) New function.
8047         (rpd_parse_record) New function.  Currently stubbed out.
8048         (read_one_set_of_repetitions) Implemented.
8049
8050         * inpt-pgm.c: (input_program_source_read) Comment fix.
8051
8052 Thu Sep 18 21:34:57 1997  Ben Pfaff  <blp@gnu.org>
8053
8054         * command.c: (cmd_end_repeat_p) Removed.
8055         (init_cmd_parser) Doesn't set cmd_end_repeat_p.
8056         (parse_cmd_name) Removed.
8057
8058         * data-list.c: Comment fixes.
8059         (data_list_pgm) Removed `eof' member.
8060         (static var first) New var.
8061         (cmd_data_list) Sets `first'.  Ensures that DATA LIST uses the
8062         FILE TYPE file inside FILE TYPE structures.
8063         (append_var_spec) Appends to *first, not dls.spec.
8064         (parse_fixed) Message fixes.
8065         (struct rpd_num_or_var) New.
8066         (struct repeating_data_trns) New.
8067         (static var rpd) New.
8068         (cmd_repeating_data) New function.
8069         (parse_num_or_var) New function.
8070         (parse_repeating_data) New function.
8071         (read_one_set_of_repetitions) New function.
8072
8073         * file-type.c: (cmd_file_type) Message fixes.  Always
8074         default_handle to FILE TYPE file handle.
8075         (internal_cmd_record_type) Message fixes.
8076
8077 Wed Aug 20 14:22:03 1997  Ben Pfaff  <blp@gnu.org>
8078
8079         * repeat.c: Comment fix.  Disable debugging.
8080
8081         * temporary.c: (restore_dictionary) Sets splits to NULL and
8082         n_splits to 0 before destroying the variables because now doing
8083         this tries to remove split variables.
8084
8085         * vars-atr.c: (discard_variables) Asserts that n_splits is 0 after
8086         destroying the dictionary.
8087         (clear_variable) Removes a variable from splits after destroying
8088         it.
8089
8090 Mon Aug 18 18:06:55 1997  Ben Pfaff  <blp@gnu.org>
8091
8092         * cmdline.c: (set_compat) Removed.
8093         (pick_compat) Removed.
8094         (parse_command_line) Removed -c option.
8095         (pre_syntax_message) Removed -c option.
8096         (usage) Remove compatibility code.
8097
8098         * common.h: (macros VER_PC, VER_WND, VER_X) Removed.
8099         (glob var compat) Removed.
8100
8101         * compute.c: (type_check) Fixed messages about type mismatches.
8102
8103         * data-list.c: (cmd_data_list) Removed compatibility code.
8104         (fixed_parse_compatible) Calls convert_negative_to_dash().
8105         Fixed bug where it only set the variable in fx.spec if it created
8106         the variable itself.
8107         (dump_fmt_list) Spelling fix.
8108         (cut_field) Removed compatibility code.
8109
8110         * dfm.c: (cmd_begin_data) Don't require a command terminator on
8111         BEGIN DATA command.
8112
8113         * expr-evl.c: (evaluate_expression) Implement LAG.
8114
8115         * expr-prs.c: (parse_add) Calls convert_negative_to_dash().
8116         (parse_neg) Calls convert_negative_to_dash().
8117         (LAG_func) Increases n_lag to the lag requested.  Fixed assignment
8118         bug.
8119
8120         * expr.h: (struct expression_struct) Removed member max_lag.
8121
8122         * file-type.c: (parse_col_spec) Calls convert_negative_to_dash().
8123         (internal_cmd_record_type) Removed special handling to produce
8124         negative numbers from dash tokens.
8125
8126         * getline.c: (static var DO_REPEAT_level) New var.
8127         (getl_add_DO_REPEAT_file) Increments DO_REPEAT_level.
8128         (handle_line_buffer) Copies the line into getl_buf; doesn't call
8129         copy_with_DO_REPEAT_substitutions().
8130         (getl_read_line) Maintains value of getl_mode.  Calls
8131         perform_DO_REPEAT_substitutions() whenever DO_REPEAT_level is
8132         positive.
8133         (getl_close_file) Decrements DO_REPEAT_level when appropriate.
8134
8135         * getline.h: (getl_mode) New glob var.
8136
8137         * glob.c: Comment fixes.
8138         (init_glob) Restructured.  Sets set_seed.
8139         (init_compat_dependent) Removed.  All references removed.
8140         (get_date) Format changed from MM/DD/YY to DD MMM YYYY.
8141         (__htonl, __htons) Removed.  (What were these for?)
8142
8143         * lexer.c: (static var tbl) Dash set to class CNUM.
8144         (make_hexit) New function from data-out.c.
8145         (get_token_representation) Rewritten.
8146         (convert_negative_to_dash) New function.
8147         (lex_init_compat_dependent) Removed.
8148         (yylex) A dash is parsed as part of a number if it is followed by
8149         a digit.  The ASCII representation of a number is copied to
8150         tokstr.  String parsing farmed out to parse_string().  Comment
8151         fixes.
8152         (bin_value_func, oct_value_func, hex_value_func, parse_string) New
8153         functions.
8154         (preprocess_line) Line processing depends on interactive/batch
8155         mode, not on compatibility mode.  Removed PC+ compatibility code.
8156
8157         * loop.c: (loop_3_trns_proc) Comment fix.
8158
8159         * main.c: Remove dead code.
8160         (main) Remove call to init_compat_dependent().
8161
8162         * misc.c: (convert_fmt_ItoO) Make E format conversion more
8163         conformant.
8164
8165         * print.c: (parse_string_argument) Calls
8166         convert_negative_to_dash().
8167         (fixed_parse_compatible) Calls convert_negative_to_dash().
8168
8169         * repeat.c: (RPT_* defines) Removed.
8170         (struct rpt_numeric) Removed.
8171         (struct repeat_entry) New member type, changed `replacement' from
8172         char * to char **.
8173         (clean_up) Deallocation adapted to new repeat_entry.
8174         (internal_cmd_do_repeat) `type' defaults to 0.  Remove lookahead()
8175         usage.  Creates vars for `type' of 1.
8176         (parse_ids) Sets type of 1.  Adapted to new repeat_entry.
8177         (store_numeric) Rewritten, new interface.
8178         (parse_numbers) Rewritten.
8179         (parse_strings) Rewritten.
8180         (find_DO_REPEAT_substitution) New function.
8181         (perform_DO_REPEAT_substitutions) New function.
8182         (copy_with_DO_REPEAT_substitutions) Removed.
8183         (debug_print) Rewritten.
8184
8185         * set.q: Comment fix.
8186         (custom_results) Removed compatibility code.
8187         (internal_cmd_set) Removed SET EMULATION subcommand.  Removed
8188         compatibility code.
8189
8190         * sysfile-info.c: (cmd_display) Removed compatibility code.
8191
8192         * tokens.h: Comment fixes.
8193         (token types enum) Removed `toktype' typedef name for this int
8194         type.  Removed SUBST.  Restructured.
8195
8196         * vars-atr.c: (discard_variables) Sets n_lag to 0.
8197
8198         * vars-prs.c: Comment fix.
8199
8200         * vfm.c: Comment fixes.
8201         (glob var n_lag) New var.
8202         (static vars lag_count, lag_head, lag_queue) New vars.
8203         (procedure) Removed argument nlag.
8204         (setup_lag) New function.
8205         (close_active_file) Discards lagging state.
8206         (lag_case) New function.
8207         (lagged_case) New function.
8208         (write_case) Lags a case if lagging.
8209
8210         * weight.c: (cmd_weight) Removed compatibility code.
8211         
8212 Sun Aug 17 22:34:40 1997  Ben Pfaff  <blp@gnu.org>
8213
8214         * getline.h: (struct getl_script) New members loop_index, macros.
8215
8216         * getline.c: (getl_add_file) Sets first_line field to NULL.
8217         (getl_add_DO_REPEAT_file) New function.
8218         (handle_line_buffer) When the current line's length is negative,
8219         set the filename and line number.  Increment line number after
8220         reading line.  Pass the line to
8221         copy_with_DO_REPEAT_substitutions() for processing.
8222         (getl_close_file) Free DO REPEAT lines before freeing the
8223         filename, and just set the filename to NULL when doing this,
8224         because otherwise the filename gets freed twice.
8225
8226         * glob.c: (glob var queuing) Removed.  All references removed.
8227
8228         * lexer.c: Comment fixes.
8229         (get_token_representation) New function.
8230
8231         * repeat.c: Comment fixes.
8232         (struct repeat_entry) Replaced type and v union members with a
8233         simple string.
8234         (append_record) New function.
8235         (internal_cmd_do_repeat) Started reforming it for the new
8236         repeat_entry struct.  Properly records filename changes in the
8237         getl_line_buf.  Fixed improper use of = for ==.  Fixed sense of
8238         strncasecmp() result usage.  Uses append_record() to simplify.
8239         Properly discards END REPEAT line.  Calls getl_add_DO_REPEAT_file
8240         to add in the file.
8241
8242         (copy_with_DO_REPEAT_substitutions) Started coding.
8243
8244         [DEBUGGING] (debug_print_lines) New function.
8245
8246         * set.q: (custom_results, internal_cmd_set) s/VER_PCP40/VER_PC/;
8247
8248         * tokens.h: (macro is_id1, is_idn) New macros.
8249
8250 Sat Aug 16 10:57:41 1997  Ben Pfaff  <blp@gnu.org>
8251
8252         * cmdline.c: (static var pre_syntax_message) Changed `win'
8253         compatibility mode to `wnd'.
8254
8255         * data-list.c: (fixed_parse_spss) Renamed
8256         fixed_parse_compatible().
8257
8258         * glob.c: (init_glob) Excise unused code for
8259         program_invocation_short_name.
8260
8261         * lexer.c: (preprocess_line) Leading indentors are ignored in Wnd
8262         as well as in X.
8263
8264         * print.c: (fixed_parse_spss) Renamed fixed_parse_compatible().
8265
8266         * set.q: `win' compatibility renamed `wnd'.
8267
8268 Thu Aug 14 22:11:12 1997  Ben Pfaff  <blp@gnu.org>
8269
8270         * filename.c: [__WIN32__] Change the included Windows header files
8271         (again).
8272         (absolute_filename_p) [__MSDOS__] A filename with a colon as the
8273         second character is absolute.
8274         (dirname) Fix logic error.  Don't printf() the results.
8275         (prepend_dir) Don't printf() the results.
8276
8277         * getline.c: (handle_line_buffer) New function.
8278         (getl_read_line) Reads line with handle_line_buffer() when
8279         appropriate.
8280         (getl_close_file) Discard line buffer data.
8281
8282         * getline.h: Comment fixes.
8283         (struct getl_line_list) New struct.
8284         (getl_script_struct) Added line buffer members.  These are hooks
8285         for use by DO REPEAT to allow it to insert virtual source code
8286         into the program.
8287
8288         * glob.c: (init_glob) [__DJGPP__ || (__WIN32__ && __BORLANDC__)]
8289         Override Borland C++ stupidity that claims Windows has a console
8290         window size of 0x3.
8291
8292         * repeat.c: This is in the process of being restructured from
8293         using a token-buffering approach to the DO REPEAT facility to
8294         using the more flexible approach of a line-buffering approach in
8295         conjunction with the getline module.  Comment fixes.
8296         (struct tok_struct) Removed.
8297         (static vars queue_index, queue_head, queue) Removed.
8298         (static vars line_buf_head, line_buf_tail) New vars.
8299         (internal_cmd_do_repeat) Instead of queuing tokens, queue lines.
8300         Not complete.
8301         (pull_queue, destroy_queue) Removed.
8302         [DEBUGGING] (debug_print_tokens) Removed.
8303
8304 Tue Aug  5 13:57:58 1997  Ben Pfaff  <blp@gnu.org>
8305
8306         * file-handle.q: (prepend_current_directory) New function.
8307         (internal_cmd_file_handle, fh_get_handle_by_filename) Prepends
8308         current directory before normalizing filename.
8309
8310         * filename.c: (gnu_getcwd) New function.
8311         (absolute_filename_p) New function.
8312         (search_path) New argument, PREPEND.  All references changed to
8313         pass NULL except those explicitly mentioned.  Uses
8314         absolute_filename_p().  Prepends PREPEND before trying the
8315         filename.
8316         (dirname, prepend_dir) New functions.
8317
8318         * getline.c: (getl_get_current_directory) New function.
8319         (getl_include) Passes getl_get_current_directory() as PREPEND arg
8320         to search_path().
8321                 
8322 Sun Aug  3 11:42:36 1997  Ben Pfaff  <blp@gnu.org>
8323
8324         * In several source files, the term `script' was replaced with
8325         `syntax file' inside error messages.  Usage of the term `script'
8326         in the sense of a syntax file is now deprecated.
8327
8328         * cmdline.c: (static vars pre_syntax_message, post_syntax_message)
8329         Updated messages.
8330
8331         * dump-sysfile.c: (usage) Update message.
8332
8333         * getline.c: (getl_read_line) Ignore lines beginning with `#!'.
8334
8335         * getline.h: (glob var getl_include_path) Declare extern.
8336
8337         * list.q: Define EXTERN as extern before #including somP.h.
8338
8339         * var.h: Remove declaration of `disptype' variable.
8340
8341         * vfm.c: (close_active_file) After switching the data sink to a
8342         data source, set vfm_sink to NULL, because it doesn't exist any
8343         more.
8344
8345 Thu Jul 17 21:41:44 1997  Ben Pfaff  <blp@gnu.org>
8346
8347         * glob.c: [__BORLANDC__] Include math.h.  Define _matherr() and
8348         _matherrl() to ignore all math errors.
8349
8350         * sfm-read.c: (read_value_labels) When reading the labels from
8351         disk, read the little parts separately instead of as a struct;
8352         this avoids alignment problems.
8353
8354         * sfm-write.c: (struct sfm_fhuser_ext) New member `elem_type'.
8355         (sfm_write_dictionary) Sets elem_type and frees it on lossage.
8356         (write_header) Allocates and initializes elem_type.
8357         (sfm_write_case) Uses elem_type to determine how to handle each
8358         flt64 element.
8359         (sfm_close) Frees elem_type.
8360
8361         * sfmP.h: Comment fix.
8362         [__BORLANDC__] Uses #pragma -a to adjust structure member
8363         alignment.
8364         
8365 Thu Jul 17 01:55:12 1997  Ben Pfaff  <blp@gnu.org>
8366
8367         * Makefile.am: (fiasco_SOURCES) Remove display.c.
8368
8369         * common.c: Fix typo.
8370
8371         * dfm.c: (read_record) Remove strncasecmp() emulation and fix the
8372         sense of the condition.
8373
8374         * expr-evl.c: (macro ALLOC_STRING_SPACE) [!PAGED_STACK] Add
8375         line-continuation backslash.
8376
8377         * filename.c: [__WIN32__] Include <windef.h> before <winbase.h>.
8378
8379         * frequencies.q: (custom_grouped, add_percentile) Don't use a
8380         non-constant expression as an argument to sizeof.
8381
8382         * glob.c: [__WIN32__ && __BORLANDC__] When including <conio.h>,
8383         undefine gettext macro because that's a conio function.
8384
8385         * hash.h: (hsh_prime_tab declaration) Remove.
8386
8387         * list.q: (write_fallback_headers) Move `leader' allocation out of
8388         main loop.  Change to local_alloc() allocation.
8389
8390         * output.h: Formatting fixes.  Put __attribute__ in right place on
8391         function prototypes.
8392
8393         * sfm-read.c: (read_machine_flt64_info, read_variables) Change
8394         incorrect `SECOND_LOWEST_VALUE' references to proper
8395         `second_lowest_value'.
8396
8397         * som-frnt.c: (EXTERN macro) Define as `extern' instead of null
8398         value.  This way 2 out of 3 of the som files define the vars
8399         extern, the correct way, that actually works under BC++.
8400         (som_set_float) Don't use nonconstant initializers for a struct.
8401
8402         * som-high.c: Add the standard alloca() header.
8403         (replicate_table) Add prototype.
8404
8405         Merged DISPLAY routine.
8406         * sysfile-info.c: (AS_*) New enum series.
8407         (cmd_sysfile_info) Gutted.  Calls describe_variable() to do the
8408         dirty work.
8409         (cmd_display, display_macros, display_documents,
8410         display_variables) Stolen from defunct display.c.
8411         (describe_variable) New function.
8412
8413         * temporary.c: [0] (display_tree) New debug function.
8414         (copy_variable) Performs shallow copy of value labels instead of
8415         deep copy; i.e., just copys the AVL tree and increments the
8416         reference counts.
8417
8418         * val-labs.c: Comment fixes.
8419         (do_value_labels) Optionally skip leading forward slash.
8420         (get_label) Creates only a single value label instead of many
8421         copies of one, and sets the reference count.
8422
8423         * display.c: Removed.
8424
8425         * dump-sysfile.c: New file, not yet complete.
8426
8427 Fri Jul 11 23:02:18 1997  Ben Pfaff  <blp@gnu.org>
8428
8429         For lots of source files I added more verbose_msg's.  These aren't
8430         listed below as they have tested as being benign.  In some cases
8431         these replaced debug_printf() calls.
8432
8433         * output.c: (outp_read_devices) Message fix.
8434
8435         * postscript.c: (output_encodings) Message fix.  Reports errors on
8436         fclose().
8437         (postopen) Message fix.
8438         
8439 Fri Jul 11 14:09:40 1997  Ben Pfaff  <blp@gnu.org>
8440
8441         * dfm.c: (dfm_close) Don't call fclose() for a NULL FILE.
8442
8443         * filename.c: (close_file_ext) Set f->file to NULL *after* closing
8444         it.
8445
8446         * main.c: Remove <malloc.h> #include.
8447
8448         * mis-val.c: (parse_numeric) Set .f member for each missing[]
8449         instead of trying to just set the missing[] itself, which is a
8450         gcc-specific idiom.
8451
8452         * sfm-read.c: (read_variables) Same.
8453
8454         * str.h: Add memmem() prototype.
8455
8456         * val-labs.c, var-labs.c: Replace <malloc.h> with <stdlib.h>.
8457
8458 Thu Jul 10 22:13:53 1997  Ben Pfaff  <blp@gnu.org>
8459
8460         * Makefile.am: (q2c) Don't include any libraries in the link.
8461
8462         * dfm.c: (force_line_buffer_extension) New macro.
8463         (count_tabs) New function.
8464         (tabs_To_spaces) New function.
8465         (read_record) Calls tabs_to_spaces() on the line being processed.
8466
8467         * q2c.c: Disabled i18n for this proglet so that libintl.a doesn't
8468         have to be compiled twice (once for CC, once for LOCAL_CC).
8469  
8470 Sun Jul  6 19:14:33 1997  Ben Pfaff  <blp@gnu.org>
8471
8472         * Makefile.am: (INCLUDES) Add intl directory; fix directories.
8473         (LDADD) Add @INTLLIBS@.
8474         (q2c) Add LIBS, @INTLLIBS@ to link step.
8475
8476         * inpt-pgm.c: Turn off debugging.
8477
8478         * postscript.c: (postopen) Format fix.  local_free() blocks
8479         returned by local_alloc(); don't free() them.
8480
8481 Sat Jul  5 23:44:51 1997  Ben Pfaff  <blp@gnu.org>
8482
8483         * data-in.c: (parse_string_as_format) Comment fix.  Fix check for
8484         string length.
8485
8486         * data-list.c: (read_from_data_list_fixed) Pass proper value for
8487         LEN arg, not simply the full string length.
8488
8489         * sort.c: (allocate_file_handles) Check SPSS compatible temp file
8490         directories before generic temp file directories.
8491
8492         * vfm.c: Disable debugging.
8493
8494 Fri Jul  4 13:26:41 1997  Ben Pfaff  <blp@gnu.org>
8495
8496         * get.c: Comment fix.
8497         (cmd_save_internal) Always passes GTSV_OPT_SAVE option.
8498
8499 Wed Jun 25 22:52:28 1997  Ben Pfaff  <blp@gnu.org>
8500
8501         * expr-prs.c: (debug_print_postfix) Conditionally included on
8502         GLOBAL_DEBUGGING.  Removed out_header() reference.
8503
8504         * exprP.h: Removed #undef GLOBAL_DEBUGGING.
8505
8506 Sun Jun 22 22:00:28 1997  Ben Pfaff  <blp@gnu.org>
8507
8508         * ascii.c: Removed obsolete ascii_close_page() prototype.
8509
8510         * command.c: (output_line) Comment fix.
8511
8512         * data-in.c: Formatting fix.
8513         (parse_string_as_format) Now the `fc' argument is used only for
8514         the purpose of error messages; it is not an index into the string
8515         passed.  All references changed.
8516
8517         * data-list.c: Comment fix.
8518         (cut_field) Comment fix.  Now returns the column number of the
8519         position of the field cut out on success.
8520         (parse_field) Added `column' argument.  Puts the column numbers in
8521         the error message.
8522         (read_from_data_list_free, read_from_data_list_list) Record the
8523         column number returned by cut_field(), pass it to parse_field().
8524
8525         * dfm.c: Comment fix.
8526
8527         * do-ifP.h: Comment fix.
8528
8529         * expr-prs.c: (SYSMIS_func) Implemented string-type arguments for
8530         the SYSMIS function.
8531
8532         * expr.h, exprP.h: Comment fix.
8533
8534         * glob.c: (init_glob) Only calls setlocale() and family if
8535         ENABLE_NLS set.
8536
8537         * hash.h: Comment fix.
8538
8539         * include.c: Comment fix.
8540
8541         * output.c: Comment fix.
8542
8543         * postscript.c: (ps_line_intersection) Simplified assertion.
8544
8545         * repeat.c: Comment fix.
8546
8547         * vars-atr.c: Comment fix.
8548
8549         * vars-prs.c: Comment fix.
8550
8551         * vfm.c: (vector_initialization) [DEBUGGING] Fixed undefined
8552         behavior with usage of postincrement.
8553         (memory_stream_read) Discards cases as it goes. 
8554
8555 Sun Jun 15 16:45:17 1997  Ben Pfaff  <blp@gnu.org>
8556
8557         * Makefile.am: Cleans q2c, not just distcleans it.  Distcleans
8558         foo.
8559
8560         * Most source files: Includes debug-print.h, related comment
8561         fixes.
8562
8563         * cases.c: (alloc_val) Removed complex allocation code.  Merely
8564         increments default_dict.nval and returns the former value.
8565         (envector, devector) Removed references to lv member of struct
8566         variable.
8567
8568         * common.h: (macro VME) Replaced complex definition with simple
8569         one.
8570
8571         * data-list.c: (cmd_data_list) Sets vfm_source instead of
8572         read_active_file and cancel_input_pgm.
8573         (read_from_data_list, cancel_data_list) Removed.
8574         (data_list_source_read, data_list_source_destroy_source) New
8575         functions.
8576         (glob var data_list_source) New var.
8577
8578         * dfm.c: (open_file_r, open_file_w) Simplified debug output.
8579         (cmd_begin_data) Improved criteria for an input program accessing
8580         the inline file.  Still not perfect.
8581
8582         * do-if.c: (do_if_trns_proc) Simplified debug output.
8583
8584         * expr-prs.c: Comment fixes.
8585         [DEBUGGING] (debug_print_postfix) Simplified debug output.
8586
8587         * file-handle.q: (fh_close_handle) Simplified debug output.
8588
8589         * file-type.c: Comment fixes.
8590         (cmd_file_type) Sets vfm_source instead of read_active_file and
8591         cancel_input_pgm.
8592         (cmd_end_file_type) On failure, discards variables in place of
8593         just canceling the input program.
8594         (read_from_file_type) Renamed file_type_source_read.
8595         (cancel_file_type) Renamed file_type_source_destroy_source.
8596         (glob var file_type_source) New var.
8597
8598         * get.c: (GTSV_* enum series) New enums GTSV_OPT_SAVE, GTSV_NONE.
8599         (cmd_get) Initializes options to GTSV_NONE before passing to
8600         trim_dictionary().  Removed `lv' reference.  Sets vfm_source
8601         instead of read_active_file and cancel_input_pgm.
8602         (cmd_save_internal) Initializes options before passing to
8603         trim_dictionary().  Local var `nval' removed.
8604         (dict_delete_run) Comment fixes.
8605         (trim_dictionary) Comment fixes.  Disallows scratch variables if
8606         GTSV_OPT_SAVE set in options.
8607         (read_from_get) Renamed get_source_read.
8608         (cancel_get) Renamed get_source_destroy_source.
8609         (glob var get_source) New var.
8610
8611         * inpt-pgm.c: (cmd_input_program) Sets vfm_source instead of
8612         read_active_file and cancel_input_pgm.
8613         (read_from_input_program) Renamed input_program_source_read.
8614         Simplified debug output.
8615         (cancel_input_program) Renamed
8616         input_program_source_destroy_source.
8617         (glob var input_program_source) New var.
8618
8619         * loop.c: (loop_1_trns_proc) Simplified debug output.
8620
8621         * main.c: (dump_token) Made eof output more explicit.
8622
8623         * sfm-read.c: (read_variables, dump_dictionary) Removed `lv'
8624         references.
8625
8626         * sort.c: (cmd_sort_cases) Disallows scratch variables.  Removed
8627         code for always-memory or always-disk cases.  malloc's case-list
8628         based on vfm_source_info.ncases.  Explicit support for
8629         memory_stream via memory_source_cases.
8630         (do_external_sort) Sets vfm_source instead of read_active_file and
8631         cancel_input_pgm.
8632         (allocate_file_handles) The temporary directory permissions are
8633         set to 0700 instead of 0777.
8634         (allocate_cases) Formatting fixes.  Simplified debug output.
8635         (output_record) Compacts the case if necessary before writing it
8636         out.
8637         (close_handle, open_handle_w) Simplified debug output.
8638         (write_initial_runs) Destroys vfm_sink, then sets it to
8639         sort_stream.  Writes records to memory based on
8640         vfm_sink_info.case_size.
8641         (write_to_sort_cases) Renamed sort_stream_write().
8642         (merge) Simplified error handling.  Simplified debug output.
8643         Formatting fixes.
8644         (read_from_external_sort) Renamed sort_stream_read().
8645         Reads records based on vfm_source_info.case_size.
8646         (sort_stream_write) Writes records to memory based on
8647         vfm_sink_info.case_size.
8648         (sort_stream_mode) New function.
8649         (glob var sort_stream) New variable.
8650
8651         * temporary.c: (cmd_temporary) Simplified debug output.
8652         (copy_variable) Removed references to `lv'.
8653
8654         * title.c: (get_title) Simplified debug output.
8655
8656         * var.h: Comment fixes.
8657         (struct get_proc) Removed member `lv'.
8658         (struct variable) Removed member `lv'.  Comment fixes.
8659         (glob vars read_active_file, write_active_file, cancel_input_pgm)
8660         Removed.
8661         (struct case_stream) New.
8662
8663         * vars-atr.c: (discard_variables) Changed cancel_input_pgm,
8664         read_active_file references to use vfm_source.
8665         (init_variable, replace_variable) Removed references to `lv'.
8666
8667         * vfm.c: Comment fixes.
8668         (glob var vfm_source, vfm_sink, vfm_source_info, vfm_sink_info)
8669         New variables.
8670         (static var queue, qh, qt, n_lag) Removed.  All references
8671         removed.
8672         (glob var compaction_necessary, compaction_nval, compaction_case,
8673         paging) New variables.
8674         (record_case) Removed.
8675         (procedure) Comment fixes.  Calls vfm_source->read() instead of
8676         read_active_file().
8677         (lag) Removed.
8678         (prepare_for_writing, arrange_compaction, make_temp_case,
8679         vector_initialization, setup_filter) New function.
8680         (open_active_file) Most of the code moved into the abovementioned
8681         new functions.  Now sets temp_dict to &default_dict if there is no
8682         temporary dictionary, for convenience.  New debug output.
8683         (close_active_file) Deals with changing the sink to the source.
8684         Calls finish_compaction().  Frees compaction_case.  Mostly
8685         rewritten.
8686         (glob vars disk_source_file, disk_sink_file) New vars.
8687         (destroy_active_file, read_from_memory) Removed.
8688         (disk_stream_init, disk_stream_read, disk_stream_write,
8689         disk_stream_mode, disk_stream_destroy_source,
8690         disk_stream_destroy_sink) New functions.
8691         (glob var vfm_disk_stream) New var.
8692         (glob vars memory_source_cases, memory_sink_cases,
8693         memory_sink_iter, memory_sink_max_cases) New vars.
8694         (memory_stream_init, memory_stream_read, memory_stream_write,
8695         memory_stream_mode, memory_stream_destroy_source,
8696         memory_stream_destroy_sink) New functions.
8697         (glob var vfm_memory_stream) New var.
8698         (write_case) Local var `i' renamed `cur_trns'; local var `retval'
8699         named `more_cases'.  Simplified debug output.  Otherwise mostly
8700         rewritten.
8701         (record_case) Moved into the stream drivers.  Removed.
8702         (transform) Removed (was dead code).
8703         (SPLIT_FILE_procfunc) s/vfm_replacement/vfm_sink_info/.  In the
8704         common case that the splits don't change, we don't need to copy
8705         the case into prev_case again--pointless.
8706         (compact_case) New function.
8707         (finish_compaction) New function.
8708
8709         * vfmP.h: Comment fixes.
8710         (DEV_* enum series) Removed. 
8711         (struct storage) Renamed `stream_info'.  Removed variant record.
8712         Removed `device' member.
8713
8714         * debug-print.h: New file.
8715         
8716 Sun Jun  8 01:12:38 1997  Ben Pfaff  <blp@gnu.org>
8717
8718         * autorecode.c: Turned off debugging.
8719
8720         * data-list.c: (destroy_dls) Closes the associated file handle.
8721
8722         * descript.q: (custom_variables) Added PV_NO_SCRATCH to
8723         parse_variables() options.
8724
8725         * dfm.c: (open_file_r) Removed gratuituous argument to msg() call.
8726
8727         * display.c: (display_variables) Really fixed null cell bug.
8728
8729         * file-handle.q: (fh_close_handle) Changed debugging message.
8730
8731         * frequencies.q: (custom_variables) Added PV_NO_SCRATCH to
8732         parse_variables() options.
8733
8734         * list.q: Added PV_NO_SCRATCH in q2c varlist options.
8735         (cmd_list) Fails if no variables specified.
8736         (determine_layout) Writes blank lines manually.
8737
8738         * loop.c: (loop_1_trns_proc) Made debugging code only print
8739         messages if debugging.
8740
8741         * q2c.c: (dump_subcommand) Appends sbc->message to SBC_VARLIST
8742         parse_variables() arguments.
8743         (main) Parses optional parenthesized options to varlist
8744         subcommands into sbc->message.
8745
8746         * sfm-read.c: Format fix.
8747
8748         * var.h: (FV_*) New enum series.
8749         (PV_*) New enum PV_NO_SCRATCH.
8750
8751         * vars-prs.c: (find_var) Removed.
8752         (fill_all_vars) Takes FV_* enum instead of boolean third
8753         argument.  Rewritten to deal with scratch as well as system
8754         variables.
8755         (parse_variables) Error message on scratch variable if
8756         PV_NO_SCRATCH set.
8757
8758         * vfm.c: (static var virt_begin_func) New var.
8759         (procedure) Sets up virt_begin_func.
8760         (SPLIT_FILE_procfunc) For the first case, calls virt_begin_func()
8761         after dump_splits().  For succeeding groups changes, calls
8762         virt_begin_func() instead of begin_func().      
8763
8764 Fri Jun  6 22:42:23 1997  Ben Pfaff  <blp@gnu.org>
8765
8766         * count.c, data-out.c, file-handle.q, list.q, loop.c: Turned off
8767         debugging.
8768
8769         * dfm.c: Added some debugging messages, disabled by default.
8770         (open_file_r) Fixed error message.
8771         (read_record) On eof on inline_file, instead of calling
8772         fh_close_handle(), simply jump to eof label like a normal file.
8773         Message fixes.
8774
8775         * display.c: Thin lines between rows for certain kinds of
8776         listing.  Fixed `null cell' bug.
8777
8778         * error.c: (failure) Flush stdout, stderr before failing.
8779
8780         * file-handle.q: (fh_close_handle) Added debugging message.
8781
8782         * frequencies.q: (dump_full) Bottom line extends across entire
8783         table width.  Changed title formatting.
8784         (dump_condensed) Changed title formatting.
8785         (dump_statistics) Fixed title formatting.
8786
8787         * glob.c: (init_glob) Moved initialization of cur_proc out of #if.
8788         Sets default value of set_format.
8789
8790         * list.q: (cmd_list) Calls blank_line() before determine_layout().
8791         Passes write_all_headers() to procedure() as pre-group func.
8792         (write_all_headers) New function.
8793         (determine_layout) Removed calls to write_header().
8794         Calls blank_line() before and after write_fallback_headers().
8795
8796         * recode.c: (recode_trns_free) Only attempts to free head->map if
8797         non-NULL.
8798
8799         * sfm-read.c: (read_variables) Allows `#' at beginning of system
8800         file variable names but gives a warning.  Sets `left' based on
8801         first character being/not being `#'.  On lossage frees dict->var.
8802
8803         * som-high.c: (som_draw_title) Simplified title formatting.
8804
8805         * vfm.c: (dump_splits) Fixed and changed splits formatting.
8806
8807 Thu Jun  5 22:51:15 1997  Ben Pfaff  <blp@gnu.org>
8808
8809         * autorecode.c: (cmd_autorecode) Sets h_trans to NULL at
8810         beginning.  Frees v_src, v_dest on successful exit.  Frees
8811         h_trans[*], h_trans on lossage.
8812         (recode) Frees h_trans[*], h_trans.
8813
8814         * dfm.c: (dfm_close) Formatting change.
8815         (open_inline_file) Now passed a dfm_fhuser_ext to initialize; no
8816         longer allocates its own in inline_file.
8817         (open_file_r) Passes the local dfm_fhuser_ext to
8818         open_inline_file().
8819         (open_file_w) Message fix. 
8820         (read_record) Buffer reallocation strategy changed.  Frees
8821         ext->line even in inline_file to prevent leaks.
8822         (dfm_put_record) Fixed bug where `ext' was cached before the file
8823         was opened and thus it would be NULL when the file really was
8824         open.
8825         (cmd_begin_data) Sets up inline_file basics itself, then calls
8826         open_inline_file() for the dfm_fhuser_ext.  Formatting fix.
8827
8828         * list.q: (write_line) Formatting fix.
8829         (clean_up) Minor strategy change.  Sets proportional font after
8830         finishing cleanup.
8831         (determine_layout) Sets fixed font before writing regular headers,
8832         or after writing fallback headers.
8833
8834         * modify-vars.c: (cmd_modify_vars) Frees variable lists for DROP
8835         and KEEP vars after using them.
8836
8837         * postscript.c: (ps_init_driver) Frees x->family.
8838         (postopen) When loading fonts, free the temporary font name buffer
8839         after using it.
8840         (ps_text_set_font_by_position) Free temporary font name buffer
8841         after using it.
8842         (text) Fixed code that calculated `lig' so that `lig' always gets
8843         initialized.  Formatting fix.
8844
8845         * som-low.c: (get_cell_size, som_get_table_size) `prop_height' ->
8846         `font_height'.
8847         [GLOBAL_DEBUGGIGN] (check_table) Use arena_alloc() to allocate
8848         cells, not xmalloc(), so that the cells will get destroyed
8849         automatically.
8850
8851         * sysfile-info.c: (cmd_sysfile_info) Frees the dictionary after
8852         using it.
8853
8854 Tue Jun  3 23:33:22 1997  Ben Pfaff  <blp@gnu.org>
8855
8856         * ascii.c: (ascii_text_draw) Always sets metrics for strings that
8857         are drawn.
8858
8859         * dfm.c: Comment fix.
8860
8861         * list.q: Comment fixes.  Include somP.h.  Removed static vars
8862         table, n_columns, n_rows, part.  New struct list_ext.  New static
8863         var line_buf.
8864         (n_lines_remaining, n_chars_width, write_line) New functions.
8865         (cmd_list, list_cases) Rewritten.
8866         (begin_row, end_row, flush_table) Removed.
8867         (write_header, clean_up, write_varname, write_fallback_headers,
8868         determine_layout) New functions.
8869
8870         * output.c: (outp_iterate_enabled_drivers) Minor reformat.
8871
8872         * output.h: Comment fix.
8873
8874         * postscript.c: Comment fix.
8875         (struct ps_driver_ext) Removed prop_size, fixed_size members;
8876         added font_size.  All references changed.
8877         (ps_init_driver) Initializes font_size.  Simplified space checking
8878         code.
8879         (static var option_tab[]) Removed prop-size, fixed-size; added
8880         font-size.
8881         (ps_option) Handles font_size.
8882
8883         * som-high.c: Moved prototypes into somP.h.
8884         (som_init_driver) New function.
8885         (som_submit_table) Moved some code into new function
8886         som_init_driver().
8887         (build_target) Moved some code into new function
8888         som_internal_eject_page().
8889         (som_eject_page) Uses som_internal_eject_page().
8890         (som_internal_eject_page) New function.
8891
8892         * som-low.c: Moved prototypes into somP.h.
8893
8894         * som.h: Formatting fixes.
8895
8896         * somP.h: (struct som_driver_ext) Removed em_width;
8897         added prop_em_width, fixed_width.
8898
8899 Mon Jun  2 14:25:25 1997  Ben Pfaff  <blp@gnu.org>
8900
8901         * Makefile.am: Added `localedir' definition.  Added
8902         -DLOCALEDIR="..." to DEFS.  Added -I. to INCLUDES.
8903
8904         * ascii.c: (macro draw_line) Fixed capitalization.
8905
8906         * ascii.c, autorecode.c, cases.c, cmdline.c, command.c, common.c,
8907         compute.c, count.c, data-in.c, data-list.c, data-out.c,
8908         descript.q, dfm.c, display.c, do-if.c, error.c, expr-evl.c,
8909         expr-opt.c, expr-prs.c, file-handle.q, file-type.c, filename.c,
8910         formats.c, frequencies.q, get.c, getline.c, glob.c, groff-font.c,
8911         hash.c, heap.c, include.c, inpt-pgm.c, lexer.c, list.q, loop.c,
8912         main.c, mis-val.c, misc.c, modify-vars.c, numeric.c, output.c,
8913         postscript.c, print.c, q2c.c, recode.c, rename-vars.c, repeat.c,
8914         sample.c, sel-if.c, sfm-read.c, sfm-write.c, sfmP.h, som-frnt.c,
8915         som-high.c, som-low.c, sort.c, split-file.c, sysfile-info.c,
8916         temporary.c, title.c, tokens.h, val-labs.c, var-labs.c,
8917         vars-atr.c, vars-prs.c, vector.c, vfm.c, weight.c: Marked strings
8918         for internationlization.
8919
8920         * glob.c: [HAVE_LOCALE_H] Includes locale.h.
8921
8922 Sun Jun  1 23:31:18 1997  Ben Pfaff  <blp@gnu.org>
8923
8924         * do-if.c, sort.c, val-labs.c: Comment fixes.
8925
8926         * glob.c: (init_glob) Uncommented, updated i18n support.
8927         
8928         * arena.c, ascii.c, data-in.c, descript.q, error.c, expr-evl.c,
8929         expr-opt.c, expr-prs.c, filename.c, frequencies.q, groff-font.c,
8930         output.c, postscript.c, sfm-read.c, som-high.c, vars-prs.c: Made
8931         the declarations of macros taking arguments a lot nicer.
8932
8933 Sun Jun  1 17:22:04 1997  Ben Pfaff  <blp@gnu.org>
8934
8935         * error.h: Removed CE, CW aliases for SE, SW.
8936
8937         * q2c.c: Removed explicit streq() definition since it's duplicated
8938         in str.h.
8939         
8940         * approx.h, error.h, font.h, hash.h, misc.h, output.h, somP.h,
8941         stats.h, str.h, tokens.h: Made the declarations of macros taking
8942         arguments a lot nicer-looking of <pinard@iro.umontreal.ca>.
8943         Comment fixes.
8944
8945 Sun Jun  1 12:02:06 1997  Ben Pfaff  <blp@gnu.org>
8946
8947         * cmdline.c: Comment fixes.
8948         (pick_compat) Changed return type to int.  Now, instead of setting
8949         glob var `compat' to the emulation, returns the emulation.  All
8950         references changed.
8951         (parse_command_line) Added terminating null to end of
8952         `long_options' array definition.
8953         (pre_syntax_message) Fixes.
8954         (usage) Shows the default emulation in the syntax message by
8955         calling pick_compat().
8956
8957         * getline.c: (getl_add_include_dir) Separates paths with
8958         PATH_DELIMITER, not DIR_SEPARATOR.
8959
8960         * glob.c: (init_glob) Fixed references to DEFAULT_VER_PCP40,
8961         DEFAULT_VER_WIN61, DEFAULT_VER_X40.
8962
8963         * output.c: (outp_configure_macro) Make earlier definitions for a
8964         particular key override later ones for the same key.
8965         
8966 Fri May 30 19:40:49 1997  Ben Pfaff  <blp@gnu.org>
8967
8968         * ascii.c: Comment fixes.
8969
8970         * output.c: (outp_get_paper_size)
8971         s/STAT_OUTPUT_INIT_FILE/STAT_OUTPUT_PAPERSIZE_FILE/.
8972         
8973 Sun May 25 22:34:07 1997  Ben Pfaff  <blp@gnu.org>
8974
8975         * ascii.c, postscript.c, sfm-read.c, sfm-write.c, sort.c: Include
8976         <errno.h>.  GNU libc 2 enforces this!
8977
8978         * command.c: (parse_cmd) Fixed problem with `else' clause being
8979         paired with wrong `if'.  Comment fix.
8980
8981 Fri May  9 16:53:52 1997  Ben Pfaff  <blp@gnu.org>
8982
8983         * getline.c: [!HAVE_LIBREADLINE] (read_console) Changed
8984         blp_getline() to getline().
8985
8986         * output.c: (outp_eval_dimension) Changed the fix from last time;
8987         there was no variable `a'.
8988
8989         * q2c.c: (get_line) Fixed boundary condition overrun bug.
8990
8991 Mon May  5 21:58:22 1997  Ben Pfaff  <blp@gnu.org>
8992
8993         * output.c: (outp_evaluate_dimension) Fixed handling of negative
8994         numbers having fractional parts.  Added case of a fraction without
8995         a whole-number part.
8996
8997 Fri May  2 22:08:05 1997  Ben Pfaff  <blp@gnu.org>
8998
8999         * ascii.c: (ascii_text_get_font_position) Removed.
9000
9001         * expr.h, exprP.h: Disabled debugging.
9002
9003         * groff-font.c, postscript.c: Changed `groff' to `Groff' in
9004         several places.
9005
9006         * output.h: (struct outp_class_struct) Removed
9007         text_get_font_position method.  All references deleted.
9008
9009         * postscript.c: Big change here.  Fontmaps were completely
9010         eliminated because of a change in philosophy.  Comment fixes.
9011         (struct ps_fontmap, ps2dit_map, font_family, dit2family_map)
9012         Removed.
9013         (struct ps_driver_ext) `position', `fontmap', `prop_name',
9014         `fixed_name' members removed.  New members `prop_family',
9015         `fixed_family'.  `family' member changed to type char *.
9016         (static var ps_fontmaps) Removed.
9017         () Removed.
9018         (ps_init_driver) Removed obsolete references, updated.
9019         Initializes `translate_x', `translate_y', `scale'.  Doesn't read
9020         fontmap, of course.  Refers to font names through internal_name
9021         rather than subversive means.  Frees proper items.
9022         (static var option_tab[]) Removed `fontmap-file' option; renamed
9023         `fixed-font', `prop-font'.
9024         (ps_option) Corresponds to option_tab[].
9025         (read_fontmap, release_fontmap, ps_to_dit, compare_ps2dit,
9026         hash_ps2dit, compare_dit2family, hash_dit2family, compare_family,
9027         hash_family) Removed.
9028         (postopen) Generates font names from family names.  Gets
9029         PostScript font name properly.  New prologue file comment `!!!'
9030         style.
9031         (ps_open_page) Adds translate_x, translate_y to BP prologue
9032         function; gives SF argument floating-point format.
9033         (ps_text_set_font_by_name) Doesn't try to map PostScript->Groff
9034         font name.  Doesn't change font family.
9035         (ps_text_set_font_by_position) Generates Groff font name from font
9036         family name instead of through table lookup.
9037         (ps_text_set_font_by_family) Renamed `ps_text_set_font_family',
9038         all references changed.  Reduced to simple string assignment.
9039         (ps_get_font_name) Removed.
9040         (ps_get_font_family) Reduced to string return.
9041         (text) Doesn't save `position' since it no longer exists.  Ugly
9042         kluge to save font family--fix soon?
9043         (load_font) Removed PostScript name argument.
9044         
9045 Thu May  1 14:58:59 1997  Ben Pfaff  <blp@gnu.org>
9046
9047         * postscript.c: Comment fix.
9048         (ps_open_page) Puts scale factor in PostScript output.
9049         
9050 Sat Apr 26 11:49:32 1997  Ben Pfaff  <blp@gnu.org>
9051
9052         * Makefile.am: Distcleans q2c.
9053
9054 Wed Apr 23 21:33:48 1997  Ben Pfaff  <blp@gnu.org>
9055
9056         * ascii.c: (delineate) Sets text size even if width is zero.
9057
9058         * command.c: Comment fix.
9059         (static var cmd_table[]) Re-enabled EVALUATE command.
9060         (parse_cmd) Lotsa comment fixes.  Fixed infinite loop in parsing
9061         of comments in script files.  Now more liberal on criteria for
9062         performing a state transition--if *anything* happened correctly,
9063         not just if *everything* happened correctly.
9064
9065         * data-out.c: (convert_F) Comment fix.  Why in the fsck does
9066         Checker segfault on formatting large numbers and why in the fsck
9067         hadn't I noticed this before?
9068
9069         * expr.h, exprP.h: No longer turn off GLOBAL_DEBUGGING.
9070
9071         * list.q: (cmd_list) Commented out the actual output routine
9072         because of various problems.  Probably will abandon the idea of
9073         using the general `crushed tables' for the LIST procedure.
9074
9075         * temporary.c: (restore_dictionary) Sets var_by_name to NULL after
9076         clearing it.  Allocates a new var_by_name dictionary before trying
9077         to add members to it.
9078
9079         * vars-atr.c: [DEBUGGING] (dump_one_var_node) Removed argument
9080         `sib'.  Changed type of `node' argument.
9081         [DEBUGGING] (dump_var_tree) Replaced avlwalk() with
9082         avl_walk_inorder().
9083         (clear_variable) Only dumps the var tree if var_by_name non-NULL.
9084         [DEBUGGING] Only deletes the variable from var_by_name if that var
9085         non-NULL.
9086
9087 Fri Apr 18 16:48:41 1997  Ben Pfaff  <blp@gnu.org>
9088
9089         * Makefile.am: Added include files to SOURCES.  Added
9090         frequencies.q to EXTRA_DIST.  Removed include/ from INCLUDES.  Now
9091         includes rules for q2c.  Added `boast' target.
9092
9093 Fri Apr 18 15:42:22 1997  Ben Pfaff  <blp@gnu.org>
9094
9095         * Makefile.am: Maintainer-clean Makefile.in.
9096         
9097         * Makefile.am: Fixed redundant EXTRA_DIST line.
9098
9099         * ascii.c: Comment fixes.
9100         (ascii_line_vert) Fixed overly aggressive range check.
9101
9102         * display.c: Removed dead code.
9103
9104         * list.q: Turn debugging on.
9105         (flush_table) New debug code.
9106
9107         * sfm-read.c: (read_value_labels) malloc's the structure before
9108         trying to assign to its members.
9109
9110         * sfm-write.c: Comment fix.
9111
9112         * som-high.c: (som_submit_table) Sets som.t and som.d on each call
9113         to output_table().
9114         (output_table) No arguments anymore--gets them through `som'
9115         global.  New debug code.  In crushed tables, now sets `htv' as
9116         well as `hv' to avoid bad confusion later.
9117         (dump_crush_page) New debug code.
9118
9119         * som-low.c: (som_dump_crush_page) New debug code.
9120
9121 Thu Mar 27 01:11:29 1997  Ben Pfaff  <blp@gnu.org>
9122
9123         All source files: Broke long lines into multiple lines.
9124         
9125         * ascii.c: (ascii_close_page) Uses host_system var in place of
9126         HOST_SYSTEM constant.
9127
9128         * cmdline.c: (var syntax_message[]) Broke into
9129         pre_syntax_message[] and post_syntax_message[].
9130         (usage) Outputs both parts, separated by driver list.
9131
9132         * error.h: Fixed broken formatting.
9133
9134         * expr-opt.c: (str_search, str_rsearch) New functions.
9135
9136         * misc.c: (blp_getdelim) Removed.  All references changed to
9137         `getdelim'.
9138         (str_search, str_rsearch) Removed.
9139         (memrmem) New function.
9140
9141         * misc.h: (blp_getline) Removed.  All reference changed to
9142         `getline'.
9143
9144         * stat.h: New file.
9145
9146         * filename.c: Includes "stat.h", not <sys/stat.h>.
9147         (blp_getenv) Uses host_system var instead of HOST_SYSTEM constant.
9148
9149         * output.c: (outp_list_classes) Changed output formatting.
9150
9151         * sfm-write.c: (write_header) Uses host_system var instead of
9152         HOST_SYSTEM constant.
9153         (write_rec_7_34) Extracts version numbers from the version string.
9154         Untested.
9155
9156         * sort.c: Includes "stat.h", not <sys/stat.h>.
9157
9158         * str.c: (strcasecmp) Removed.
9159
9160         * title.c: (cmd_document) Uses host_system var instead of
9161         HOST_SYSTEM constant.
9162
9163         * version.c: Generated on-the-fly by the Makefile instead of being
9164         static.
9165
9166         * str.h: Comment fixes.  Doesn't substitute for missing memmove or
9167         memcpy.
9168         [!HAVE_STRNCASECMP] Declares strncasecmp().
9169
9170         * version.h: Removed stray character.  Comment fixes.
9171         (vars host_system, build_system) New vars.
9172
9173 Mon Mar 24 21:47:31 1997  Ben Pfaff  <blp@gnu.org>
9174
9175         * Most source files: Changed formatting of copyright notice; fixed
9176         FSF address; reformatted to better conform to GNU standards;
9177         comment fixes.  Added markups to prevent GNU indent from messing
9178         up my beautiful formatting :-).
9179         
9180         * q2c.c: (get_line) Ignores lines that begin with `/* *INDENT' so
9181         that GNU indent markups can be passed through without problems.
9182
9183 Wed Feb 19 21:30:31 1997  Ben Pfaff  <blp@gnu.org>
9184
9185         * get.c: Turned off debugging.
9186
9187         * glob.c: (init_glob) Turned on save-file compression by default.
9188
9189         * sfm-write.c: (sfm_write_case) Fixed bug which resulted in less
9190         compression than was possible in save files.
9191
9192 Sun Feb 16 20:57:20 1997  Ben Pfaff  <blp@gnu.org>
9193
9194         * data-out.c: (convert_F) Comment fixes.  Debug message fixes.
9195
9196         * frequencies.q: Removed Fiasco extensions.  Updated calculation
9197         algorithms.  Polished output format. 
9198         (struct frq_info_struct) Removed members `max_degree', `min_n',
9199         all references removed.
9200         (macro frq_extensions) Removed.
9201         (static vars min_n, max_degree) Removed, all references removed.
9202         (internal_cmd_frequencies) Doesn't handle extensions.  Doesn't
9203         calculate `min_n', `max_degree'.
9204         (postcalc) Passes new arg to dump_statistics().
9205         (dump_full) Honor NOLABEL option.  Buggy?  Adds variable name
9206         title.
9207         (dump_condensed) Adds variable name title.
9208         (sum_freqs) Removed.
9209         (calc_stats) Updated calculation algorithm.
9210         (dump_statistics) Removed warning for too-few observations.
9211         Changed table formatting.  Adds variable name title if passed new
9212         arg is nonzero.
9213
9214         * output.h: Comment fix.
9215
9216         * recode.c, sample.c, sort.c: Disabled debug code.
9217
9218         * som-frnt.c: (som_set_value, som_set_float, som_set_text)
9219         Improved debug code.
9220
9221         * var.h: (enum series frq_*) Removed Fiasco extensions.
9222
9223 Sat Feb 15 21:26:53 1997  Ben Pfaff  <blp@gnu.org>
9224
9225         * command.c: Added PROCESS IF to command table.
9226
9227         * Lots & lots of places, removed checks for NULLs preceding calls
9228         to free_expression(), which itself checks.
9229
9230         * descript.q: Removed Fiasco extensions.  Removed optimizations
9231         for non-weighted active files.  Implemented some options.
9232         Finished polishing output format.  Comment fixes.  Merged
9233         `descript.g'.
9234         (static vars n_glob_miss_list, n_glob_valid, n_glob_missing,
9235         max_degree, min_n) Removed.
9236         (macro dsc_extensions) Removed.
9237         (struct dsc_info_struct) Removed `min_n' member, all references
9238         fixed.
9239         (internal_cmd_descriptives) Removed calculation of min_n,
9240         max_degree.  Only deals with one `calc' routine instead of two
9241         flavors.
9242         (precalc) Eliminated redundancy.  Updated for changes to
9243         descriptives_proc structure.
9244         (calc) Moved here from `descript.g'.  Rewritten to calculate
9245         statistics via `moments about the mean' rather than by summing,
9246         summing squares, summing cubes, and so on.
9247         (postcalc) Rewritten for new-style statistical calculation.
9248         (display) Removed support for displaying variables across rows.
9249         No longer crushes the descriptives table.  Removed ancient code.
9250         Added display of N, by variable and listwise.
9251
9252         * descript.g: Removed; merged into `descript.q'.
9253
9254         * expr-evl.c: (evaluate_expression) Now returns a double.  For
9255         numeric results, it returns the result as well as storing it in
9256         the passed `value' structure if non-NULL.  For string results it
9257         just returns 0.0 and it must be passed non-NULL.  Many references
9258         to this function were optimized by use of this change, especially
9259         but not exclusively in `compute.c'.
9260
9261         * frequencies.g: Comment fix.
9262
9263         * glob.c: (glob var process_if_expr) New global var.
9264
9265         * postscript.c: (static var option_tab[]) Corrected entry for
9266         `fixed_size'.
9267         (postopen) Sets x->size to x->prop_size.
9268         (ps_text_set_font_by_name) Sets font size as well as typeface for
9269         PROP and FIXED fonts.
9270         
9271         * sel-if.c: (cmd_process_if) New function.
9272
9273         * sfm-write.c: (struct sfm_fhuser_ext) New member `n_cases'.
9274         (sfm_write_dictionary) Sets `n_cases' to 0.
9275         (sfm_write_case) Increments `n_cases'.
9276         (sfm_close) Attempts to seek the system file back to the header
9277         and write the number of cases in its proper slot.
9278
9279         * som-frnt.c: (som_insert_table) Masks off expansion options since
9280         only SOPT_X_NORM seems to work sensibly.
9281
9282         * som-low.c: (get_cell_size) Fixed bug when a table cell was sized
9283         with a `fixed' value of 2.
9284
9285         * sort.c: (cmd_sort_cases) Cancels PROCESS IF.
9286
9287         * sysfile-info.c: (cmd_sysfile_info) Doesn't display more than 10
9288         value labels; uses SOPT_NONE instead of SOPT_X_BOTH.
9289
9290         * var.h: (enum series dsc_*) Removed Fiasco extensions.
9291         (struct descriptives_proc) Removed `miss_noweight'; new members
9292         `X_bar', `M2', `M3', `M4', `min', `max'.
9293
9294         * vars-atr.c: (discard_variables) Cancels PROCESS IF.
9295
9296         * vfm.c: (close_active_file) Cancels PROCESS IF.
9297         (write_case) Doesn't process cases unselected by PROCESS IF.
9298
9299 Fri Feb 14 23:32:58 1997  Ben Pfaff  <blp@gnu.org>
9300
9301         * glob.c: (glob var err) Removed.
9302
9303         * sysfile-info.c: (cmd_sysfile_info) When adjusting table size,
9304         doesn't have to take into account number of value labels since
9305         they're in a subtable anyway.  Also, doesn't display more than 10
9306         value labels since we can't yet break pages in subtables.
9307
9308 Tue Feb  4 15:15:50 1997  Ben Pfaff  <blp@gnu.org>
9309
9310         * som-frnt.c: (som_change_table_size) Simple change for elegance
9311         that shouldn't change behavior.
9312         (som_set_value) Comment fix.
9313
9314         * som-high.c: (som_submit_table) Message fix.
9315
9316 Wed Jan 22 21:54:00 1997  Ben Pfaff  <blp@gnu.org>
9317
9318         * command.c: Added SYSFILE INFO to command table.
9319
9320         * file-handle.q: (fh_handle_filename) New function.
9321
9322         * get.c: (save_trns_proc) Fixed a bug in padding of output data
9323         with spaces.
9324
9325         * main.c: (parse) New return value for command functions, -3.
9326
9327         * misc.h: Comment fix.
9328
9329         * output.h: Comment fixes.
9330         (macro COMPONENTS) Removed.
9331
9332         * postscript.c: (write_text) Modified literal_chars[] so that `('
9333         and ')' are not written to the output in strings as literals.
9334
9335         * sfm-read.c: (sfm_read_dictionary) New argument.
9336         (read_header) New argument.  Sets the information structure's
9337         values from the header information.  
9338         (read_variables) [__CHECKER__] Redefines isalnum()--some sort of
9339         bizarre Checker problem, I guess.
9340         (read_variables) Proper cleanup on lossage.
9341
9342         * sfm.h: (struct sfm_read_info) New struct for use by
9343         sfm_read_dictionary().
9344
9345         * som-frnt.c: (som_create_table) New argument CREATE_FLAGS,
9346         currently used just for tables that can be dynamically resized and
9347         thus have to be allocated with arena_malloc() instead of
9348         arena_alloc().  All references changed.
9349         (som_change_table_size) New function.
9350         (som_insert_table) Bugfix: now inserts `cell', not `c'!
9351
9352         * som-high.c: [GLOBAL_DEBUGGING] (check_table) Moved to som-low.c.
9353         (som_submit_table) [GLOBAL_DEBUGGING] Doesn't call check_table()
9354         any more.
9355
9356         * som-low.c: (draw_cell) Calls draw_table_cell() for SCON_TABLE
9357         cells.
9358         (draw_intersection) Now takes an argument specifying the table in
9359         question.  All references changed.
9360         (draw_table_cell) New function.
9361         (som_get_table_size) [GLOBAL_DEBUGGING] Calls check_table().
9362         (som_get_table_size) Many nice new explanatory comments.
9363         [GLOBAL_DEBUGGING] (check_table) Moved here from som-high.c.
9364
9365         * som.h: New enum series SOM_CREATE_* for use as create flags with
9366         som_create_table().
9367
9368         * str.h: Moved a comment here from TODO.
9369
9370         * sysfile-info.c: New file.  Reference implementation.
9371
9372 Sun Jan 19 14:22:11 1997  Ben Pfaff  <blp@gnu.org>
9373
9374         * command.c: Added RENAME VARIABLES to table of commands.
9375
9376         * data-in.c: (dls_error) Sets `cust_field'.
9377         (parse_N) Message fix.
9378         (parse_day_count) New function.
9379         (to_roman) Never outputs VX as a `short form' of V.
9380         (parse_month) Fixed parsing of Roman numerals.
9381         (parse_trailer) Message fix.
9382         (parse_DATE, parse_ADATE, parse_EDATE, parse_SDATE, parse_JDATE,
9383         parse_QYR, parse_MOYR, parse_WKYR, parse_DTIME) Issue a message if
9384         the date is invalid.
9385         (parse_SDATE) Fixed swapped day, year.
9386         (parse_JDATE) Fixed bug for dates in 1582.
9387         (parse_DTIME) Allows days not between 1 and 31.
9388         (parse_numeric) Makes local copy of f.type for easier usage.
9389         FMT_DOLLAR fixed.
9390
9391         * data-out.c: (convert_F) When outputting as scientific, properly
9392         sets f.type as fp->type.
9393         (insert_commas) Fixed operator precedence problem with setting of
9394         nitems.  Changed strcpy to memcpy (no null terminator). 
9395         (convert_date) Fixed FMT_JDATE: added 1900 to year.
9396         (convert_CCx) Essentially rewritten, but now it works.
9397
9398         * display.c: (cmd_display) Added DISPLAY FILE LABEL (undocumented
9399         feature of Fiasco).
9400         (display_documents) Implemented.
9401
9402         * error.c: (glob var cust_field) New var.
9403         (vmsg) Displays cust_field as part of message classes DE and DW.
9404
9405         * formats.c: (debug_print) Fixed to compile under updated
9406         dictionary format.
9407
9408         * get.c: (cmd_get, cmd_save_internal) Close file handle on
9409         failure.
9410
9411         * misc.c: (parse_format_specifier) Formatting fix.
9412
9413         * modify-vars.c: (struct var_modification) Renamed `n_reorder' as
9414         `n_rename' for clarity.
9415         (cmd_modify_vars) Initializes `forward' and `positional' at
9416         appropriate times.  Frees lists of vars to rename on failure.
9417         Comment fix.  Frees memory on success.  
9418         (rearrange_dict) Simplified `for' loop condition.
9419
9420         * rename-vars.c: New file (reference implementation).
9421         
9422         * set.q: (internal_cmd_set) Fixed `emu' test condition.
9423
9424         * sfm-read.c: (read_header) File label is created only if file
9425         label in file is not blank.
9426         (read_variables) Initializes `dict' local variable.
9427         (read_documents) Proper behavior on lossage.
9428
9429         * sfm-write.c: (write_header) Doesn't blank out the file label
9430         (why was this here to begin with?!)
9431
9432         * temporary.c: (save_dictionary) File label is copied only if
9433         non-NULL.  Doesn't try to xstrdup() dictionary documents.
9434         Adapted so as to not irritate Checker.
9435         (free_dictionary) Only destroys var_by_name if non-NULL.
9436
9437         * title.c: (cmd_file_label) Doesn't skip FILE, LABEL tokens.
9438         (cmd_document) Doesn't skip DOCUMENT token.  Adds some header
9439         lines to the document, indents the document.  Also, it works now.
9440         (add_document_line) New function.
9441
9442         * var.h: (struct dictionary) Reordering.
9443
9444         * vars-prs.c: (parse_variables) On lossage, only local_free()'s
9445         bits if it was allocated to begin with.
9446
9447 Thu Jan 16 13:08:57 1997  Ben Pfaff  <blp@gnu.org>
9448
9449         * command.c: Added MODIFY VARS to list of commands.
9450
9451         * configure.in: Updated custom macros for autoconf 2.12.  Removed
9452         mmap reference; fixed termcap library reference.
9453
9454         * display.c: (display_variables) Fixed a few bugs although it's
9455         still not well written.
9456
9457         * error.c: [!__CHECKER__] (chkr_disp_call_chain) New function.
9458         (induce_segfault) Calls chkr_disp_call_chain() instead of
9459         inducing an actual SIGSEGV.
9460
9461         * expr-opt.c: (evaluate_tree) Swapped order of arguments to
9462         str_search() and str_rsearch().  Fixed tests for matches on
9463         OP_INDEX and OP_RINDEX.
9464
9465         * filename.c: (good_getcwd) Removed as the new libc for Checker
9466         doesn't contain this bug, apparently.
9467
9468         * misc.c: (str_search, str_rsearch) Changed order of arguments for
9469         consistency with GNU memmem.
9470         (blp_getdelim) Changed `len' from `int' to `size_t'.
9471
9472         * modify-vars.c: Reference implementation.
9473
9474         * som-frnt.c: (zero_length) New global var.
9475         (som_create_table) Message fix.
9476
9477         * som.h: Added gcc attributions to som_set_text(),
9478         som_output_text() prototypes.  blank_line() refers to
9479         zero_length[] instead of a literal null string to suppress gcc
9480         warnings.
9481
9482         * sort.c: (do_external_sort) Fixed fencepost error on lossage.
9483         (allocate_cases) Decrements x_max so the last element of x[] can
9484         be used by the algorithm.
9485
9486         * var.h: Changed minor details of `variable' declaration.  
9487         (struct modify_vars_proc) New struct.
9488         (struct variable) Added field p.mfv.
9489
9490         * vars-atr.c: Comment fix.
9491
9492         * vars-prs.c: (fill_all_vars) More optimal implementation.
9493
9494         * vfm.c: (dump_splits) Sets the last byte of temp_buf to a null
9495         character, which it shouldn't have to do but printf() seems to
9496         read the null byte even though I supply a maximum length...
9497
9498 Fri Jan 10 20:22:08 1997  Ben Pfaff  <blp@gnu.org>
9499
9500         * command.c: Removed command alias X for QUIT.
9501         (parse_cmd) Fixed comment parsing.
9502
9503         * dfm.c: (struct dfm_fhuser_ext) Fields `len', `size' are now of
9504         type size_t.
9505         (read_record) Fixed references to len, size.
9506         (dfm_get_record) Restructured.
9507
9508         * file-handle.h: (struct file_handle) Field `lrecl' now of type
9509         size_t.
9510
9511         * file-handle.q: (internal_cmd_file_handle) Checks for nonpositive
9512         record length.
9513
9514         * modify-vars.c: New file.  Not complete.
9515         
9516         * set.q: (set_ccx) Fixed operator precedence problem regarding ^
9517         and ==.
9518
9519         * sfm-read.c: (bswap_flt64, read_header, write_variable) Fixed
9520         problems caused by int/size_t differences.
9521
9522         * sort.c: (output_record, merge_once) Cast `size_t's to `int's in
9523         appropriate spots.
9524
9525         * str.c: (strcasecmp) Fixed bug that cropped up when the strings
9526         being compared were of equal length.
9527
9528 Thu Jan  2 19:08:23 1997  Ben Pfaff  <blp@gnu.org>
9529
9530         * command.c: Added DOCUMENT, DROP DOCUMENTS, FILE LABEL.
9531
9532         * lexer.c: (get_dotted_rest_of_line) New function.
9533
9534         * sel-if.c: (cmd_filter) Cannot choose string or scratch variables
9535         as filters.
9536
9537         * sfm-read.c: (sfm_read_dictionary) Calls read_documents() to read
9538         type 6 records.  Frees the dictionary properly.
9539         (read_header) Initializes the dictionary instead of letting
9540         read_variables() do it.  Sets the dictionary file label from the
9541         system file.
9542         (read_documents) New function.
9543
9544         * sfm-write.c: (sfm_write_dictionary) Calls write_documents() to
9545         write type 6 record if appropriate.
9546         (write_header) Writes file label from dictionary.
9547         (write_documents) New function.
9548
9549         * temporary.c: (save_dictionary, restore_dictionary,
9550         free_dictionary) Properly handle new fields in dictionary struct.
9551
9552         * title.c: (get_title) Returns after failure().
9553         (cmd_file_label, cmd_document, cmd_drop_documents) New functions
9554         for new commands FILE LABEL, DOCUMENT, DROP DOCUMENTS.  Untested.
9555
9556         * var.h: (struct dictionary) New fields `label', `n_documents',
9557         `documents'.
9558
9559 Wed Jan  1 22:08:10 1997  Ben Pfaff  <blp@gnu.org>
9560
9561         * command.c: Added FILTER to list of commands.
9562
9563         * frequencies.g: [WEIGHTING] Removed test for weighting!=-1 since
9564         it's always true.
9565
9566         * get.c: (cmd_save_internal) Removed weighting code since it's now
9567         handled by sfm-write.c.  Properly commented out debug code.
9568
9569         * glob.c: (glob var weighting) Removed.
9570
9571         * sel-if.c: Comment fixes.
9572         (cmd_filter) New function.
9573
9574         * sfm-read.c: (struct sfm_fhuser_ext) New field `weight_index'.
9575         (sfm_read_dictionary) Sets weighting variable direct in the
9576         created dictionary now.  (Apparently we previously didn't support
9577         weighting on GET?)
9578         (read_header) Sets weight_index field in sfm_fhuser_ext from
9579         header read from disk.
9580
9581         * sfm-write.c: (sfm_write_dictionary) Comment fix.
9582         (write_header) Now sets the weighting in the header from the
9583         passed primary dictionary instead of from the sfm_write_info.
9584
9585         * sfm.h: (struct sfm_write_info) Removed field `weight'.
9586
9587         * som-high.c: (dump_crush_table) Fixed a couple of assertions that
9588         broke on boundary conditions.
9589
9590         * var.h: (struct dictionary) New fields `weight_var',
9591         `weight_index', and `filter_var'.
9592         (glob var weighting) Removed.  This is now part of struct
9593         dictionary.  All references changed; the less mechanical changes
9594         are described above.
9595
9596         * vars-atr.c: (find_dict_variable) New function.
9597
9598         * vfm.c: (static var filter_index) New variable.
9599         (open_active_file) Initializes filter_index from default_dict.
9600         (write_case) Calls proc_func() only if the filter variable is
9601         nonzero; this implements FILTER behavior.
9602
9603         * weight.c: (static var weight_varname) Removed.
9604         (cmd_weight) Modified default_dict instead of glob vars.
9605         (update_weighting) Changed the signature to modify a dictionary
9606         instead of glob vars.  Now returns the weighting variable.
9607         (get_weighting_variable) Removed; its function is absorbed by
9608         update_weighting().
9609         (stop_weighting) Operates on a dictionary now.
9610
9611 Wed Jan  1 17:00:59 1997  Ben Pfaff  <blp@gnu.org>
9612
9613         * sort.c: Removed debugging info from messages.
9614         (do_external_sort) Cleans up after itself by deleting the
9615         temporary directory on failure.  (On success it is deleted by the
9616         input program.)
9617         (allocate_cases) Removed debug code.  Added clean up code.
9618         (output_record) Removed debug code.
9619         (merge) Added code to close all the input files that are currently
9620         open.  This is a likely location for bugs, because I'm not sure
9621         about boundary conditions.  Removed an unnecesary heap_delete().
9622         (merge_once) Removed input file "optimization" that in fact
9623         screwed up the rest of the code.  Message and comment fixes.
9624
9625 Sun Dec 29 21:36:48 1996  Ben Pfaff  <blp@gnu.org>
9626
9627         * error.c: [__CHECKER__] (induce_segfault) Flushes output streams.
9628
9629         * heap.c: (heap_delete) New argument.
9630
9631         * sort.c: Finished implementation of external sort.
9632
9633         * vfm.c: (read_from_disk) Returns after a disk error.
9634
9635 Sun Dec 22 23:10:39 1996  Ben Pfaff  <blp@gnu.org>
9636
9637         * sort.c: (static var state) Removed.
9638         (static vars max_handles, tmp_basename, tmp_extname,
9639         huffman_queue) New variables.
9640         (do_external_sort) Moved most code to new functions.
9641         Creates huffman_queue.
9642         (allocate_file_handles, allocate_cases) New functions.
9643         (static vars run_no, run_length, file_index, case_count) New
9644         variables. 
9645         (output_record) Returns success.  Now really writes to the output
9646         file.
9647         (begin_run, end_run) New functions.
9648         (write_initial_runs) Returns success.  Initializes run_no to -1.
9649         Calls begin_run(), end_run() at appropriate times.  Outputs debug
9650         messages.
9651         (write_to_sort_cases) Calls begin_run(), end_run() at appropriate
9652         times.
9653         (merge) New function.
9654
9655         * heap.c, heap.h: New files.  Hopefully in near-final form.
9656
9657 Sat Dec 21 21:51:04 1996  Ben Pfaff  <blp@gnu.org>
9658
9659         * glob.c: Added write_active_file to global vars.
9660
9661         * sort.c: Several new miscellaneous static variables.
9662         (cmd_sort_cases) Big comment fix.
9663         (perform_case_2) Renamed `do_external_sort' and completely
9664         rewritten.
9665         (case_2_proc_func) Removed.
9666         (output_record, write_initial_runs, write_to_sort_cases,
9667         compare_record) New functions.
9668
9669         * vfm.c: [DEBUGGING] (index_to_varname) Excised bit rot.
9670
9671 Tue Dec 17 18:57:59 1996  Ben Pfaff  <blp@gnu.org>
9672
9673         * sort.c: (perform_case_2) Changed the method for allocation of
9674         lots of memory--now allocates one case at a time in hopes that
9675         more cases can be allocated with heavily fragmented memory.
9676
9677         * var.h: (write_active_file) New global var.
9678
9679         * vfm.c: (procedure, close_active_file, write_case,
9680         SPLIT_FILE_procfunc) Now allow beginfunc, procfunc, and endfunc
9681         arguments to procedure() to be NULL.  All references to
9682         procedure() that made use of dummy functions were changed to NULL
9683         functions.
9684         (open_active_file) If write_active_file is non-NULL, the output
9685         device becomes DEV_PGM (a new enum).
9686         (close_active_file) Sets write_active_file to NULL.
9687         (read_from_memory) Comment fix.
9688         (record_case) Calls write_active_file() when the output device is
9689         DEV_PGM.
9690
9691 Sun Dec 15 15:32:16 1996  Ben Pfaff  <blp@gnu.org>
9692
9693         * sort.c: New file.
9694
9695         * autorecode.c: (cmd_autorecode) Fixed parsing of options.
9696         Fixed checking for duplicate varnames.
9697         (recode) xmalloc()'s the transformation instead of arena_alloc()'ing
9698         it.
9699         (autorecode_trns_free) Destroys hash tables for each recoding
9700         specification.
9701         (autorecode_proc_func) Compares NULL to *vpp instead of vpp.
9702
9703         * command.c: Added SORT CASES to cmd_table.
9704         (null_func, null_int_func) Prototyped.
9705
9706         * descript.g: (calc_weight, calc_noweight) Computes own case
9707         number now.
9708         
9709         * frequencies.q: (dump_statistics) Fixed problem with
9710         too-few-cases warning message.
9711
9712         * get.c: (cmd_save_internal) Handles weighting properly.
9713
9714         * hash.c: (hsh_dump) Output format changed.
9715         (force_hsh_insert) Actually works now, prototype changed.
9716
9717         * list.q: (static var case_num) New variable.
9718         (cmd_list) Initializes case_num.
9719         (list_cases) Increments case_num.
9720
9721         * var.h: Added definitions for SORT CASES.  Comment fixes.
9722
9723         * vfm.c: Some definitions moved to new file vfmP.h.  Comment
9724         fixes.  `active' renamed vfm_active, `rep' renamed
9725         vfm_replacement, all references changed.
9726         (procedure) The procfunc no longer receives a case number.  All
9727         references changed.
9728         (write_case) Subtle reordering.
9729         (SPLIT_FILE_procfunc) Counts cases differently.  Slightly less
9730         redundant.
9731
9732         * weight.c: (get_weighting_variable) New function.
9733
9734         * vfmP.h: New file with definitions from vfm.c.
9735
9736 Sat Dec 14 10:35:30 1996  Ben Pfaff  <blp@gnu.org>
9737
9738         * command.c: (FILE_TYPE_okay) Commented out some tests because
9739         they're clumsy and not yet needed.
9740
9741         * var.h: Most *_trns structures moved to their respective source
9742         files.  Some were moved into a new file, do-ifP.h.  Comment fixes.
9743         (union any_trns) Changed to a typedef for trns_header.
9744         (struct input_program_pgm) Removed.
9745
9746         * vars-prs.c: (parse_variables) Only local_free()'s bits if it
9747         was allocated in the first place.
9748
9749 Fri Dec 13 21:30:53 1996  Ben Pfaff  <blp@gnu.org>
9750
9751         * autorecode.c: New file.
9752         
9753         * command.c: Added AUTORECODE to command table; re-enabled SET.
9754
9755         * data-out.c: (convert_F) Handles infinities and NaNs properly.
9756
9757         * error.c: (vmsg) Comment fixes.
9758
9759         * hash.c: Comment fix.
9760         (hashpjw_d) New function.
9761         (hashpjw) Reimplemented as call to more general function
9762         hashpjw_d().
9763         (internal_comparison_fn) Initializes pointers properly.
9764         (hsh_sort) [GLOBAL_DEBUGGING] New debugging code.
9765         (force_hsh_insert, force_hsh_find) New debugging wrapper
9766         functions.
9767
9768         * main.c: (main) Message fix.
9769
9770         * output.c: (outp_read_devices) Message fix.
9771
9772         * set.q: Comment fixes.
9773         (custom_results) Implemented Wnd/X form of subcommand.
9774         (set_routing) New function.
9775         (internal_cmd_set) Implemented ERRORS, MESSAGES.
9776
9777         * settings.h: (SET_ROUTE_*) New enum series.
9778         (set_results) Renamed set_results_file, all references changed.
9779         (set_messages) Removed.
9780         (glob vars set_errors, set_messages, set_results) New vars.
9781
9782         * title.c: (get_title) Remembers to xstrdup() the result of
9783         get_rest_of_line().
9784
9785         * var.h: (arc_item, arc_spec, autorecode_trns) New structures for
9786         use by AUTORECODE.
9787         (union any_trns) New element `arc'.
9788
9789 Fri Dec  6 23:53:47 1996  Ben Pfaff  <blp@gnu.org>
9790
9791         * command.c: (output_line) Removed references to set_screen.
9792
9793         * error.c: (static var terminating) New var.
9794         (hcf) Sets terminating to 1.
9795         (vmsg) If terminating is nonzero, does not attempt to call hcf().
9796         This prevents an infinite loop if an error occurs within hcf().
9797
9798         * expr-evl.c: (evaluate_expression) [__CHECKER__] Replaced case
9799         statement circumlocution with `case 42000' trick.
9800         (evaluate_expression) New support for OP_STR_MIS.
9801
9802         * expr-opt.c: (evaluate_expression) [__CHECKER__] Replaced case
9803         statement circumlocution with `case 42000' trick.
9804         (dump_node) Handles OP_STR_MIS.
9805
9806         * expr-prs.c: (MISSING_func, SYSMIS_func) Rewrote to handle string
9807         variables exceptions.
9808         (parse_function) Message fix.
9809         (ops[]) Added OP_STR_MIS.
9810
9811         * expr.h: Added OP_STR_MIS to OP_* enum.  Comment fixes.
9812
9813         * exprP.h: [__CHECKER__] Removed case statement circumlocution.
9814
9815         * glob.c: Removed set_scrnfile glob var.
9816         (init_glob) set_errorbreak set to 0 by default.
9817
9818         * groff-font.c: Changed included files.
9819         (groff_read_font) Initializes font_arena local var correctly.
9820         (default_font) New function.
9821
9822         * output.c: Comment fixes.
9823         (glob var disabled_devices) New variable.
9824         [GLOBAL_DEBUGGING] (static var iterating_driver_list) New
9825         variable.
9826         [GLOBAL_DEBUGGING] (reentrancy) New function.
9827         [GLOBAL_DEBUGGING] (outp_read_devices, outp_done, find_driver,
9828         outp_iterate_enabled_drivers) Calls to reentrancy().
9829         (destroy_list) New function.
9830         (outp_done) Moved code to destroy_list().
9831         (parse_options) Parses `listing', `screen', `printer' options
9832         internally.
9833         (configure_driver) Sets new `device' member of driver.
9834         (outp_iterate_enabled_drivers, outp_enable_device) New functions.
9835
9836         * output.h: Comment fixes.  New enum series OUTP_DEV_*.
9837         (struct outp_driver_struct) New member `device'.
9838
9839         * postscript.c: (find_encoding_file) Doesn't display its own error
9840         messages.
9841         (default_encoding) New function.
9842         (switch_font) Calls default_encoding() if no encoding can be
9843         found.
9844         (text) Makes up a character metric if none exists for the desired
9845         character.
9846         (load_font) Properly copies a fallback filename.  Calls
9847         default_font() for a font if none at all are known.
9848
9849         * set.q: Comment fixes.  Removed OUTPUT subcommand.
9850         (custom_listing) Calls outp_enable_device() to enable/disable
9851         listing device.
9852         (turn_screen_on) Removed.
9853         (internal_cmd_set) Calls outp_enable_device() to enable/disable
9854         screen, printer devices.
9855
9856         * settings.h: Comment fixes.
9857         (glob vars set_output, set_printer, set_screen, set_scrnfile)
9858         Removed.
9859
9860         * som-high.c: (som_submit_table, som_eject_page) Use
9861         outp_iterate_enabled_drivers() instead of iterating
9862         outp_driver_list directly.
9863
9864 Wed Dec  4 21:34:17 1996  Ben Pfaff  <blp@gnu.org>
9865
9866         * data-in.c: (parse_EDATE, parse_SDATE) New functions.
9867         (parse_string_as_format) Handles new formats.
9868         (parse_numeric) Now handles DOT and PCT formats.
9869
9870         * data-out.c: (convert_E, convert_F, insert_commas) Handle DOT
9871         format now.
9872         (convert_date) Handle EDATE and SDATE formats.
9873         (convert_CCx) Now if there's not room for the currency characters,
9874         converts it as F format if it's positive instead of giving up
9875         quickly.  Also fixed save-and-restore bug with decimal point
9876         characters.  
9877         (convert_format_to_string) Handles new formats.
9878
9879         * misc.c: (formats[]) Added new formats.
9880         (convert_fmt_ItoO) Supports new formats.
9881
9882         * sfm-read.c: (parse_format_spec) Supports new formats.  Better
9883         data checking.  New argument, all references changed.
9884
9885         * sfm-write.c: (write_format_spec) Supports new formats.
9886
9887         * var.h: New formats FMT_DOT, FMT_PCT, FMT_EDATE, FMT_SDATE.
9888         Comment fixes.
9889
9890 Sun Dec  1 17:19:00 1996  Ben Pfaff  <blp@gnu.org>
9891
9892         * cmdline.c: Comment fixes.
9893         (parse_command_line) Changed return type to void.
9894
9895         * data-in.c: (parse_string_as_format) Added FMT_CCA...FMT_CCE to
9896         switch.
9897         (parse_numeric) Handles international numbers (comma as decimal
9898         point).  Some reformatting.
9899
9900         * data-list.c: (parse_free) Default output format is now
9901         set_format instead of hard-coded F8.2.
9902         (read_from_data_list_list) Emits error message on undefined data
9903         only if set_undefined is nonzero.
9904
9905         * data-out.c: (convert_E) Changes decimal point from period to
9906         comma if appropriate.  Restructured.  Better comments.
9907         (convert_F) Changes decimal point from period to comma if
9908         appropriate.
9909         (insert_commas) Major bug with handling of negative values fixed.
9910         Also, inserts periods instead of commas if appropriate.
9911         (convert_CCx) New function.
9912         (convert_format_to_string) Added FMT_CCA...FMT_CCE to switch.
9913         (num_to_string) Changed `.' to set_decimal.
9914
9915         * dfm.c: Comment fixes.
9916         (dfm_close) Frees ext->line even in inline_file.
9917         (open_inline_file) New function.
9918         (open_file_r) When opening the inline file: now properly
9919         recognizes `BEGIN DATA.' line, and calls open_inline_file() to
9920         finish up.
9921         (read_record) Calls fh_close_handle() instead of dfm_close() to
9922         close the inline file.  Makes a copy of the line getl_buf to avoid
9923         interlock problems.
9924         (dfm_get_record) Restructured.  Now checks the return value of
9925         open_file_r().
9926         (cmd_begin_data) Moved open code into open_inline_file().  Relaxed
9927         checking for use of inline file.  No longer tries to close inline
9928         file.
9929
9930         * error.c: (glob var error_already_flagged) New var.
9931         (vmsg) Message change.  Now checks max number of errors/warnings,
9932         acts on it.
9933
9934         * file-handle.q: (fh_handle_name) Now allows closing of
9935         inline_file.
9936         (fh_init_files) Reformatted.
9937
9938         * get.c: (trim_dictionary) Checks SCOMP option instead of COMP.
9939
9940         * getline.c: (getl_include) Fixed bug that popped up when called
9941         when file queue was empty.
9942         (read_console) Resets error_count, warning_count,
9943         error_already_flagged to zero.
9944
9945         * glob.c: Many changes to update list of variables.
9946         (init_compat_dependent) Now this function is called whenever
9947         `compat' changes.  It now sets set_seed only if it hasn't
9948         previously been referenced.  It now calls
9949         lex_init_compat_dependent().
9950
9951         * include.c: (cmd_include_at) Frees temporary buffer instead of
9952         line buffer.  
9953         (cmd_include) Doesn't make copy of include file name.
9954
9955         * lexer.c: Comment fixes.
9956         (init_lex) Moved some code into new function
9957         lex_init_compat_dependent().
9958         (lex_init_compat_dependent) New function.
9959         (hex_val) Simplified.
9960         (preprocess_line) Uses set_endcmd instead of hardcoding `.'.
9961
9962         * main.c: Comment fixes.
9963         (main) Reformatted.
9964
9965         * misc.c: (formats[]) Added FMT_CCA...FMT_CCE.
9966         (check_input_specifier) Disallows FMT_CCA...FMT_CCE.
9967         (convert_fmt_ItoO) Detects FMT_CCA...FMT_CCE.
9968         (setup_randomize) Sets set_seed_used.
9969
9970         * set.q: Comment fixes.
9971         (custom_results) Conditionalizes on `compat'.
9972         (custom_log) Calls custom_journal().
9973         (set_ccx) New function.
9974         (cmd_set) Calls init_compat_dependent() when `compat' changes.
9975         Calls set_ccx() to handle CCA...CCE.  Sets set_grouping
9976         when set_decimal changes.  Range-checks values for MITERATE,
9977         MNEST.  Message fixes.
9978
9979         * settings.h: Comment fixes.
9980         (struct set_cust_currency) New struct.
9981         (set_cc[], set_grouping, set_seed_used) New global vars.
9982
9983         * var.h: (FMT_CCA...FMT_CCE) New output formats.
9984         (FCAT_OUTPUT_ONLY) New FCAT_* constant.
9985
9986 Thu Nov 28 23:14:07 1996  Ben Pfaff  <blp@gnu.org>
9987
9988         * glob.c: Revised variables to correspond to settings.h.
9989         (init_glob) Initializes variables from settings.h properly.
9990
9991         * set.q: Began long-overdue major revision to correspond to new
9992         philosophy.  Most code changed. 
9993
9994         * settings.h: Mostly changed; reorganized, reordered, large new
9995         comment.
9996
9997 Thu Nov 28 19:46:10 1996  Ben Pfaff  <blp@gnu.org>
9998
9999         * get.c: (cmd_save_internal) No longer forces compression off.
10000
10001         * sfm-read.c: (read_compressed_data) If eof is reached when
10002         reading a new instruction octet, only signal error if we're in the
10003         middle of a case.
10004
10005         * sfm-write.c: (COMPRESSION_BIAS) New #define.
10006         (struct sfm_fhuser_ext) New member `end'.
10007         (write_header) Refers to COMPRESSION_BIAS instead of magic 100.0.
10008         (ensure_buf_space) New function.
10009         (sfm_write_case) Reimplemented in order to support compression.
10010         (sfm_close) Writes out the remaining contents of the compression
10011         buffer if any.
10012
10013 Wed Nov 27 23:18:35 1996  Ben Pfaff  <blp@gnu.org>
10014
10015         * command.c: Defined SAVE and XSAVE commands in command table.
10016
10017         * common.h: second_lowest_value is of type flt64, not double.
10018
10019         * file-handle.h: Comment fix.
10020
10021         * get.c: Comment fixes.
10022         (static var `trns') New.
10023         (save_write_case_func, save_trns_proc, save_trns_free, null_func,
10024         cmd_save_internal, cmd_save, cmd_xsave) New functions.
10025         (dict_delete_run) Clears the variables and frees them now.
10026         (trim_dictionary) Sets default for compression.
10027         On KEEP subcommand, frees deleted variables as well as clearing
10028         them.  Finally got the sense of the test for deleting all
10029         variables correct.
10030         [DEBUGGING] (dump_dict_variables) Message fix.
10031
10032         * glob.c: (init_glob) set_compression set to 1 by default.
10033
10034         * list.q: Properly #includes config.h.
10035
10036         * misc.h: New macro REM_RND_UP.
10037
10038         * settings.h: Comment fix.
10039
10040         * sfm-read.c: (structs sysfile_header, sysfile_format,
10041         sysfile_variable; inline function bswap_int32) Moved to new file
10042         sfmP.h.
10043         (corrupt_msg) [__CHECKER__] No longer induces segfault.
10044         (sfm_read_dictionary) Fixed bug caused by failing to initialize
10045         var_by_index.
10046         (read_machine_flt64_info) Fixed some problems caused by confusion
10047         between flt64 and double types.
10048         (read_header) Message fix.
10049         (read_variables) Fixed set of cases in which we byte-swap sv.print
10050         and sv.write.  Fixed confusion of flt64 and double.
10051
10052         * sfm.h: (struct sfm_write_info) New.
10053
10054         * som-high.c: (som_draw_title) Properly frees `s'.
10055
10056         * temporary.c: (save_dictionary) Comment fix.
10057
10058         * var.h: Comment fixes.  New FMT_* enum, FMT_NUMBER_OF_FORMATS.
10059         (struct trns_header) Formatting fix.
10060         (struct save_trns) New.
10061
10062         * vars-atr.c: (discard_variables) Comment fix.
10063
10064         * sfm-write.c: New file, baseline release.
10065
10066         * sfmP.h: New file, baseline release.
10067
10068 Sun Nov 24 14:53:53 1996  Ben Pfaff  <blp@gnu.org>
10069
10070         * cmdline.c: (parse_command_line) `--version' output updated.
10071         (glob var syntax_message[]) Added my e-mail address.
10072
10073         * file-handle.q, lexer.c, vfm.c: Changed many instances of
10074         `illegal' to `invalid'.
10075
10076         * sfm-read.c: (struct sfm_fhuser_ext) New fields used as
10077         uncompression buffer.
10078         (sfm_close) Frees decompression buffer.
10079         (sfm_read_dictionary) Initializes decompression buffer.
10080         (buffer_input, read_compressed_data) New functions.
10081         (sfm_read_case) Restructured; now calls read_compressed_data() to
10082         handle compressed system file data.
10083
10084         * var.h: Comment fix.
10085
10086 Mon Nov 11 15:34:09 1996  Ben Pfaff  <blp@gnu.org>
10087
10088         * dfm.c: (dfm_close) Does not set h->{ext,class} because the
10089         caller handles it.
10090          
10091         * get.c: New comments.  New static var `get_file'.
10092         (cmd_get) Now fully implemented.  Calls discard_variables();
10093         initializes fv and lv for all variables; new debug code; sets
10094         up the dictionary; sets up the input program.
10095         (read_from_get, cancel_get) New functions.
10096
10097         * sfm-read.c: Comment fixes.
10098         (sfm_close) New static function.
10099         (sfm_read_dictionary) Properly sets up the class of the
10100         file_handle.  No longer cares what size the data is in records of
10101         type 7.  Also, on failure, properly cleans up the file_handle and
10102         free()s some stuff.
10103         (read_variables) No longer thinks it knows `nval' of the
10104         dictionary.  Now sets p.get.fv, etc., instead of speculatively
10105         setting fv itself.
10106         (read_value_labels) Fixed off-by-one error in indexing of
10107         var_by_index[].
10108         (sfm_read_case) New function.
10109         (sfm_r_class) New static var.
10110
10111         * var.h: (get_proc) New struct.
10112         (struct variable) New member p.get.
10113
10114 Thu Nov  7 20:52:28 1996  Ben Pfaff  <blp@gnu.org>
10115
10116         * get.c: Removed GTSV_OPT_MAP because of a misinterpretation of
10117         the manual's meaning.
10118         (rename_variables) New function.
10119         (trim_variables) Doesn't try to parse MAP any more.  Removed debug
10120         code.  Now properly reorders the dictionary on the KEEP keyword.
10121
10122         * sfm-read.c: (read_value_labels) Fixed some bugs regarding
10123         garbage collection.
10124
10125         * vars-atr.c: (clear_variable) New argument `dictionary *'.
10126         (rename_variable) New function.
10127         (free_val_lab) Reformatted.
10128
10129 Thu Nov  7 17:29:16 1996  Ben Pfaff  <blp@gnu.org>
10130
10131         * var.h: Reindented entire file.  Comment fixes.
10132         (glob vars var, var_by_name, nvar, N, nval, n_splits, splits)
10133         Removed.
10134         (glob var default_dict) New.
10135         (struct indirect_dictionary) Removed.
10136
10137         * Many other source files were changed to add `default_dict.'
10138         before all references to the dictionary of the active file.
10139         
10140         * vars-atr.c: (make_indirect_dictionary) Removed.
10141
10142         * glob.c: Reindented all variable declarations.  Updated for
10143         changed var.h.  Comment fixes.
10144
10145         * temporary.c: (restore_dictionary, save_dictionary) Simplified
10146         because now we can mainly copy dictionary structs.
10147
10148         * vars-prs.c: (is_dict_varname, parse_dict_variable,
10149         parse_variables) Takes dictionary instead of indirect_dictionary
10150         first argument.
10151         (parse_variables) Instead of calling make_indirect_dictionary,
10152         just sets DICT to &default_dict if DICT is NULL.  Of course, lots
10153         of `*dict.' references had to be changed to `dict->'.  Removed
10154         debug code.
10155
10156 Thu Nov  7 15:48:52 1996  Ben Pfaff  <blp@gnu.org>
10157
10158         * get.c: Added GTSV_OPT_* series of enums.
10159         (trim_dictionary, dict_delete_run) New functions.
10160         [DEBUGGING] (dump_dict_variables) New function.
10161         (cmd_get) Calls trim_dictionary() to get dictionary fully set-up.
10162         [DEBUGGING] Calls dump_dict_variables() to display results.
10163
10164         * glob.c: (cmp_variable) Now a public function declared in var.h.
10165
10166         * sfm-read.c: Turned off debug code.  Comment fixes.
10167         (read_machine_int32_info, read_machine_flt64_info) New functions
10168         to parse type 7 records.
10169         (sfm_read_dictionary) Properly byteswaps several fields now.
10170         Calls read_machine_*_info() to parse type 7 subtypes 3 and 4
10171         records.  [DEBUGGING] Dumps dictionary.
10172         (read_variables) Sets `index' field of variables created properly.
10173         Constructs avl tree of variables in dictionary.  [DEBUGGING] No
10174         longer dumps dictionary.
10175         (read_value_labels) Properly byteswaps fields.  [DEBUGGING] New
10176         debug code.
10177         [DEBUGGING] (dump_dictionary) No longer stubbed out.
10178
10179         * temporary.c: (restore_dictionary) Destroys `var_by_name' glob
10180         var before destroying any variables just to save a little time.
10181
10182         * var.h: (struct variable) Reordered in order to make name[] the
10183         first member; this makes pointers to `variable' pointers to the
10184         variable name, simplifying avl trees, etc.
10185         (struct indirect_dictionary) New struct.
10186
10187         * vars-atr.c: (find_variable) Rewritten for efficiency.
10188         (make_indirect_dictionary, is_dict_varname, parse_dict_variable)
10189         New functions.
10190         (is_varname) Rewritten for efficiency.
10191         (parse_variables) New argument, which is a `dictionary *'.  All
10192         references changed.  This function now reads variable names from
10193         the dictionary passed, or from the default dictionary if NULL.
10194
10195 Tue Nov  5 18:34:59 1996  Ben Pfaff  <blp@gnu.org>
10196
10197         * misc.h: Added new macro DIV_RND_UP to perform integer division,
10198         rounding up.  Changed many references to ROUND_UP to use this
10199         instead.
10200
10201         * sfm-read.c: Includes avl.h.
10202         (corrupt_msg) Induces a segfault under Checker.
10203         (macro assertive_bufread) New.  Many references to bufread() now
10204         use this instead.
10205         (sfm_read_dictionary) Split up into several functions.  Added code
10206         to read dictionary records following the the type 2 records.  Not
10207         quite complete.  New variable `var_by_index'.
10208         (read_header, read_variables) New functions extracted from
10209         sfm_read_dictionary().
10210         (read_value_labels) New function.
10211         (bufread) Checks ferror() if fread() doesn't return the expected
10212         value; if ferror() is zero it's just EOF.
10213         (dump_dictionary) Stubbed out.
10214
10215         * BTW: The source code now exceeds 50000 lines!
10216         
10217 Mon Nov  4 22:03:28 1996  Ben Pfaff  <blp@gnu.org>
10218
10219         * command.c: Added GET to cmd_table[].
10220
10221         * list.q: Removed reference to alloca headers.
10222         (cmd_list) Gave prototype.
10223
10224         * sfm-read.c: Added DEBUGGING comments.
10225         (sfm_read_dictionary) Checks bias correctly.  Sets
10226         dict->var_by_name to NULL.  Calculates long_string_count
10227         correctly.  realloc's dict->var[] array to minimum size.
10228         [DEBUGGING] Calls dump_dictionary.
10229         [DEBUGGING] (dump_dictionary) New function.
10230
10231         * temporary.c: (save_dictionary) Sets var_by_name to NULL.
10232         (restore_dictionary) If the dictionary contains a non-NULL
10233         var_by_name, uses that instead of generating one.
10234         (free_dictionary) Destroys var_by_name.
10235
10236         * var.h: (struct dictionary) Added field `var_by_name'.
10237
10238         * get.c: New file, not complete.
10239
10240 Sun Nov  3 12:24:36 1996  Ben Pfaff  <blp@gnu.org>
10241
10242         * mis-val.c: New enums MV_NOR_*.  New struct num_or_range.
10243         (parse_num_or_range) New function.
10244         (parse_numeric) Reimplemented in order to support LOW THRU <n> and
10245         <n> THRU HIGH missing values.
10246
10247         * output.h: [__GNUC__>1 && __OPTIMIZE__] (width, height) Made
10248         __attribute__((const)).
10249
10250         * q2c.c: (get_token) Merged isdigit || isalpha into isalnum.
10251
10252         * sfm-read.c: Finished reference implementation.
10253
10254         * sfm.h: Includes var.h.
10255
10256         * var.h: Comment fixes.
10257         (struct `variable') Reordered some fields.
10258
10259         * vars-atr.c: (is_num_user_missing) Added support for MISSING_*
10260         constants added previously.
10261
10262 Wed Oct 30 17:13:08 1996  Ben Pfaff  <blp@gnu.org>
10263
10264         * common.h: Comment fixes.  Added declaration of
10265         `second_lowest_value' as variable or macro.  Made `compat_type',
10266         `pgm_state_type' into anonymous enums.
10267
10268         * display.c: Comment fix.
10269
10270         * glob.c: [ENDIAN==UNKNOWN] Added definition for `endian' global
10271         var.
10272         [!defined SECOND_LOWEST_VALUE] Added definition for
10273         `second_lowest_value' global var.
10274         (compat, pgm_state global vars) Changed types to `int'.
10275         (init_glob) Initializes `second_lowest_value'.
10276
10277         * sfm-read.c: Continued work, not complete.
10278
10279         * var.h: Added new MISSING_* constants to handle LOWEST and
10280         HIGHEST.
10281
10282 Sat Oct 26 23:06:06 1996  Ben Pfaff  <blp@gnu.org>
10283
10284         * sfm-read.c: New file, not complete.
10285
10286         * cases.c: (vec_insert) Changed vector expansion algorithm.
10287         (vec_delete) Fixed bug that screwed up deletion sometimes, it was
10288         mucking up the RECODE transformation in particular.
10289         (envector) Harmless change in notation.
10290
10291         dfm is now fairly well tested again.  
10292         * dfm.c: (dfm_get_record) Only returns ext->ptr if ext is
10293         non-NULL--duh.
10294         (cmd_begin_data) if(ext->line) replaced by if(ext && ext->line).
10295
10296         * recode.c: Comment fix.
10297
10298         * sfm.h: Interface should be fairly final now, or at least for a
10299         day or so...
10300
10301         * vfm.c: [DEBUGGING] (index_to_varname) New function.
10302         (open_active_file) [DEBUGGING] Translates ccase indices into
10303         variable names now to make it easier to understand what's really
10304         going on.
10305
10306 Sat Oct 26 20:46:31 1996  Ben Pfaff  <blp@gnu.org>
10307
10308         * data-in.c: Comment fix.
10309
10310         * data-list.c: Includes dfm.h.
10311         (do_reading) Uses new function dfm_push_cust().
10312
10313         * data-out.c: (convert_time, convert_WKDAY, convert_MONTH) Added
10314         `return 1;' at end.
10315
10316         * file-handle.h: Completely changed.  Some parts split off into
10317         new file dfm.h.  Implemented in file-handle.q.
10318         (enum FH_*) Removed.
10319         (struct fh_ext_class) New struct.
10320         (struct file_handle) Retained only these fields: name, norm_fn,
10321         fn, recform, lrecl, mode.  New fields class, ext.
10322         (get_handle_by_name, get_handle_by_filename, parse_file_handle,
10323         close_handle, handle_name) Added `fh_' prefix to name, all
10324         references changed.
10325
10326         * dfm.h: New file, implemented in dfm.c.
10327         (get_record, put_record, fwd_record, bkwd_record, set_record,
10328         get_cur_col) Functions moved from file-handle.h, now prefixed with
10329         `dfm_'.
10330         (dfm_push_cust) New function.
10331
10332         * sfm.h: New file.  Incomplete.
10333
10334         * dfm.c: All functions adjusted/rewritten for new dfm/fhp
10335         interface.  Functions reordered, comments changed.  Not well
10336         tested, probably full of bugs.
10337         (struct dfm_fhuser_ext) New struct.
10338         (dfm_close) New function.
10339         (open_file_r) Pickier about finding `BEGIN DATA.' line.
10340         (open_file_w) User messages changed.
10341         (get_record) Comment fixed.
10342         (read_record) Increments ext->ln even for inline_file.  Calls
10343         dfm_close() for inline_file when `END DATA.' encountered.
10344         (dfm_get_record) Experimental restructuring.
10345         (dfm_push_cust) New function.
10346         (cmd_begin_data) Detects whether the inline file was fully read by
10347         checking whether it is still open; detects whether it was read at
10348         all by checking whether the line number is greater than zero.
10349
10350         * file-handle.q: All functions adjust/rewritten for new dfm/fhp
10351         interface.  Functions reordered, comments changed.  Not well
10352         tested, probably full of bugs.
10353         (init_file_handle) Removed initializers for obsolete fields, added
10354         new fields.
10355         (fh_close_handle) Much simpler, now mainly calls the class
10356         function.
10357         (fh_init_files) Renamed inline file internal filename.
10358
10359         * file-type.c: Includes dfm.h.
10360         (read_from_file_type) Doesn't use dfm internal state anymore.
10361
10362         * inpt-pgm.c, print.c: Include dfm.h.
10363
10364         * recode.c: (internal_cmd_recode) Casts strlen() return value to
10365         int in comparison with other int.
10366
10367         * som-high.c: (build_target) Fixed operator precedence problem in
10368         if statement (& versus ==).
10369
10370 Sat Oct 26 10:39:25 1996  Ben Pfaff  <blp@gnu.org>
10371
10372         * dfm.c: (read_record) Can now read fixed-length records; not
10373         tested.
10374         (put_record) Can now write fixed-length records; not tested.
10375
10376         * file-handle.h: FH_* defines changed to enums.  New enum series
10377         FH_RF_*, FH_MD_*.
10378         (struct file_handle) New members recform, lrecl, mode.
10379
10380         * file-handle.q: Parser changed.
10381         (internal_cmd_file_handle) Added support for new /RECFORM, /MODE,
10382         /LRECL subcommands.  These are compatible with Windows.
10383         (init_file_handle) Initializes recform, mode fields.
10384
10385         * q2c.c: (get_line) When outputting `!' comment lines, now
10386         increments the output file line number so that `#line' directives
10387         are correct.
10388         (make_identifier) New function that converts an arbitrary string
10389         into a valid C identifier.
10390         (dump_vars) Calls make_identifier() in two places in order to
10391         suppress some errors for bad identifiers.
10392         (make_match) Allows TRUE as synonym for YES and FALSE as synonym
10393         for NO.  Allows numbers to be prefixed by underscores to make them
10394         acceptable C identifiers but still to be parsed as numbers by the
10395         Fiasco lexer.
10396
10397 Thu Oct 24 20:13:42 1996  Ben Pfaff  <blp@gnu.org>
10398
10399         * command.c: Re-enabled RECODE, SAMPLE, SELECT IF.
10400         
10401         * dfm.c: Comment fixes. (get_record) Gives error if file handle
10402         was opened for writing.
10403         (open_file_w) New function.
10404         (read_record) Uses strncasecmp if available.  Improved error
10405         messages, comments.
10406         (put_record) New function.
10407
10408         * file-handle.h: Moved function comments into dfm.c and
10409         file-handle.q.  Comment fixes.  Removed declarations of
10410         tilde_expand() and normalize_filename().
10411         (struct file_handle) Changed `open' from boolean to enumerated
10412         field to allow for three states--closed, open for reading, open
10413         for writing--all references changed.
10414
10415         * file-handle.q: Includes filename.h.
10416
10417         * print.c: (CMD_* enums) Renamed PRT_* and moved into var.h; all
10418         references changed.
10419         (alloc_line) Makes allowance for line terminator characters in
10420         calculations.
10421         (print_trns_proc) Now handles OUTFILE, WRITE differences.
10422         (print_space_trns_proc) Handles OUTFILE differences.
10423
10424         * recode.c, sample.c: Comment fixes.
10425
10426         * var.h: (struct print_trns) Changed boolean field `eject' to
10427         bitmapped field `options'; all references changed.  New enums
10428         PRT_* for use with this field.
10429
10430         * exception.h, test-exception.c: Removed.
10431
10432 Thu Oct 24 17:47:14 1996  Ben Pfaff  <blp@gnu.org>
10433
10434         * ascii.c: (delineate) Turned off debug output.
10435
10436         * common.c: [Checker and Linux] (__assert_fail, __eprintf) Moved
10437         to error.c.
10438
10439         * data-in.c: (parse_string_as_format) Sets the entire string value
10440         to spaces, not just the short string part of it.  Is this correct
10441         now? 
10442
10443         * data-out.c: (convert_date) Fixed DATETIME format problems with
10444         decimal places, removed debug code.
10445
10446         * dfm.c: (open_file_r) Fixed bug where an error would occur in the
10447         middle of parsing BEGIN DATA that would cause the lexer to read
10448         from a wild pointer `prog'; now calls new function
10449         preprocess_line() in lexer.c.
10450
10451         * error.c: [__CHECKER__] (hcf) Calls induce_segfault() on improper
10452         termination.
10453         [Checker and Linux] (__assert_fail, _eprintf) Moved from common.c.
10454         Now call induce_segfault() to induce the segfault.
10455         (induce_segfault) New function.
10456
10457         * expr-opt.c: Comment fix.
10458         (parse_sysvar) New function.
10459         (parse_primary) Added system variable support--calls
10460         parse_sysvar().
10461         (global var ops) Added OP_CASENUM operator.
10462
10463         * expr.h: Comment fixes.
10464         (OP_* enum) added OP_CASENUM operator.
10465         (struct casenum_node) New struct.
10466         (union any_union_union) New member `cas' of type `casenum_node'.
10467
10468         * glob.c: (global var last_vfm_invocation) New var.
10469         (init_glob) Initializes last_vfm_invocation.
10470
10471         * lexer.c: (lookahead) Fixed reversed condition on if statement.
10472
10473         * getline.c: (get_line) Split into get_line() and preprocess_line().
10474         (preprocess_line) New function.
10475
10476         * var.h: Declares last_vfm_invocation.
10477
10478         * vfm.c: (procedure) Sets last_vfm_invocation.
10479
10480 Wed Oct 23 21:53:43 1996  Ben Pfaff  <blp@gnu.org>
10481
10482         * command.c: (parse_cmd) Fixed bad assertion related to
10483         lookahead().
10484
10485         * data-in.c: (parse_month) Implemented to parse months according
10486         to full interpretation of standard.
10487         (to_roman) New function.
10488         (parse_wk_delimiter) Bug fix (forgot to skip `WK' in string).
10489         (parse_weekday) Bug fix (forgot to skip all the day name).
10490
10491         * data-list.c: (read_from_data_list_fixed) Fixed bug that screwed
10492         up parsing of multirecord data items.  Also fixed user message.
10493
10494         * data-out.c: Comment fix.
10495         (year2, year4, convert_date, convert_time, convert_WKDAY,
10496         convert_MONTH) New functions to support time & date output.
10497         (convert_format_to_string) Calls new time & date output routines.
10498
10499         * expr-prs.c: (nary_num_func) Found a bug, but didn't fix it yet.
10500
10501         * lexer.c: (lookahead) Noted a previously unnoticed caveat in
10502         comment.
10503
10504         * main.c: [DEBUGGING] (dump_token) Updated to handle getline.h.
10505
10506         * misc.c: (global var formats) Fixed declarations of DATETIME,
10507         TIME, DTIME.
10508
10509         * postscript.c: (text) Fixed a pair of bugs in the reallocation of
10510         the output_char buffer.
10511
10512         * vars-prs.c: (parse_DATA_LIST_vars) Fixed a failure to free
10513         memory bug.  Fixed user messages.
10514
10515 Tue Oct 22 17:27:04 1996  Ben Pfaff  <blp@gnu.org>
10516
10517         * Removed #pragma argsused from lots of places.
10518         
10519         * data-in.c: Implemented zoned decimal and time-date formats.
10520         Untested.  This is a huge chunk of code--maybe 1000 lines and 50
10521         new functions.
10522
10523         * data-out.c: Implemented zoned decimal format.
10524
10525         * expr.h: Moved yrmoda() declaration here from exprP.h.
10526
10527         * misc.c: (global var formats) Minor fixes--added
10528         FCAT_SHIFT_DECIMAL to formats N and Z.
10529         (convert_fmt_ItoO) Added support for format Z.
10530
10531         * som-frnt.c: (som_set_value) Fixed bug regarding string values.
10532
10533 Mon Oct 21 20:39:59 1996  Ben Pfaff  <blp@gnu.org>
10534
10535         * command.c: (parse_cmd) [GLOBAL_DEBUGGING] Inserted call to
10536         som_check_workspace() that is activated between commands.
10537
10538         * data-list.c: (dump_fixed_table, dump_free_table) Finished these
10539         for good, I hope.
10540
10541         * list.q: (begin_row) Changed title expansion style from
10542         SOPT_X_VERT to SOPT_X_SHSP.
10543
10544         * som-frnt.c: Now includes `somP.h'.
10545         (som_push_workspace, som_pop_workspace) New functions that, taken
10546         together, form a solution to the recursive table building problem
10547         mentioned yesterday.  Surrounded every table output routine
10548         throughout the program with calls to these functions.
10549         [GLOBAL_DEBUGGING] (som_check_workspace) New function.
10550         (som_create_table) Checks that there's an active workspace.
10551         (som_destroy_all_tables, som_crush) Removed.
10552
10553         * som-high.c: (global var som_preserve_tables) Removed, all
10554         references deleted.
10555         (som_submit_table) Checks that there's an active workspace.
10556         (dump_columnated_table) Doesn't columnate tables that would have
10557         just one row per column.
10558         (dump_crush_page, som_dump_crush_page) Removed debugging code.
10559         (som_dump_crush_page) Moved row number labels from left side of
10560         tables to right side.
10561         (som_get_table_size) Added support for SOPT_X_SHSP.
10562
10563         * som.h: New cell expansion type SOPT_X_SHSP.
10564
10565         * somP.h: (global vars arena_stack, n_arena_stack, m_arena_stack)
10566         New vars.
10567         (global var curtab_arena) Moved from som-frnt.c.
10568
10569 Sun Oct 20 13:45:28 1996  Ben Pfaff  <blp@gnu.org>
10570
10571         * ascii.c: [GLOBAL_DEBUGGING] (SUPPRESS_WARNINGS) New debug option
10572         that causes bad location warnings to be suppressed.
10573         (delineate) Saves current font when calling draw_text(); fixed
10574         handling of NULLs when backing up.  Also fixed line-wrapping bug.
10575
10576         * command.c: Re-enabled `LEAVE', `NUMERIC', `PRINT', `PRINT EJECT',
10577         `PRINT FORMATS', `PRINT SPACE', `STRING', `TITLE', `WRITE'.
10578
10579         * common.c: Added code to cause assertion failure to dump core
10580         when run under Checker.
10581
10582         * data-list.c: (dump_fixed_table) Fixed some inconsistencies, but
10583         there are still bugs.
10584
10585         * glob.c: (__eprintf) Removed.
10586
10587         * list.q: Inserted som_preserve_tables kluge that prevents tables
10588         from being thrown away due to recursive table building through
10589         som_output_line being called from a transformation during the LIST
10590         procedure invocation.  This is a general problem that must be
10591         solved in a better way since it applies to all procedures in
10592         general.
10593         (begin_row) Changed title options to SOM_X_VERT from SOM_X_BOTH.
10594         (flush_table) Removed SOM_TOPT_PRESERVE from submission options.
10595
10596         * numeric.c: Fixed several errors in the form of msg() calls.
10597
10598         * print.c: Updated for use of som.
10599         (dump_table) Reimplemented.
10600         (print_trns_proc) Calls som_eject_page() instead of eject_page().
10601         Calls som_output_text() instead of outs_line().
10602
10603         * som-frnt.c: (som_destroy_all_tables) Sets som_preserve_tables to
10604         0.
10605         (som_output_text) Function moved from som-low.c.  Interface
10606         changed.
10607
10608         * som-high.c: (som_preserve_tables) New global public variable
10609         declared in som.h.
10610         (som_submit_table) Destroys the tables only if som_preserve_tables
10611         is 0.
10612         (paginate_horizontally) Bugfix: sets som.mpw even if there's only
10613         one subrow per row.  Now labels subrows if there's more than one
10614         subrow per row.
10615         (dump_crush_table) Added wishlist comment.
10616         (som_eject_page) New public function declared in som.h.
10617
10618         * som-low.c: (som_dump_crush_page) Draws row labels if there's
10619         more than one subrow per row.
10620         (som_output_text) Moved to som-frnt.c.
10621
10622         * som.h: (SOM_TOPT_PRESERVE) Removed.
10623
10624         * title.c: (get_title) Changed interface.
10625         (cmd_title) Changed `title' to `outp_title'.
10626         (cmd_subtitle) Changed `subtitle' to `outp_subtitle'.
10627
10628 Sun Oct 20 09:04:15 1996  Ben Pfaff  <blp@gnu.org>
10629
10630         * list.q: (flush_table) Conforms to new partial options in
10631         som_submission_form.
10632
10633         * som-high.c: (paginate_horizontally) Changed form of subrow
10634         number labels.
10635         (build_target) Omits spacing before table if
10636         SOM_TOPT_PARTIAL_OMIT_TOP is selected.
10637         (dump_crush_page) Changed interface.  Only trims bottom rule if
10638         SOM_TOPT_PARTIAL_OMIT_BTM is not selected.
10639         (dump_crush_table) Handles partial tables.
10640         (output_row_label) New function.
10641         (som_dump_crush_page) Emits subrow number labels.  Draws vertical
10642         rule on the right edge of narrow subrows.
10643
10644         * som.h: Changed SOM_SUB_PARTIAL_* series of submission type
10645         constants to a series of SOM_TOPT_PARTIAL_* submission options.
10646         All references updated.
10647
10648 Fri Oct 18 19:46:49 1996  Ben Pfaff  <blp@gnu.org>
10649
10650         * misc.c: Comment fix.
10651
10652         * som-high.c: (examine_table) Treats crushed tables separates for
10653         purpose of determining header size.
10654         (paginate_horizontally) Allots space for line numbers in crushed
10655         tables with lots of subrows per row.  Calculates the `maximum page
10656         width', the width of the widest horizontal page.
10657         (build_target) Removed trim argument; all references changed.
10658         Stricter assertions.  (dump_crush_page) New function.
10659         (dump_crush_table) Reimplemented.
10660
10661         * som-low.c: (som_dump_page) Uses new RULE_ROW &c. constants.
10662         (som_dump_crush_page) Reimplemented, interface changed.
10663
10664         * somP.h: Many many new helper macros for use with crushed tables.
10665         (global var som) Removed `tv', `cum_y' members; all references
10666         removed.  New members `mpw', `digit_space'.
10667
10668 Sun Sep 29 19:37:03 1996  Ben Pfaff  <blp@gnu.org>
10669
10670         * arena.c: (arena_alloc) [!DISCRETE_BLOCKS] Removed `size'
10671         variable, changed to constant 1024.
10672         (arena_ca_strdup) Changed `sizeof(a_string)' to
10673         `sizeof(c_string)'.
10674         (arena_ca_strdup) [!DISCRETE_BLOCKS] Changed bad cast from
10675         `(c_string *)' to `(char *)'; this fixed some offset problems.
10676
10677         * filename.c: (readlink_malloc) Changed initial allocation from
10678         100 bytes to 128.
10679         (good_getcwd) Changed from xmalloc() to local_alloc(); removed
10680         comment.
10681
10682         * postscript.c: (read_fontmap) Fixed leak by changing &owner to
10683         &fm->owner in several places.
10684
10685         * som-high.c: (output_table) Changed interface to rest of world.
10686         (examine_crush_table) Removed.  Crushed tables are re-broken now,
10687         in preparation for rewrite.
10688
10689         * som.h: Comment fix.
10690
10691 Sat Sep 28 21:28:07 1996  Ben Pfaff  <blp@gnu.org>
10692
10693         * ascii.c: (ascii_init_driver) Disposes of x->file.filename and x
10694         itself in the cleanup stage.
10695
10696         * descript.q: (display) At least temporarily, changed the table
10697         format to a crushed table.
10698
10699         * list.q: (begin_row) At least temporarily, added horizontal lines
10700         between cases.
10701
10702         * som-high.c: (examine_crush_table) Sets som.hh to the width of
10703         the horizontal "headers," that is, to the width of the far left
10704         and far right rules.
10705         (justify_pagination) Sets som.th to the width of the widest row
10706         in the crushed table.  Fixed inner loop off-by-one error.
10707
10708         * som-low.c: (som_dump_crush_page) Added code to draw horizontal
10709         rules.
10710
10711         * somP.h: Comment fix.
10712
10713 Fri Sep 27 20:08:39 1996  Ben Pfaff  <blp@gnu.org>
10714
10715         * filename.c: (open_file_ext) Now, doesn't set f->file to NULL
10716         before closing it; also, opens the constructed filename `s'
10717         instead of f->filename.
10718
10719         * postscript.c: Moved initialization of x->loaded, x->prop,
10720         x->fixed, x->current, also the add_encoding() calls, into
10721         postopen().
10722         (preclose) Destroys x->combos; sets x->loaded, x->combos to NULL;
10723         sets x->last_font to NULL; sets x->next_combo to zero.
10724
10725         * som-high.c: (crushed_row_height) Moved definition farther up.
10726         (som_submit_table) Doesn't calculate line width, font size until
10727         after calling open_page(), to accomodate changes to PostScript
10728         driver.
10729         (vert_headers) Removed; equivalent functionality moved to
10730         examine_table(), examine_crush_table().
10731         (justify_pagination) Replaced with different algorithm.
10732         (dump_crush_table) Bugfix that caused tables to fail to be clipped
10733         at the bottom of the page.
10734
10735 Thu Sep 26 22:20:26 1996  Ben Pfaff  <blp@gnu.org>
10736
10737         * command.c: Added cmd_list back into cmd_table.
10738
10739         * freq.c, frequencies.q, repeat.c, list.q, vars-atr.c, vfm.c:
10740         Comment fix: `#define DEBUGGING' --> `#define DEBUGGING 1'.
10741
10742         * list.q: (flush_table) Updated to new som_submission_form format.
10743
10744         * som-frnt.c: Comment fix.
10745
10746         * som-high.c: Changed `#endif' to `#undef EXTERN'.
10747         (output_table) Calls som_get_table_size() directly; handles
10748         crushed tables.
10749         (examine_crush_table) New function; calls vert_headers().
10750         (examine_table) Moved some code into new function, vert_headers().
10751         (justify_pagination) New function.
10752         (dump_plain_table) Removed `static' from `cy'.
10753         (dump_crush_table) New function.
10754
10755         * som-low.c: (som_dump_crush_page) New function.
10756
10757         * som.h: Comment fixes.
10758         (enum SOM_TOPT_CRUSH) New.
10759         (SOM_SUB_PARTIAL_BEG, SOM_SUB_PARTIAL_MID, SOM_SUB_PARTIAL_END)
10760         Temporarily set to zero to make do with LIST procedure.
10761
10762         * somP.h: Re-ordering.
10763
10764 Wed Sep 25 19:36:11 1996  Ben Pfaff  <blp@gnu.org>
10765
10766         * som.c: Split into som-frnt.c, som-high.c, som-low.c.
10767
10768         * somP.h: New file for use by som-high.c, som-low.c.
10769
10770         * q2c.c: Added definition for VME.
10771         (get_line) Now dumps `!' comment lines to the output file
10772         verbatim.
10773
10774         * crosstabs.q, descript.q, file-handle.q, frequencies.q, list.q,
10775         set.q: Changed format of `!' comment lines.
10776
10777 Tue Sep 24 18:39:09 1996  Ben Pfaff  <blp@gnu.org>
10778
10779         * All source files: Added copyright notice.
10780
10781         * common.c: (xmalloc, xrealloc, xstrdup) Cast size_t's to unsigned
10782         longs in msg() calls.
10783
10784         * con32s.c: (xmalloc, xrealloc) Updated from common.c.
10785
10786         * q2c.c: (xmalloc, xrealloc, xstrdup) Updated from common.c.
10787
10788 Sat Sep 21 23:16:31 1996  Ben Pfaff  <blp@gnu.org>
10789
10790         * output.c: (outp_read_devices) Changed criteria for
10791         distinguishing different types of lines.
10792
10793 Fri Sep 20 22:52:28 1996  Ben Pfaff  <blp@gnu.org>
10794
10795         * cmdline.c: Changed syntax message.
10796
10797         * filename.c: (good_getcwd) Bug fix (?).
10798         (normalize_filename) [__BORLANDC__] Uses _fullpath() library
10799         function.
10800         (search_path) Appends DIR_SEPARATOR to directory name only if it
10801         does not already end with one.
10802
10803         * glob.c: Checks STAT_PAGER envvar before PAGER.
10804
10805         * output.c: Checks environment variables instead of just local
10806         macros.
10807
10808 Tue Sep 10 21:39:00 1996  Ben Pfaff  <blp@gnu.org>
10809
10810         * arena.c: (arena_destroy) Swatted a subtle bug that cropped up
10811         when the pointer passed to the function was within the arena
10812         itself, so that it couldn't properly be set to NULL _after the
10813         arena was freed_.
10814
10815         * command.c: Re-enabled DISPLAY.
10816
10817         * display.c: Rewritten to handle tables.  Untested.
10818
10819         * filename.c: (search_path) Fixed memory leak.
10820
10821         * frequencies.q: (cmd_frequencies) Frees v_variables.
10822         (postcalc) Calls cleanup_freq_tab() after displaying statistics.
10823         (cleanup_freq_tab) New function to garbage collect.
10824         (dump_full) Elegantized.
10825
10826         * main.c: New comment.
10827
10828         * output.h: New tag for tagged quotes: TAG_NEWLINE.
10829
10830         * postscript.c: Comment fix.
10831         (release_fontmap, free_font_entry) New functions.
10832         (ps_init_driver) Sets free_font_entry() as the freefunc for
10833         hashtable `loaded'.  Calls release_fontmap() when destroying a
10834         driver; also frees the output filename; also frees the
10835         ps_driver_ext block.
10836         (free_ps_encoding) Frees the filename as well as the encoding
10837         block.
10838         (output_encodings) Frees the line buffer and pops the msg-filename
10839         stack.
10840         (read_fontmap) Frees the fontmap filename and the line buffer.
10841         (postopen, preclose) Misc. garbage collection fixes.
10842         (ps_open_page) Destroys the `combos' hash table; sets `last_font'
10843         to NULL; this fixes some output problems.
10844         (text) Handles TAG_NEWLINE.  Untested.
10845
10846         * som.c: (cell_byte_size) Merged SCON_VALUE and SCON_TEXT cases.
10847         (som_set_string) Removed.  All references changed to
10848         `som_set_text'.
10849         (som_set_text) Rewritten.  New interface.  More general.
10850
10851         * som.h: Minor format changes.
10852         (struct som_value_cell) Removed; all references changed to
10853         `som_text_cell'.
10854         (enums SOT_*) Changed.
10855
10856 Mon Sep  9 21:43:13 1996  Ben Pfaff  <blp@gnu.org>
10857
10858         * command.c: Re-enabled SPLIT FILE.
10859
10860         * postscript.c: Comment fix.
10861
10862         * som.h: Added `SOT_NONE'.
10863
10864         * split-file.h: (cmd_split_file) Removed superfluous parenthesis.
10865
10866         * vfm.c: (dump_splits) Reimplemented.
10867
10868 Sat Sep  7 22:35:12 1996  Ben Pfaff  <blp@gnu.org>
10869
10870         * Compiled the project under gcc 2.7.2, which gave some new
10871         warnings.  This led to many additions of casts from unsigned to
10872         int sprinkled throughout the code.
10873         
10874         * arena.c: Many uses of `unsigned' changed to `size_t'.
10875
10876         * command.c: Added END FILE, END REPEAT to command table.
10877         (var cmd_end_repeat) Renamed cmd_end_repeat_p.
10878         (find_command, FILE_TYPE_okay) Not commented out anymore.
10879         (parse_cmd) Calls FILE_TYPE_okay again.
10880         (output_line) Added calls to som_output_text() to put the line
10881         in the output files.
10882
10883         * common.c: (macro VME) Format changes.
10884         (xstrdup) Asserts that its argument is not NULL.
10885         
10886         * data-list.c: Implemented dump_fixed_table().
10887         
10888         * inpt-pgm.c: Formatting changes.  Comment changes.
10889         (end_case_proc) Renamed end_case_trns_proc.
10890         (cmd_end_file, end_file_trns_proc) New functions.
10891
10892         * misc.c: Many uses of `int' and `unsigned' changed to `size_t'.
10893
10894         * misc.h: (local_strdup) New macro corresponding to strdup() but
10895         allocating its data through local_alloc() if possible--that is, if
10896         GNU C is in use.
10897
10898         * postscript.c: Comment changes.
10899         (quote_ps_name, quote_ps_string, output_encodings) New functions.
10900         (output_line, add_string) New macros supporting
10901         output_encodings().
10902         (postopen) Fixed contents of ${fixed-font} and ${prop-font}
10903         substitution vars.  Calls output_encodings() when a line
10904         consisting of `!encodings' is encountered.
10905         (preclose) Some code moved into quote_ps_string().
10906         (dump_line) Changed into macro supporting dump_fancy_line().
10907         (switch_font) Now outputs DSC "%%IncludeResource: font (...)"
10908         command when appropriate.
10909         (write_text) Fixed `literal_char' array (I think it's fixed, at
10910         least.)
10911         (text) Fixed bug when width was zero.  Now exits immediately on
10912         zero height_left.  Now, when executing `goto restart;', checks
10913         that cp<end, so that we don't read beyond end-of-string.  Also,
10914         outputs the correct code to the output file by outputting the code
10915         from the metric instead of the internal metric index.
10916
10917         * repeat.c: (cmd_end_repeat) New function.
10918
10919         * som.c: (var som) `headers' renamed `options' and semantics
10920         changed.  All references changed.
10921         (draw_title) `if(px!=-1 || px!=-1)' --> `if(px!=-1 || py!=-1)'.
10922         (build_target) Only inserts spacing if SOM_TOPT_SPACING not
10923         selected.
10924         (som_text_table) Removed.
10925         (som_output_text) New function.
10926
10927         * som.h: (struct som_submission_form) Removed `header', `reuse',
10928         replaced with bitmapped field `options'.
10929         (SOM_TOPT_*) New enum set for som_submission_form.options.
10930         (SOT_*) New enum set for som_output_text().
10931
10932         * temporary.c: (copy_variable) When copying the var label, only
10933         calls xstrdup() if it's non-NULL.
10934
10935         * var.h: (enum type `vartype') Removed; all references changed to
10936         `int'.
10937
10938         * vars-atr.c: (init_variable) Changed local var `nbytes' from
10939         `int' to `size_t'.
10940
10941 Thu Sep  5 22:05:56 1996  Ben Pfaff  <blp@gnu.org>
10942
10943         * font.h: Comment changes.
10944
10945         * groff-font.c: (groff_read_font) Initializes `name' field to
10946         NULL.  Handles `encoding' field.
10947
10948         * hash.c: (hsh_dump) [GLOBAL_DEBUGGING] Output formatting changes.
10949
10950         * postscript.c: (struct font_entry) Removed `position' field.
10951         (struct ps_font_combo) New struct.
10952         (struct ps_driver_ext) Removed field `next_position'.  New fields
10953         `combos', `next_combo'.  `last_font' field changed from
10954         `font_entry *' to `ps_font_combo *'.
10955         (ps_init_driver) Reformatted; handles new fields.  When
10956         OPO_AUTO_ENCODE is set, adds the two default fonts' encodings to
10957         the encoding list.
10958         (get_encoding, find_encoding_file) New functions.
10959         (add_encoding) Some code moved out into find_encoding_file().
10960         (postopen) Changed value for ${title}.
10961         (preclose) Sets `loaded' field to NULL after destroying the hash
10962         table.
10963         (ps_open_page) Added comment.  Inits the `combos' and `next_combo'
10964         fields.
10965         (ps_text_set_font_by_position) Figures out the current family if
10966         not known.
10967         (compare_ps_combo, hash_ps_combo, free_ps_combo) New functions.
10968         (switch_font) Implemented.
10969         (write_text) Calls switch_font() more often.  Format changes.
10970         #undefs its macros after they're no longer useful.
10971         (text) Changed `continue' at one point to a jump to the top of the
10972         loop because we don't want `separate' reset to 0 at that point.
10973         (load_font) No longer sets `position' in the font_entry created.
10974
10975 Wed Sep  4 21:45:35 1996  Ben Pfaff  <blp@gnu.org>
10976
10977         * font.h: (struct font_desc) New member `encoding', which is not
10978         properly handled yet.
10979
10980         * glob.c: (init_glob) Some new i18n code, which is probably
10981         screwed up.
10982
10983         * output.c: (outp_read_devices, outp_get_paper_size) Changed
10984         `size' local from `int' to `size_t'.
10985
10986         * postscript.c: New driver configuration parameter `auto-encode'.
10987         New enums OPO_AUTO_ENCODE, ODA_COUNT.
10988         (struct font_entry) New member `position'.
10989         (struct ps_driver_ext) Reordered.  New hash table member
10990         `encodings'; new members `next_position', `next_encoding',
10991         `last_font'.  Members `current', `prop', `fixed' changed from type
10992         `font_desc *' to `font_entry *'; all references changed.
10993         (struct ps_encoding) New struct.
10994         (read_ps_encodings, compare_ps_encoding, hash_ps_encoding,
10995         free_ps_encoding, add_encoding) New functions.
10996         (ps_init_driver) Added OPO_AUTO_ENCODE to default
10997         x->output_options.  Initializes new members of ps_driver_ext.
10998         Changed default value for prologue_fn, encoding_fn.  Calls
10999         read_ps_encodings after loading default fonts.
11000         (option_tab[], ps_option) Handle new configuration parameter.
11001         (switch_font) New function.
11002         (struct output_char) `font' member changed from `font_desc *' to
11003         `font_entry *'.  New member `separate'.
11004         (read_fontmap) Changed `size' from `int' to `size_t'.
11005         (output_line, put_number) New macros for write_text().
11006         (write_text) Optimizes text output by consolidating multiple
11007         calls to PostScript `show' operator.
11008         (text) Keeps track of when text arguments can't be consolidated by
11009         write_text(), and marks those spots in the output stream.
11010         (load_font) Sets `position' of the allocated font_entry to -1, cuz
11011         the font hasn't been switched to by switch_font(), which is where
11012         the position is important--the PostScript is what cares about the
11013         position.
11014
11015 Sat Aug 31 23:52:38 1996  Ben Pfaff  <blp@gnu.org>
11016
11017         * hash.c: (hsh_destroy) Ignores NULL argument.  Doesn't try to
11018         call a NULL free_func.
11019         (hsh_rehash) Elegantized.
11020         (hsh_probe) Fix bug that manifested when the table was expanded
11021         and thus had to change location in memory.  Good thing
11022         too--otherwise could have been much more subtle.
11023         (hsh_find) [GLOBAL_DEBUGGING] Not stubbed out anymore.
11024         (hsh_foreach) New function for hash table iteration.
11025
11026         * hash.h: (struct hsh_iterator) New.
11027
11028         * lexer.c: (parse_tagged_quote) Font and family name strings in
11029         tags are now null-terminated.
11030
11031         * output.c: (outp_evaluate_dimension) Fixed over-aggressive unit
11032         parsing.
11033         (internal_get_paper_size, outp_get_paper_size) Fixed; now work as
11034         documented.  (Never before tested?)
11035
11036         * output.h: Comment changes.
11037
11038         * postscript.c: New driver options `optimize-text-size',
11039         `optimize-line-size', `max-fonts-simult'.  New enum set for
11040         specing cached line types.  Comment fixes.
11041         (struct line_form) New struct.
11042         (struct ps_driver_struct) New members `text_opt', `line_opt',
11043         `max_fonts', `lines'.
11044         (ps_init_driver) Initializes new members of ps_driver_struct.
11045         (user option type enum set) New member `nonneg_int_arg'.
11046         (static var option_tab[]) Supports new options.
11047         (ps_option) Handles new options.
11048         (find_ps_file) Made static.  No longer calls hsh_dump().
11049         (ps_get_var) Made static.
11050         (preclose) Dumps out proper DSC trailer.
11051         (ps_open_page) Elegantized.
11052         (ps_close_page) Calls dump_lines() if appropriate.
11053         (ps_line_horz, ps_line_vert, ps_line_intersection) Reduced to
11054         wrappers around line().
11055         (int_2_compare, compare_line, dump_line, dump_fancy_line,
11056         dump_lines, hash_line, free_line, line) New functions for support
11057         of line caching.
11058         (write_text, text) Made static.
11059         (text) Added to font support, not finished.
11060
11061 Thu Aug 29 21:36:41 1996  Ben Pfaff  <blp@gnu.org>
11062
11063         * font.h: (struct font_desc) New members ascent, descent.
11064
11065         * groff-font.c: (groff_read_font) Calculates font ascent and
11066         descent from the ascent and descent of the `d' and `p' characters,
11067         respectively, as per a suggestion on comp.fonts.
11068
11069         * postscript.c: (ps_open_page, ps_close_page, ps_line_horz,
11070         ps_line_vert, ps_line_intersection) Rewritten to deal with changed
11071         prologue.
11072         (write_text) Handles text right-justification and centering (not
11073         full justification).  Still very inefficient.  (One output line
11074         per character?!)
11075         (struct output_char) Added fields for font and font size.
11076         (text) Many bugfixes.
11077
11078 Sat Aug 24 23:26:00 1996  Ben Pfaff  <blp@gnu.org>
11079
11080         * cmdline.c: (usage) Calls outp_list_classes().
11081
11082         * font.h: Comment fix.
11083
11084         * groff-font.c: New exported global var `space_index'.
11085         (groff_init) New function to initialize `space_index'.
11086         (hash_kern) Casts result to unsigned.
11087         (font_name_to_index) Renamed font_char_name_to_index.  All
11088         references changed.  Also, now returns the value of `space_index'
11089         when passed an ASCII space character as an argument.  Fixed
11090         handling of nulls.
11091         (font_get_kern_adjust) Changed i from `int' to `unsigned'.
11092         Handles passed NULL pointers properly.
11093
11094         * lexer.c: (parse_tagged_quote) Comment fix.  Better range
11095         checking.
11096
11097         * output.c: (outp_list_drivers) Removed.  Removed all references.
11098         
11099         * output.h: Comment fixes.
11100
11101         * postscript.c: (ps_open_global) Calls groff_init().
11102         (output_char) New structure.
11103         (write_text) New function.
11104         (text) No longer stubbed out!  Now the output is correct--with a
11105         few exceptions, one of them being that the page has to be held
11106         upside down into a mirror.
11107
11108 Sun Aug 11 21:31:22 1996  Ben Pfaff  <blp@gnu.org>
11109
11110         * font.h: Comment fix.
11111         
11112         * font.c: (name_to_index) Renamed font_name_to_index, made extern.
11113         All callers changed.
11114         (number_to_index) Renamed font_number_to_index, made extern.  All
11115         callers changed.
11116         (font_get_kern_adjust, font_get_char_metrics) New functions.
11117
11118         * output.h: New constant OUTP_T_INTERNAL_DRAW.
11119
11120         * postscript.c: Changed default line width back to 1/2 point.
11121         (ps_line_horz, ps_line_vert, ps_line_intersection) Now lines are
11122         in the center of the space allotted for them, not just a fixed
11123         offset from the edge of the space; this fixes some bugs.
11124         (ps_line_intersection) Now supports all command line styles.
11125         (ps_text_get_size) Bug fix in computation of em width.
11126         (text) New function, the meat behind ps_text_metrics and
11127         ps_text_draw.  Not complete.
11128         (ps_text_metrics, ps_text_draw) Removed the stub taken from
11129         ascii.c; call text().
11130
11131 Sat Aug 10 23:28:17 1996  Ben Pfaff  <blp@gnu.org>
11132
11133         * arena.c: (arena_free) Assert that the argument is non-NULL.
11134         
11135         * groff-font.c: (add_kern) Calls arena_free() for old_kern if and
11136         only if old_kern is non-NULL.
11137
11138         * postscript.c: (ps_init_driver) Changed default line width to 1
11139         point.
11140         (postopen) New prologue variables.
11141         (ps_line_horz, ps_line_vert, ps_line_intersection) Implements some
11142         more of the common line styles properly, but not all.
11143         (ps_text_metrics) Fixed problem with this stubbed out version that
11144         kept it from taking font sizes into account.
11145
11146 Thu Aug  8 22:31:11 1996  Ben Pfaff  <blp@gnu.org>
11147
11148         * arena.c: (arena_malloc) Bug fix.
11149         (arena_dump) [GLOBAL_DEBUGGING] New function.
11150
11151         * ascii.c: Comment fix.
11152         (count_fancy_chars, delineate) Now static functions.
11153         
11154         * filename.c: (interp_vars) Bug fixes.
11155
11156         * font.h: Comment fixes.
11157
11158         * glob.c: (init_glob) Sets set_viewwidth, set_viewlength at
11159         beginning in case we have an error message to display before
11160         initializing the display.
11161
11162         * groff-font.c: Comment fix.  Changed rehash threshold from 2/3
11163         full to 1/2 full.
11164         (groff_read_font) Bug fixes.
11165         (name_to_index) Increments hash.used.  Sets `name' field of hash
11166         entry properly.
11167         (add_kern) Sets kern_max_used after rehashing.  Other bug fixes.
11168
11169         * hash.c: Return type changed.
11170
11171         * postscript.c: Continued development.  Now marks lines on the
11172         paper, but very buggy.
11173
11174 Sat Aug  3 20:50:35 1996  Ben Pfaff  <blp@gnu.org>
11175
11176         * Changed comments in many source files from `/* xxx /* yyy */' to
11177         `/* xxx */ /* yyy */' for cleanliness.
11178
11179         * arena.c: (arena_sd_strdup) New function.
11180         
11181         * ascii.c: (struct ascii_driver_ext) New member `file'.
11182         (ascii_init_driver) Fills out member `file' for initing; uses
11183         close_file_ext for closing drivers.
11184         (ascii_option) Changed %.*s back to %s because the a_string's are
11185         always null-terminated.
11186         (postopen, preclose) New functions.
11187         (ascii_open_page) Uses new style of open_file_ext.
11188         (ascii_option, commit_line_buf, output_lines) Use ext->file.file
11189         instead of this->output.
11190         (__assert_fail) Removed.
11191
11192         * cmdline.c: Changed syntax_message[].
11193
11194         * error.c: #include's <readline/history.h> only if the history
11195         library is available, not if just the readline library is
11196         available.
11197
11198         * filename.c: (expand_line) Removed alloca() support.
11199         (interp_vars) No longer tilde-expands argument.  Limit on output
11200         length removed.
11201         (tilde_expand) Now treats argument as path rather than filename.
11202         [!unix] Now is a no-op function.
11203         (search_path) Better verbose message formatting.
11204         (open_file, close_file) Comment fixes.
11205         (close_file) [!unix] Doesn't bother with pipes.
11206         (open_file_ext) Completely rewritten, interface revamped.
11207         (close_file_ext) New function.
11208
11209         * font.h: Comment changes.
11210
11211         * frequencies.q: Removed AIX alloca support since it doesn't use
11212         alloca.
11213
11214         * hash.c: Comment changes & additions.
11215         (hsh_create) Initializes entire table instead of first M entries.
11216         (hsh_probe) Stupid bug fixed.  Now it works.
11217         (hsh_dump) [GLOBAL_DEBUGGING] New function.
11218
11219         * main.c: (parse) Detects EOF properly in token-eating loop.
11220         Should the STOP token have its value changed to 0?
11221
11222         * misc.c: (blp_getdelim) [HAVE_GETDELIM] Now it's a macro.
11223         (blp_getline) Now it's a macro.
11224
11225         * output.h: (struct outp_driver) Removed members output, filename.
11226         
11227         * output.c: (outp_init) [!NO_POSTSCRIPT] Installs PostScript
11228         drivers in driver table.
11229         (outp_read_devices) Frees buf.  Warns if there are no active
11230         output drivers.
11231         (outp_configure_clear) Sets outp_configure_vec to NULL after
11232         deleting its elements.
11233         (configure_driver, destroy_driver) Removed references to output,
11234         filename members of outp_driver.
11235         (outp_evaluate_dimension, internal_get_paper_size,
11236         outp_get_paper_size) New functions.
11237
11238         * postscript.c: Continued development.  Now links but doesn't make
11239         any marks on the page.  Lotsa bugs I suppose.
11240
11241         * str.c: (strcasecmp) [!HAVE_STRCASECMP] New function.
11242
11243         * str.h: Comment changes.
11244
11245 Sat Jul 27 22:32:38 1996  Ben Pfaff  <blp@gnu.org>
11246
11247         * Removed dependencies on non-nested comments in several files.
11248         Also removed references to (unix || __unix__) in #if's since
11249         prefh.orig makes those two equivalent.
11250         
11251         * ascii.c: (ascii_open_global) Creates ascii_arena.
11252         (ascii_close_global) Destroys ascii_arena.
11253         (ascii_init_driver) Doesn't create ascii_arena.
11254         (ascii_copy_driver) Removed.
11255         (ascii_option) Possible bugfix regarding %s vs. %.*s with a_string's.
11256         (outp_class ascii_class) Removed ascii_copy_driver reference.
11257
11258         * frequencies.q: Now can display all statistics except median.
11259         Still not finished.
11260
11261         * output.c: Handles outp_class.ref_count so output class
11262         destructors are called properly.
11263         (add_class) Sets ref_count to 0.
11264         (configure_driver) Initializes class if ref_count++ is 0.
11265         (destroy_driver) Destructs class if --ref_count is 0.  Frees the
11266         class output file name.
11267         
11268         * output.h: (struct outp_class) Removed copy_driver, inited.
11269         Added ref_count.
11270
11271         * postscript.c: Completely replaced but not finished.
11272         
11273 Tue Jul 23 21:48:36 1996  Ben Pfaff  <blp@gnu.org>
11274
11275         * approx.h: #includes <float.h>.
11276
11277         * arena.h, arena.c: Many functions changed to take an arena **
11278         instead of an arena *, for consistency.  All callers changed.
11279         (arena_alloc) Now creates a new arena if passed *A that is NULL.
11280         (arena_destroy) Sets *A to NULL.
11281         
11282         * ascii.c: (delineate) Implements OUTP_T_VERT correctly.  Removed
11283         assertion that `width' be positive.
11284
11285         * command.c: Removed #if's from cmd_table.
11286         (walk_cmdtable_func) [0] New function (debug code).
11287         (init_cmd_parser) [0] Dumps out cmd_table (debug code).
11288         (parse_cmd) Doesn't return failure for unimplemented commands.
11289
11290         * common.h: (SYSMIS) Changed from DBL_MAX to -DBL_MAX.
11291         (SYSCODE) New constant macro.
11292
11293         * descript.q: Checks for positive n_variables before performing
11294         analysis.
11295
11296         * file-handle.q: (get_handle_by_filename) Bug fix: passes &f to
11297         avl_find instead of &fp as arg 2.
11298
11299         * frequencies.g, frequencies.q: Continued updating; now compiles &
11300         works again, but not complete.
11301
11302         * main.c: Changes to user messages.
11303
11304         * misc.c: (reverse) [0] New function.
11305
11306         * settings.h: Comment removed.  #includes "common.h".
11307
11308         * som.c: (som_set_null) New function.
11309         (som_set_value, som_set_string, som_set_text) More detailing
11310         assertions.
11311         (som_set_float) Implemented function.
11312         (dump_columnated_table) Bug fix regarding page breaks.
11313         (draw_cell) Bug fix regarding text that spilled out of a cell.
11314         (draw_intersection, draw_horz_rule, draw_vert_rule) No longer draw
11315         null lines.
11316         (get_cell_size) Support SCON_EMPTY cells.
11317         (get_table_size) When calculating rules' widths and heights, mask
11318         out SLIN_SPACING bit.  Added SOPT_X_HLTL support.
11319         
11320         * som.h: (som_any_cell) New option SOPT_X_HTLT.  Removed
11321         SOPT_X_SHADE.
11322         (struct som_submission_form) New member `header'; all users
11323         changed.
11324
11325         * val-labs.c: (get_label) User messages changed.
11326
11327         * var.h: Changed FREQUENCIES structures.
11328
11329         * vars-atr.c: (is_num_user_missing, is_str_user_missing) Made
11330         inline.
11331         
11332 Fri Jul 19 19:11:13 1996  Ben Pfaff  <blp@gnu.org>
11333
11334         * approx.h: Definition of EPSILON now depends on system's
11335         DBL_EPSILON.  Removed GNU C specific code.
11336         (cmpapx) Renamed approx_compare.
11337
11338         * frequencies.g, frequencies.q: Continued updating; still doesn't
11339         compile.
11340
11341         * groff-font.c: (name_to_index) Fix bug that kept it from
11342         compiling.
11343
11344         * hash.c, hash.h: Completed work.
11345
11346         * var.h: Changes to freq_tab, frequencies_proc.
11347         
11348 Wed Jul 17 21:23:36 1996  Ben Pfaff  <blp@gnu.org>
11349
11350         New hashing code.
11351         * hash.c, hash.h: New files.  Not completed.
11352         * Makefile.am: Added hash.c to source file list.
11353         * font.h: (struct font_desc) New member kern_size_p.
11354         * groff-font.c: Uses hash.h.
11355         (hashpjw) Moved to hash.c.
11356         (next_prime_power) Rewrote, renamed hsh_next_prime, moved to
11357         hash.c.
11358         (static var hash) New member size_p.
11359         * var.h: Includes hash.h.
11360         (struct freq_tab) Changed AVL_TREE to hash_tab.
11361
11362         * vars-prs.c: Comment, formatting fixes.
11363
11364         * frequencies.g, frequencies.q: Continued updating.  Not yet
11365         working.
11366
11367         * formats.c: Bug fix.
11368
11369 Tue Jul 16 22:10:04 1996  Ben Pfaff  <blp@gnu.org>
11370
11371         Increasing parallelism between DESCRIPTIVES and FREQUENCIES.
11372         * descript.g: Comment fixes.
11373         * descript.q: Comment fixes.  Moved some declarations into var.h.
11374         Made dsc_info a static table.  Updated FIXMEs.
11375         (internal_cmd_descriptives) Beautified.
11376         
11377         * frequencies.q: Started updating into working order.
11378         * frequencies.g: New file analogous to descript.g.
11379         * var.h: Comment fixes.  Added structures for FREQUENCIES.
11380         
11381         * som.c: Removed vestiges of crushing and partial table support.
11382
11383 Sun Jul 14 15:45:31 1996  Ben Pfaff  <blp@gnu.org>
11384
11385         * Many more changes to som.c especially, but these will not be
11386         documented as I have resolved to remove them.  This patchlevel is
11387         being released solely so that I can fall back to it if I decide
11388         that removing the changes is not a good idea.
11389
11390 Sat Jul 13 09:58:44 1996  Ben Pfaff  <blp@gnu.org>
11391
11392         * som.c: (global var som) New member `cum_y'.
11393         (build_target) Properly handles titles for partial tables.
11394         (dump_partial_beg, dump_partial_mid, dump_partial_end)
11395         Merged into single new function dump_partial().  Fixed problem
11396         with titles on partial tables.
11397         (dump_table) Calls dump_partial() for all parts of partial tables.
11398         (dump_page) Criteria for drawing title changed.
11399         
11400 Fri Jul 12 22:03:36 1996  Ben Pfaff  <blp@gnu.org>
11401
11402         * command.c: (cmd_table) Added LIST, WEIGHT.
11403
11404         * command.c: (cmd_remark) No longer frees `s' since it's not
11405         dynamically allocated.
11406         
11407         * data-out.c: (convert_f) Now correctly handles the case where
11408         abs(v->f)<1 but v->f rounds to a value of 1.00 given the specified
11409         number of decimals.
11410         (som_destroy_all_tables) Removed argument.  All callers changed.
11411         (som_vline, som_hline) Argument validity checking corrected.
11412         (som_set_value) Implemented half-heartedly.
11413         (replicate_table) Copies tables piece-by-piece when using Checker.
11414
11415         * som.h: New line style SLIN_1THIN, currently equivalent to
11416         SLIN_0.  New enum set SOM_SUB_*.
11417         (struct som_submission_form) Removed `seq_no'.  Added `type'.
11418         
11419         * list.q: Newly working file; uses partial tables.
11420         
11421         * som.c: (som_reduce_table) Renamed som_set_table_height().
11422         (som_crush) Removed argument `group'.
11423         (global var som) Removed `nt', `seq_no'.  Added `type'.
11424         (som_submit_table) Arguments changed.
11425         (output_table) Removed partial table code.
11426         (build_target) New arg; partial table support added.  All callers
11427         changed.
11428         (dump_plain_table) Removed partial table code.
11429         (dump_partial_beg, dump_partial_mid, dump_partial_end) New functions.
11430         (dump_table) Supports partial tables.
11431         (dump_page) New argument to allow not drawing top and/or bottom
11432         headers.  All callers changed.  Supports partial tables.
11433
11434 Sat Jul  6 22:22:25 1996  Ben Pfaff  <blp@gnu.org>
11435
11436         * data-out.c: Changed `#include <approx.h>' to `#include
11437         "approx.h".
11438         (convert_F) Comment fix.  Now won't print `-.000', etc.
11439
11440         * descript.q: Now Z-scores work, although there appears to
11441         be a bug (which might actually be in data-out.c:convert_F()).
11442         (descriptives_trns_proc, descriptives_trns_free) New functions.
11443         (run_z_pass) Implemented.
11444         
11445         * var.h: Comment fixes.
11446         (dsc_z_score, descriptives_trns) New structs.
11447         (descriptives_trns) Added to any_trns as `dsc'.
11448
11449         * error.c, error.h: New error class, IS (Installation Script
11450         error), used in those instances where the error is in the
11451         installation, but there is a script file or installation file that
11452         can be usefully referred to.
11453         
11454         * output.c: Change many IE classes to IS classes.
11455
11456         * cases.c, command.c, common.c, crosstabs.q, expr-evl.c,
11457         frequencies.q, list.q, vars-prs.c, vfm.c: Removed reference to
11458         HAVE_MALLOC_H because Borland C++ alloca() is broken, so why
11459         include the corresponding header?
11460         
11461         * glob.c: (init_glob) Don't malloc term_buffer under Checker.
11462         Don't bail out if termcap can't be read.
11463
11464         * som.c: (som_destroy_table) Removed.
11465         (som_reduce_table, som_destroy_all_tables) New functions.
11466         (som_crush) New function, not implemented.
11467         
11468         * som.h: New table option STAB_CRUSH.  Comment fix.  New struct
11469         som_submission_form.  Function prototypes revised.
11470
11471         Outputting huge tables (1000s of rows) a few rows at a time
11472         is supported, though untested.  May even break everything.
11473         Actually, the code doesn't even compile right now.
11474         * som.c: (struct som) New fields htv, nt, seq_no.
11475         (som_submit_table) Multiple arguments changed to a single
11476         pointer to struct submission_form.  Only increments subtable_num
11477         if seq_no is zero.  Only destroys table if it's not going to
11478         be reused.
11479         (replicate_table) New function.
11480         (output_table) Comment fix.
11481         (examine_table) Changed inline code to code calling
11482         replicate_table().  Calculates htv.  Supports partial tables.
11483         (draw_title) Removed comment.
11484         (build_target) Only allows for title on first part of partial
11485         tables.
11486         (dump_plain_table) Only resets table chunk number on first part
11487         of partial tables; FIXME: doesn't work quite right.  Supports
11488         partial tables.
11489         (dump_page) Titles only on first part of partial tables.
11490
11491 Fri Jul  5 20:16:19 1996  Ben Pfaff  <blp@gnu.org>
11492
11493         * Thanks to an unreliable IDE hard drive, I have spent the last
11494         day reconstructing my Debian GNU/Linux installation and redoing
11495         the previous day's changes--somehow I managed to save every file
11496         except for output.c and output.h.  So the following changes could
11497         really be considered independent of the output.c, output.h changes
11498         from Jul 4.
11499
11500         * output.h, output.c: Moved the outp_configure_vec global var,
11501         outp_names struct, and enum set OUTP_S_* from output.h to output.c.
11502         outp_configure_vec is now static.
11503         
11504 Thu Jul  4 20:20:24 1996  Ben Pfaff  <blp@gnu.org>
11505
11506         * The entire philosophy behind configuration of the output drivers
11507         changed.  Now there is a termcap-type configuration where drivers
11508         to be read are determined beforehand, rather than parsing the
11509         entire output init file and storing it in memory & deciding what
11510         to actually use later.  Faster & more memory-efficient at the same
11511         time, cool.
11512         
11513         * output.c: Comment fix.  Removed outp_init_drivers global var.
11514         Removed all references to synonyms.  New structure outp_defn.  New
11515         global vars outp_macros, outp_configure_vec.
11516         (search_name, delete_name, add_name, check_configure_vec,
11517         expand_name, find_defn_value) New static functions.
11518         (outp_configure_clear, outp_configure_add, outp_configure_macro,
11519         outp_read_devices) New extern functions.
11520         (outp_init) Much functionality moved into outp_read_devices.
11521         (outp_read_devices) Format of output init file changed; name of
11522         file is `devices' rather than `output' to avoid Makefile
11523         conflicts.
11524         (outp_clear) Renamed outp_done.
11525         (outp_list_classes) Bug fix, cleaned up.
11526         (outp_list_drivers) Not implemented anymore.
11527         (outp_configure_driver) Now a static function; simplified; now
11528         interpolates macros; supports new structure.
11529         (outp_enable_driver, match_synonym) Removed; all references
11530         removed.
11531         (find_driver) First argument removed.
11532         
11533         * output.h: Global var outp_init_drivers removed; new structure
11534         outp_names; new enum set OUTP_S_*; new global var
11535         outp_configure_vec; function prototypes for output.c exports
11536         updated.
11537         
11538         * main.c: (main) Calls outp_read_devices() after parsing the
11539         command line.
11540         
11541         * cmdline.c: (parse_command_line) New option -v --verbose;
11542         --version changed to -V.  --device option changed syntax to just
11543         take a single device name.  Accepts key=value declaration of
11544         output init file macros.  Syntax message updated.
11545
11546         * filename.c: (expand_line) New function.
11547         (interp_environ_vars) Renamed interp_vars; no longer uses
11548         fixed-size buffer.
11549         (blp_getenv) Allows $ARCH and $VER pseudo-environment-vars to be
11550         overridden by real environment vars.
11551         (search_path) Uses verbose_msg() instead of #ifdef'd printf().
11552         * filename.h: interp_environ_vars() renamed interp_vars().
11553         
11554         * error.c, error.h: Added extern variable `verbosity', message
11555         class MM.
11556         
11557         * error.c: (vmsg) Support message class MM.
11558         (verbose_msg) New function.
11559
11560         * descript.q: (generate_z_varname) Bug fix in generation of
11561         Z-score varnames.
11562         (dump_z_table) Bug fix in column headers.
11563         
11564         * ascii.c: (ascii_init_driver) Changed minimum number of lines per
11565         page from 29 to 15.  Don't set a default for ops[OPS_INIT,
11566         OPS_DONE].  Writes the uninit string when the driver is closed.
11567         (ascii_open_page) Write the init string before the first page.
11568         (output_shorts) Form of main loop changed from `while' to `for'.
11569         Bug fix with overstrikes: the character is printed *after* the
11570         backspace.  Eliminated a lot of `& 0xff' modifiers.
11571         (advance_to_left_margin) New function.
11572         (return_carriage, output_lines) Handle left margin.
11573
11574 Thu Jul  4 00:35:59 1996  Ben Pfaff  <blp@gnu.org>
11575
11576         * ascii.c: New option `carriage-return-style'.
11577
11578         * ascii.c: (count_fancy_chars) New function.
11579         (delineate, text_metrics) Use new function; bug fixes regarding
11580         rich text strings.
11581         (text_draw) Bug fix with rich text.
11582         (output_string, output_shorts) Reordered.
11583         (output_shorts) Now handles boxchars and some overstrike font
11584         changes.
11585         (output_char, return_carriage) New functions.
11586         (output_lines) Now handles overstriking and font changes properly;
11587         some code moved to output_shorts.
11588
11589 Tue Jul  2 22:13:23 1996  Ben Pfaff  <blp@gnu.org>
11590
11591         [GLOBAL_DEBUGGING]
11592         * ascii.c: New member `debug' in ascii_driver_ext.
11593         (ascii_init_driver, delineate) Uses new member.
11594
11595         Now you can set a vertical height on writing text.
11596         * ascii.c: (delineate) Keeps track of vertical position.
11597         (text_draw) No longer considers fully justified text an internal
11598         error.
11599         
11600         * output.h: New flag OUTP_T_VERT; other OUTP_T_ values changed.
11601
11602         Tables' titles are drawn; they can have variable height.
11603         * som.c: `som' struct has new member, title_height.
11604         (draw_title) New argument.  Moved within file.  All caller
11605         changed.
11606         (build_target) New argument, amount of space needed for first row.
11607         Calculates height of title, takes that into account.  All callers
11608         changed.
11609         (dump_plain_table, dump_columnated_table) Took calculation of y1,
11610         y2 out of loop.
11611         (dump_columnated_table) [GLOBAL_DEBUGGING] Debugging code
11612         improved.
11613         (dump_columnated_table) Organized for readability.
11614         (dump_page) Makes use of som.title_height.
11615
11616         * som.c: Many comment bug fixes.
11617
11618         * descript.q: (try_name, generate_z_name) Bug fix regarding
11619         generation of Z-score variable names.
11620         * var.h: Removed num from descriptives_proc; all referents removed.
11621
11622 Mon Jul  1 22:13:39 1996  Ben Pfaff  <blp@gnu.org>
11623
11624         * ascii.c: (ascii_line_horz, ascii_line_vert,
11625         ascii_line_intersection) Added debugging code.
11626
11627         Added a descriptive line above each table to describe it.
11628         * command.c: (parse_cmd) Calls som_new_series.
11629         
11630         * som.c: New static vars table_num, subtable_num.  New `som'
11631         member `title'.
11632         (dump_page) New arguments.
11633         (som_submit_table) Handle new variables.
11634         
11635         * som.c, som.h: (som_submit_table) New arguments.  All callers
11636         changed.
11637         (som_new_series) New function.
11638         (build_target) Makes room for extra line.
11639         (draw_title) New function.
11640         (dump_page) Calls draw_title.  Bug fix: doesn't always set
11641         som.ext->cp to 0.
11642         
11643         Columnation of tables support.
11644         * som.h: Deleted fr, lr, ri from som_table.  Reorganized.
11645         
11646         * som.c: Deleted references to fr, lr, ri.
11647         (som_columnate) Bux fix: sets group member of table.
11648         (som_add_options) Function removed.
11649         (dump_table) Split into three functions; extensively reworked.
11650         
11651         * descript.q: (dump_z_table) Better output table formatting; added
11652         title support to correspond to som.h changes.
11653         (display) Title support.
11654
11655         * output.h: Added OUTP_T_NONE.
11656         
11657 Mon Jul  1 13:00:00 1996  Ben Pfaff  <blp@gnu.org>
11658
11659         * descript.q: Improved handling of Z scores; still not perfect.
11660         
11661         * output.h, ascii.c: Added hook for getting em width of current
11662         font.
11663         
11664         * som.c: Uses new em-width hook.  Added debugging code to
11665         several functions.
11666         (som_columnate) New argument.
11667         (som_add_options) Removed.
11668
11669 Jun 29 17:40:47 1996  Ben Pfaff  <blp@gnu.org>
11670
11671         * som.h, som.c, output.c, output.h, ascii.c: Updated to work with
11672         rules as a property of the table instead of as a property of the
11673         cells.
11674         
11675         * ascii.c: Added `header' to table of options.
11676         
11677         * descript.q: Added even shorter statistic names; modified to work
11678         with new som interface.
11679         
11680         * misc.c (blp_getdelim): Bug fix.
11681         
11682         * version.c: includes 'conf.h'.
11683         
11684 ----------------------------------------------------------------------
11685 Local Variables:
11686 mode: change-log
11687 version-control: never
11688 End: