X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2FChangeLog;h=34f95e3913c6403eff20de3a5e49b1a10e674f95;hb=b411f33060c7401500694c04fd71a8d9d564e7f0;hp=2c80db58c339be0744a6337cd13f2a8150890900;hpb=a621b4a73d06d73a753c9f7207c03393dfb1b81e;p=pspp-builds.git diff --git a/src/libpspp/ChangeLog b/src/libpspp/ChangeLog index 2c80db58..34f95e39 100644 --- a/src/libpspp/ChangeLog +++ b/src/libpspp/ChangeLog @@ -1,3 +1,125 @@ +Tue May 16 06:50:35 2006 Ben Pfaff + + * automake.mk (src/libpspp/version.c): Removed groff_font_path, + which is no longer used. + + * message.c (request_bug_report_and_abort): Don't print + groff_font_path, which no longer exists. + + * version.h (locale_dir): Removed groff_font_path. + +Sun May 14 22:06:53 2006 Ben Pfaff + + * str.c (spprintf): Moved definition of spprintf() here, from + str.h. + + * str.h: (nsprintf) Removed. Changed all users to use sprintf() + instead. + (nvsprintf) Removed. Changed all users to use vsprintf() instead. + +Sun May 14 20:52:20 2006 Ben Pfaff + + * str.c (ds_init): Remove `capacity' argument and just initialize + the string to a capacity of zero. Updated all callers. + +Tue May 9 09:56:57 2006 Ben Pfaff + + * va_copy.h: Removed. Now use va_copy() provided by gnulib + instead. + + * automake.mk: (src_libpspp_libpspp_a_SOURCES) Removed va_copy.h. + +Sun May 7 18:17:32 2006 Ben Pfaff + + * pool.c (pool_vasprintf): New function. + (pool_asprintf) New function. + +Sun May 7 17:09:54 2006 Ben Pfaff + + * compiler.h: (macro WARN_UNUSED_RESULT) New macro. + +Sun May 7 14:32:25 2006 Ben Pfaff + + * va_copy.h: New header. + + * str.c: Use header instead of inlining va_copy() macro + implementation. + +Sun May 7 10:06:29 WST 2006 John Darrington + + * array.c array.h: Constness of sort. + +Thu May 4 18:01:37 WST 2006 John Darrington + + * message.c message.h: Added functions to create and copy a msg. + +Tue May 2 15:41:50 2006 Ben Pfaff + + * str.c (ds_append_uninit): No need to add 1 to arg passed to + ds_extend(), because the argument does not include space for a + null terminator. Also, fix warning. + +Tue Apr 25 11:07:19 2006 Ben Pfaff + + Finish reforming error message support. In this phase, move + message.c into libpspp. + + * message.c: Move here from src/. Also remove a few unneeded + headers. + + * automake.mk (src_libpspp_libpspp_a_SOURCES): Add message.c. + +Tue Apr 25 10:54:44 2006 Ben Pfaff + + Continue reforming error message support. In this phase, drop + actual message printing from core code, substituting a callback, + and add the callback to each UI. Also, move verbose_msg() into + its own module. + + * automake.mk (src_libpspp_libpspp_a_SOURCES): Added + verbose-msg.c, verbose-msg.h. + + * verbose-msg.c: New file. + + * verbose-msg.h: New file. + +Mon Apr 24 17:26:47 2006 Ben Pfaff + + Continue reforming error message support. In this phase, rename + all the message functions and types to start with "msg", except + for the ones that will be moving to other modules anyway. + + All references to the identifiers below were updated likewise. + + * message.h: (enum file_locator) Renamed `enum msg_locator'. + (struct error) Renamed `struct msg'. + (err_assert_fail) Renamed msg_assert_fail(). + +Sun Apr 23 22:07:06 2006 Ben Pfaff + + Continue reforming error message support. In this phase, get rid + of message "titles" and put the message text in `struct error'. + Now `struct error' encapsulates a message more properly. + + * message.h: (struct error) Remove `title' member. Add `text' + member. + +Sun Apr 16 20:43:35 2006 Ben Pfaff + + Continue reforming error message support. In this phase, we + divide the classification of messages along "category" and + "severity" axes. + + * message.h: (enum msg_class) Named this set of enumerations. + (enum msg_category) New enum: MSG_GENERAL, MSG_SYNTAX, MSG_DATA. + (enum msg_severity) New enum: MSG_ERROR, MSG_WARNING, MSG_NOTE. + (msg_class_to_category) New inline function. + (msg_class_to_severity) New inline function. + (msg_class_from_category_and_severity) New inline function. + (struct error) Removed `class' member, added `category', + `severity'. Updated all users of this struct to use the new + members. + Sun Apr 16 20:33:19 2006 Ben Pfaff * str.c (ds_vprintf): Don't try to write into the string if it is