X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2FChangeLog;h=3deaa432159c8689ebdda089f73ecfbead93f339;hb=50f8d6d2dbf599b410c9bc346a47cb577fba8fe1;hp=6e09dfb201a951a3afed56801062c818d4dbfae0;hpb=2d4dd90964061defa92972156ae2a12323708519;p=pspp-builds.git diff --git a/src/libpspp/ChangeLog b/src/libpspp/ChangeLog index 6e09dfb2..3deaa432 100644 --- a/src/libpspp/ChangeLog +++ b/src/libpspp/ChangeLog @@ -1,3 +1,71 @@ +Wed Jan 24 21:13:32 2007 Ben Pfaff + + * abt.c: New file. + + * abt.h: New file. + + * automake.mk: Add abt.c, abt.h to sources. + +Sun Jan 14 21:44:18 2007 Ben Pfaff + + * automake.mk: Add deque.h to sources. + + * deque.h: New file. + +Wed Jan 10 06:49:38 2007 Ben Pfaff + + * automake.mk: Add heap.c, heap.h to sources. + + * heap.c: New file. + + * heap.h: New file. + +Sun Dec 10 13:54:03 2006 Ben Pfaff + + * str.c (ss_tokenize): Skip the first delimiter character + following the token. Otherwise, changing delimiters from token to + token can't have a sensible effect, because we'll get the previous + delimiter as part of the next token. + (ss_match_string): New function. + +Sat Dec 9 18:48:55 2006 Ben Pfaff + + * misc.h (macro range): Removed, as it was unused. + +Sat Dec 9 07:19:01 WST 2006 John Darrington + + * array.c: Removed gratuitous #include + +Thu Dec 7 20:33:23 WST 2006 John Darrington + + * getl.c getl.h : Changed signature of create function to take a + string indicating the initial include path. + +Sun Dec 3 11:36:10 2006 Ben Pfaff + + * str.h (SS_LITERAL_INITIALIZER): Cast the string literal to "char + *". This normally does nothing but when GCC's -Wwrite-strings is + used it fixes a warning that otherwise can't be avoided. + +Sun Dec 3 11:35:35 2006 Ben Pfaff + + * str.c (ss_alloc_substring_pool): New function. + (ss_alloc_uninit_pool) New function. + +Sun Dec 3 11:28:06 2006 Ben Pfaff + + * getl.h: (enum getl_syntax) New enumeration to distinguish + between "batch" and "interactive" in a clearer way than a bool. + (struct getl_interface) Add an arg to "read" to return the + intended syntax mode. Add an arg to "filter" to specify the + syntax mode of the line to filter. + + * getl.c (do_read_line): Instead of returning the syntax type of + the line read based on whether the source itself is interactive, + return it based on whether the line itself should be treated as + having batch or interactive syntax. Also, adapt interface to the + new interfaces of lex_init() and getl_interface. + Wed Nov 29 19:35:44 WST 2006 John Darrington * getl.c getl.h: New files. Created interface from base of