aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-04-24 23:08:23 +0000
committerEric Andersen <andersen@codepoet.org>2002-04-24 23:08:23 +0000
commitae1036185e5707fd309825a6fed764089e9f5d43 (patch)
tree3bf2ab2526ad0a31041fef0523332976461a4b29
parent5f6873621d58e879d06b9a1ef7ea28b6d84c4b43 (diff)
downloadbusybox-w32-ae1036185e5707fd309825a6fed764089e9f5d43.tar.gz
busybox-w32-ae1036185e5707fd309825a6fed764089e9f5d43.tar.bz2
busybox-w32-ae1036185e5707fd309825a6fed764089e9f5d43.zip
Apply last_patch37 from vodz
-rw-r--r--shell/cmdedit.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index b0309fef1..4c502df12 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -207,7 +207,8 @@ static void cmdedit_reset_term(void)
207 handlers_sets &= ~SET_WCHG_HANDLERS; 207 handlers_sets &= ~SET_WCHG_HANDLERS;
208 } 208 }
209 fflush(stdout); 209 fflush(stdout);
210#ifdef CONFIG_FEATURE_CLEAN_UP 210#if 0
211//#ifdef CONFIG_FEATURE_CLEAN_UP
211 if (his_front) { 212 if (his_front) {
212 struct history *n; 213 struct history *n;
213 214
@@ -1267,7 +1268,7 @@ prepare_to_die:
1267 /* Control-k -- clear to end of line */ 1268 /* Control-k -- clear to end of line */
1268 *(command + cursor) = 0; 1269 *(command + cursor) = 0;
1269 len = cursor; 1270 len = cursor;
1270 redraw(cmdedit_y, 0); 1271 printf("\033[J");
1271 break; 1272 break;
1272 case 12: 1273 case 12:
1273 { 1274 {