X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2FChangeLog;h=a3d3b20b79c9a448b8d8edccdbd97edb9aa675da;hb=0a490aaca0b5a6350d3428101b8c496f396ac26b;hp=a2bae86cb03b935265156d30850cbc187ebc38dd;hpb=fc149fc4847438fb491048309a6d5d50e665beef;p=pspp-builds.git diff --git a/src/language/ChangeLog b/src/language/ChangeLog index a2bae86c..a3d3b20b 100644 --- a/src/language/ChangeLog +++ b/src/language/ChangeLog @@ -1,3 +1,33 @@ +Sat May 6 13:25:25 2006 Ben Pfaff + + Continue reforming procedure execution. In this phase, remove + PROCESS IF, which was deprecated anyway and can be easily + simulated with TEMPORARY followed by SELECT IF. + + * command.def: Removed PROCESS IF. + +Mon May 1 18:17:52 2006 Ben Pfaff + + Further clean up the CMD_* command result codes. + + * command.c (cmd_result_is_valid): New function. + (cmd_result_is_success) Assert that argument is valid. Simplified + check to one for a positive result. + (cmd_result_is_failure) Assert that argument is valid. Simplified + check to one for a negative result. + (do_parse_command) Check that command's returned result is valid. + + * command.h: (enum cmd_result) Renamed CMD_QUIT to CMD_FINISH and + updated all users. Removed CMD_END_SUBLOOP in favor of new + CMD_PRIVATE_FIRST...CMD_PRIVATE_LAST range. Changed failure codes + to have negative values. + +Mon May 1 15:56:56 2006 Ben Pfaff + + Remove vestiges of FILE TYPE support. + + * command.def: Mark FILE TYPE, RECORD TYPE unimplemented. + Wed Apr 26 21:13:46 2006 Ben Pfaff CLEAR TRANSFORMATIONS is unsafe as implemented. It's a fair