diff --git a/ChangeLog b/ChangeLog index dba8278..dbe3874 100644 --- a/ChangeLog +++ b/ChangeLog @@ -472,3 +472,12 @@ Changed epplets/E-Exec.c Added Epplet_unremember to cb_close. +------------------------------------------------------------------------------- + +Fri Nov 12 13:41:29 EST 1999 +(StriderZ) + +Added a feature to allow you to scroll off the end of the command history and +back into a blank textbox. Was supposed to already be in, but for some reason +it didn't work. + diff --git a/epplets/E-Exec.c b/epplets/E-Exec.c index ebac8dc..ebe97ef 100644 --- a/epplets/E-Exec.c +++ b/epplets/E-Exec.c @@ -64,7 +64,7 @@ hist_next(void *data) { if (current_command < num_commands-1) Epplet_change_textbox(textbox, command_history[++current_command]); - else if (current_command == num_commands-1) + else if(current_command == num_commands-1) { current_command++; Epplet_change_textbox(textbox, "");