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