X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fdata%2FChangeLog;h=38510757495a9eae8b5276f175aa134b8cc0ad4b;hb=08703a888d1cc31459e6028a61e3940f6d4b2c5f;hp=c453f1788ee1724cc12cab94d437105432ef56c6;hpb=d9bca7edf0d4a024ca930d1e34e08a3b4d54a6c7;p=pspp diff --git a/src/data/ChangeLog b/src/data/ChangeLog index c453f1788e..3851075749 100644 --- a/src/data/ChangeLog +++ b/src/data/ChangeLog @@ -1,3 +1,58 @@ +Sun Apr 23 22:04:45 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. + + * casefile.c: (io_error) Use err_msg() instead of err_vmsg(). + Format message ourselves. + + * data-in.c: (vdls_error) Ditto. + + * por-file-reader.c: (error) Ditto. + + * sys-file-reader.c: (corrupt_msg) Ditto. + +Sun Apr 16 18:49:51 2006 Ben Pfaff + + GNU standards require "file name" instead of "filename" in + documentation. It's nice for our code to follow the convention + too. + + * casefile.c: (struct casefile) Rename `filename' member to + `file_name'. Updated all references. + + * file-name.c: [!unix] (struct file_identity) Rename + normalized_filename member to normalized_file_name. Updated all + references. + +Sun Apr 16 18:35:33 2006 Ben Pfaff + + We don't really support anything but Unix-like environments well, + so we might as well de-obfuscate by writing directory and path + separators explicitly. + + * file-name.h: (macro DIR_SEPARATOR) Removed. Changed all usages + to just '/'. + (macro PATH_SEPARATOR) Removed. Changed all usages to just ':'. + (macro DIR_SEPARATOR_STRING) Removed. Changed all usages to just + "/". + (macro PATH_SEPARATOR_STRING) Removed. Changed all usages to just + ":" + +Sun Apr 16 18:28:35 2006 Ben Pfaff + + GNU standards require "file name" instead of "filename" in + documentation. It's nice for our code to follow the convention + too. + + * filename.c: Rename to file-name.c. + + * filename.h: Rename to file-name.h. Update all inclusions. + Update header guards. + + * automake.mk: Update file names. + Sun Apr 16 16:42:47 2006 Ben Pfaff * filename.c: (fn_dirname) Renamed fn_dir_name(), all references