X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2FChangeLog;h=0fceb2827dcd4aac705d818291288b71959b42e4;hb=e582516e80e5a04f10a651515a35b616911cf4d6;hp=ffaf3fd3147ad99f246b2e5a949c9cb2f82523b3;hpb=180d764e86e0f3b2fd0e2bb613d790adcd5aceb0;p=pspp-builds.git diff --git a/src/ChangeLog b/src/ChangeLog index ffaf3fd3..0fceb282 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,81 @@ +Sat Mar 12 12:20:57 2005 Ben Pfaff + + * file-handle.q: (struct file_handle) Change open_mode from + character pointer to 3-char array, for safety. Updated all + references. + +Sat Mar 12 12:15:49 2005 Ben Pfaff + + Thanks to Ben Kujala for reporting + these bugs. + + * pfm-read.c: (read_header) Improve error message for many cases + in which the input is not actually a portable file. + + * file-handle.q: (fh_open) When we give an error message, actually + return NULL. + +Fri Mar 11 11:50:30 2005 Ben Pfaff + + * format.c: (check_common_specifier) New function for checks + common to check_input_specifier() and check_output_specifier(). + (check_input_specifier) Use check_common_specifier(). + (check_output_specifier) Use check_common_specifier(). + (check_string_specifier) Removed. + (check_specifier_type) New function. + (check_specifier_width) New function. + (get_format_var_width) Fix bug. + + * formats.c: (internal_cmd_formats) Only accept numeric variables. + + * lexer.c: (check_id) Rename lex_id_to_token(), make public, + update all references. Make case-insensitive. + + * pfm-read.c: Essentially rewrite the whole file. Now much + cleaner. + + * print.c: (check_string_width) New function. + (fixed_parse_compatible) Use check_string_width(), + check_specifier_type(). + (dump_fmt_list) Ditto. + + * str.c: (st_trim_copy) New function. + (st_uppercase) New function. + + * vars-atr.c: (var_is_valid_name) New function. + + * expressions/parse.c: (type_coercion_core) Use + check_specifier_type(). + +Fri Mar 11 11:31:24 2005 Ben Pfaff + + * expressions/evaluate.c: (cmd_debug_evaluate) Fix memory leaks. + + * expressions/parse.c: (no_match) Ditto. + +Wed Mar 9 09:54:27 2005 Ben Pfaff + + * Makefile.am: (pspp_LDADD) Add libgsl-extras.a. + + * expressions/helpers.c: (struct func_params) Removed. + (generalized_idf) Removed. + (cdf_beta) Removed. + (idf_beta) Removed. + (idf_fdist) Use gslextras_cdf_beta_Pinv() instead of idf_beta(). + + * expressions/operations.def: Implement IDF.BETA, CDF.BINOM, + CDF.GEOM, CDF.HYPER, CDF.NEGBIN, CDF.POISSON using gsl-extras. + Implement SIG.F, which I had overlooked previously. + +Tue Mar 8 12:47:53 WST 2005 John Darrington + + * command.c command.def glob.[ch] cmdline.c: Made DEBUG cmds + available only in testing mode. + +Sun Mar 6 23:25:40 2005 Ben Pfaff + + * data-in.c: Use `bool' throughout, where relevant. + Sun Mar 6 19:52:22 2005 Ben Pfaff DATA LIST with free-field formats should not have implied decimal @@ -55,22 +133,23 @@ Sun Mar 6 17:07:20 2005 Ben Pfaff Sun Mar 6 22:09:20 2005 Ben Pfaff - * operations.def: (NUMBER) Use DI_IMPLIED_DECIMALS. + * expressions/operations.def: (NUMBER) Use DI_IMPLIED_DECIMALS. Sun Mar 6 19:33:24 2005 Ben Pfaff - * operations.def: (VEC_ELEM_NUM) Treat user-missing values as - system-missing. + * expressions/operations.def: (VEC_ELEM_NUM) Treat user-missing + values as system-missing. - * parse.c: (parse_vector_element) Fix order of arguments in call - to expr_allocate_binary(). + * expressions/parse.c: (parse_vector_element) Fix order of + arguments in call to expr_allocate_binary(). Sun Mar 6 17:51:05 2005 Ben Pfaff - * optimize.c: (optimize_tree) Fix optimization bug for x**2. + * expressions/optimize.c: (optimize_tree) Fix optimization bug for + x**2. - * parse.c: (type_coercion_core) Set *node to NULL on failure, as - indicated by function comment. + * expressions/parse.c: (type_coercion_core) Set *node to NULL on + failure, as indicated by function comment. (parse_binary_operators) Always return NULL on type_coercion() failure. Should have been doing this anyway, but bug in type_coercion_core() filtered through. @@ -79,29 +158,31 @@ Sun Mar 6 17:51:05 2005 Ben Pfaff Sun Mar 6 10:47:13 2005 Ben Pfaff - * operations.def: Add VALUE function. + * expressions/operations.def: Add VALUE function. - * parse.c: (parse_function) Need an unary composite node for - variables in A TO B, not a variable node. Use + * expressions/parse.c: (parse_function) Need an unary composite + node for variables in A TO B, not a variable node. Use allocate_unary_variable(). (parse_primary) Use allocate_unary_variable(). (allocate_unary_variable) New function. Thu Mar 3 23:53:32 2005 Ben Pfaff - * PSPP_expressions.pm: Renamed it back to generate.pl but fixed - the real problem that was preventing the build from a separate - directory. I liked it my way better ;-) + * expressions/PSPP_expressions.pm: Renamed it back to generate.pl + but fixed the real problem that was preventing the build from a + separate directory. I liked it my way better ;-) Thu Mar 3 23:17:51 2005 Ben Pfaff - * parse.c: (expr_parse) Fix parameter type. Thanks to John - Darrington for reporting this bug. + * expressions/parse.c: (expr_parse) Fix parameter type. Thanks to + John Darrington for reporting this + bug. Thu Mar 3 22:10:25 WST 2005 John Darrington - * Makefile.am evaluate.h.pl evaluate.inc.pl operations.h.pl - optimize.inc.pl parse.inc.p: + * expressions/Makefile.am expressions/evaluate.h.pl + expressions/evaluate.inc.pl expressions/operations.h.pl + expressions/optimize.inc.pl expressions/parse.inc.p: Renamed generate.pl to PSPP_expressions.pm and adjusted *.pl to suit.