summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-22 12:59:26 +0000
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-09-22 12:59:26 +0000
commite4baaa2d2795c14775b26213d143e9f9f65e4d54 (patch)
treef698cdfc8c2ad2918174461fa533bab555172f78 /shell
parent007a01164705f3b086f5f4633e63a32d6c6e16c6 (diff)
downloadbusybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.tar.gz
busybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.tar.bz2
busybox-w32-e4baaa2d2795c14775b26213d143e9f9f65e4d54.zip
more remove lost exported
Diffstat (limited to 'shell')
-rw-r--r--shell/cmdedit.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c
index 6e3ae07f9..c4cb9d9c4 100644
--- a/shell/cmdedit.c
+++ b/shell/cmdedit.c
@@ -1263,7 +1263,7 @@ void setvimode ( int viflag )
1263 vi_mode = viflag; 1263 vi_mode = viflag;
1264} 1264}
1265 1265
1266void 1266static void
1267vi_Word_motion(char *command, int eat) 1267vi_Word_motion(char *command, int eat)
1268{ 1268{
1269 while (cursor < len && !isspace(command[cursor])) 1269 while (cursor < len && !isspace(command[cursor]))
@@ -1272,7 +1272,7 @@ vi_Word_motion(char *command, int eat)
1272 input_forward(); 1272 input_forward();
1273} 1273}
1274 1274
1275void 1275static void
1276vi_word_motion(char *command, int eat) 1276vi_word_motion(char *command, int eat)
1277{ 1277{
1278 if (isalnum(command[cursor]) || command[cursor] == '_') { 1278 if (isalnum(command[cursor]) || command[cursor] == '_') {
@@ -1294,7 +1294,7 @@ vi_word_motion(char *command, int eat)
1294 input_forward(); 1294 input_forward();
1295} 1295}
1296 1296
1297void 1297static void
1298vi_End_motion(char *command) 1298vi_End_motion(char *command)
1299{ 1299{
1300 input_forward(); 1300 input_forward();
@@ -1304,7 +1304,7 @@ vi_End_motion(char *command)
1304 input_forward(); 1304 input_forward();
1305} 1305}
1306 1306
1307void 1307static void
1308vi_end_motion(char *command) 1308vi_end_motion(char *command)
1309{ 1309{
1310 if (cursor >= len-1) 1310 if (cursor >= len-1)
@@ -1326,7 +1326,7 @@ vi_end_motion(char *command)
1326 } 1326 }
1327} 1327}
1328 1328
1329void 1329static void
1330vi_Back_motion(char *command) 1330vi_Back_motion(char *command)
1331{ 1331{
1332 while (cursor > 0 && isspace(command[cursor-1])) 1332 while (cursor > 0 && isspace(command[cursor-1]))
@@ -1335,7 +1335,7 @@ vi_Back_motion(char *command)
1335 input_backward(1); 1335 input_backward(1);
1336} 1336}
1337 1337
1338void 1338static void
1339vi_back_motion(char *command) 1339vi_back_motion(char *command)
1340{ 1340{
1341 if (cursor <= 0) 1341 if (cursor <= 0)