X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2FChangeLog;h=88955ac42ca3797e2f3e8197f9921cc02c59f754;hb=7102dc8607b7e6e25bdb9806f508dce71fe76ce4;hp=d87a2b6ad908a0fa30066a5595d726de34b4292e;hpb=d8dd3a226c9b963314bbe6a2ed2cf74714072c77;p=pspp diff --git a/src/libpspp/ChangeLog b/src/libpspp/ChangeLog index d87a2b6ad9..88955ac42c 100644 --- a/src/libpspp/ChangeLog +++ b/src/libpspp/ChangeLog @@ -1,3 +1,33 @@ +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 + null. + +Sun Apr 16 18:52:41 2006 Ben Pfaff + + GNU standards require "file name" instead of "filename" in + documentation. It's nice for our code to follow the convention + too. + + * message.h: (struct file_locator) Rename filename member to + file_name. Updated all references. + Sun Apr 16 16:05:43 2006 Ben Pfaff Continue reforming error message support. In this phase, we get