X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2FChangeLog;h=7c74373f0f5a2fccee5f9f69140b47d2be2803bb;hb=fdcc4b6875ccdbf7bd01bc401e87afbeb71c2bfd;hp=db33299a4cd473398effd2f2ac0ac9d5415ac79b;hpb=8381768f3394a907c621cb9acbb77b83f5cd4875;p=pspp diff --git a/src/language/lexer/ChangeLog b/src/language/lexer/ChangeLog index db33299a4c..7c74373f0f 100644 --- a/src/language/lexer/ChangeLog +++ b/src/language/lexer/ChangeLog @@ -1,3 +1,76 @@ +2007-08-16 Ben Pfaff + + Implement journaling. Bug #17240. + + * lexer.c (lex_get_line_raw): Pass the line read to journal_write. + +2007-06-03 Ben Pfaff + + Implement missing functions for subcommand integer lists. + + * subcommand-list.c (subc_list_int_create): New function. + (subc_list_int_push): New function. + (subc_list_int_count): New function. + (subc_list_int_at): New function. + (subc_list_int_destroy): New function. + +2007-05-06 Ben Pfaff + + Abstract the documents within a dictionary a little better. + Thanks to John Darrington for suggestion, initial version, and + review. Patch #5917. + + * lexer.c (lex_entire_line): Add const to parameter. + (lex_entire_line_ds): Ditto. + (lex_rest_of_line): Drop end_dot parameter. Update all callers to + use lex_end_dot instead. + (lex_end_dot): New function. + +2007-05-03 John Darrington + + * lexer.c lexer.h: Added lex_is_string function. + +2007-04-15 Ben Pfaff + + * q2c.c: Fully support lists of integer values. Add support for + lists of string values. Add some more needed declarations to + headers. + +Fri Feb 16 11:14:42 2007 Ben Pfaff + + Better support cross-compiling by using CC_FOR_BUILD and + EXEEXT_FOR_BUILD for q2c. + + * automake.mk: Use EXEEXT_FOR_BUILD and CC_FOR_BUILD to build and + clean q2c. + + * q2c.c: Avoid external dependencies, besides the standard C + library. + +Sun Feb 11 20:31:51 2007 Ben Pfaff + + * q2c.c: Make q2c link under mingw32, by eliminating the + dependency on localtime. Gnulib replaces localtime by a fixed + version, but we don't link q2c against gnulib. q2c only uses + localtime to put the time of processing into the output file, + which I've never in practice found to be useful, so the patch just + drops this feature. + +Wed Dec 13 21:00:24 2006 Ben Pfaff + + * variable-parser.c (parse_variables): If not successful, set + output pointer to NULL and output count to 0. + +Sat Dec 9 18:46:11 2006 Ben Pfaff + + * variable-parser.h: New PV_SAME_WIDTH variable parsing option. + + * variable-parser.c (add_variable): Implement new PV_SAME_WIDTH + option. + (parse_var_set_vars) Ditto. + (array_var_set_lookup_var_idx) Use new var_create, var_destroy + functions. + Sat Dec 2 21:19:50 2006 Ben Pfaff General clean-up.