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