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