diff options
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 |
commit | e4baaa2d2795c14775b26213d143e9f9f65e4d54 (patch) | |
tree | f698cdfc8c2ad2918174461fa533bab555172f78 /shell | |
parent | 007a01164705f3b086f5f4633e63a32d6c6e16c6 (diff) | |
download | busybox-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.c | 12 |
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 | ||
1266 | void | 1266 | static void |
1267 | vi_Word_motion(char *command, int eat) | 1267 | vi_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 | ||
1275 | void | 1275 | static void |
1276 | vi_word_motion(char *command, int eat) | 1276 | vi_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 | ||
1297 | void | 1297 | static void |
1298 | vi_End_motion(char *command) | 1298 | vi_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 | ||
1307 | void | 1307 | static void |
1308 | vi_end_motion(char *command) | 1308 | vi_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 | ||
1329 | void | 1329 | static void |
1330 | vi_Back_motion(char *command) | 1330 | vi_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 | ||
1338 | void | 1338 | static void |
1339 | vi_back_motion(char *command) | 1339 | vi_back_motion(char *command) |
1340 | { | 1340 | { |
1341 | if (cursor <= 0) | 1341 | if (cursor <= 0) |