X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2FChangeLog;h=812491ba0cb784ed07c7355b226978c780ee8a73;hb=e44ce942f35733d51c59b9ddc901f65600831209;hp=48aecc940d4a709f82a6db3d12f8de71672b5968;hpb=30728b09540b323fef43b23dd5f1e4d1e8298c92;p=pspp-builds.git diff --git a/src/language/ChangeLog b/src/language/ChangeLog index 48aecc94..812491ba 100644 --- a/src/language/ChangeLog +++ b/src/language/ChangeLog @@ -1,3 +1,80 @@ +Wed Jun 28 11:38:23 2006 Ben Pfaff + + Don't offer both the full and abbreviated names for a single + command in command name completion. + + * command.c: (enum flags) Add F_ABBREV flag. + (cmd_complete) Ignore command with F_ABBREV flag set. + + * command.def: Add F_ABBREV to N, Q, SORT commands. + +Tue Jun 27 22:36:38 2006 Ben Pfaff + + Fix regression in command name completion reported by John + Darrington. Now completion is again state-dependent and occurs + only on the first line of a command. + + * command.c (do_parse_command): Move reading the first token of + the command here, from execute_command and cmd_input_program. + Call set_completion_state and getl_set_prompt_style here. + (do_parse_command) Use in_correct_state instead of + verify_valid_command. + (verify_valid_command) Break into two new functions, + in_correct_state and report_state_mismatch. + (set_completion_state) New function. + (cmd_complete) New function. + [HAVE_READLINE] (pspp_attempted_completion_function) Removed. + [HAVE_READLINE] (command_generator) Removed. + + * line-buffer.c: (struct getl_source) Change `interactive' member + signature to take enum getl_prompt_style instead of const char *. + (create_interactive_source) Ditto, for parameter type. + (getl_append_interactive) Ditto. + (read_line_from_source) Pass get_prompt_style() to interactive + function instead of get_prompt(). + (get_prompt) Removed. + (get_prompt_style) New function. + +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 + amount of work to implement it correctly, so make it + unimplemented. + + * command.c: (cmd_clear_transformations) Removed. + + * command.def: Mark CLEAR TRANSFORMATIONS as unimplemented. + Wed Apr 26 13:06:42 2006 Ben Pfaff Work on readline completion.