X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2FChangeLog;h=fdc293758c0b2346c2104615e53caca7618a9263;hb=f514231dd2fc0c2adc1ebab5c46a4b55d2bd9c2b;hp=cfa344d2f84bfd0589479992c746368d77b997b9;hpb=338fb2a2e84df6427a2fdee6769421f57d5666d8;p=pspp-builds.git diff --git a/src/language/lexer/ChangeLog b/src/language/lexer/ChangeLog index cfa344d2..fdc29375 100644 --- a/src/language/lexer/ChangeLog +++ b/src/language/lexer/ChangeLog @@ -1,3 +1,60 @@ +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.