From 1401f9bd627034ae7298cc1f6eeb579e1323cec2 Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Fri, 12 Nov 1999 18:24:48 +0000 Subject: [PATCH] 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. SVN revision: 1273 --- ChangeLog | 9 +++++++++ epplets/E-Exec.c | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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, "");