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