Estimate parameters. Moved some code to re-usable functions.
[pspp-builds.git] / src / language / lexer / ChangeLog
index f29c58599dcd029af6278d12aed38ffe73151a89..aea10c5f11aedbe95d2b1f8cd9c33467f5c70a6f 100644 (file)
@@ -1,3 +1,57 @@
+2007-12-04  Ben Pfaff  <blp@gnu.org>
+
+       * lexer.c (lex_match_id_n): New function.
+       (lex_match_id): Reimplement in terms of lex_match_id_n.
+
+2007-08-16  Ben Pfaff  <blp@gnu.org>
+
+       Implement journaling.  Bug #17240.
+       
+       * lexer.c (lex_get_line_raw): Pass the line read to journal_write.
+
+2007-06-03  Ben Pfaff  <blp@gnu.org>
+
+       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  <blp@gnu.org>
+
+       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 <john@darrington.wattle.id.au>
+       
+       * lexer.c lexer.h: Added lex_is_string function.
+       
+2007-04-15  Ben Pfaff  <blp@gnu.org>
+
+       * 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  <blp@gnu.org>
+
+       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  <blp@gnu.org>
 
        * q2c.c: Make q2c link under mingw32, by eliminating the
@@ -56,7 +110,7 @@ Sun Nov 19 09:20:42 2006  Ben Pfaff  <blp@gnu.org>
        corresponding argument.  Updated all callers.
        (parse_number) Ditto.
 
-Sun Nov 12 06:34:06 WST 2006 John Darrrington <john@darrington.wattle.id.au>
+Sun Nov 12 06:34:06 WST 2006 John Darrington <john@darrington.wattle.id.au>
 
        * format-parser.c format-parser.h lexer.c lexer.h q2c.c range-parser.c
          range-parser.h subcommand-list.c variable-parser.c