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