diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 15:40:16 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 15:40:16 +0000 |
commit | 219d14d514ca4d31b4319af14e3a64b66fe2c233 (patch) | |
tree | a74e8ce7604ff932a3990de3065c167392e4b082 /editors | |
parent | 644849a3aa0c834a942fb7777ec449d8098bcfc9 (diff) | |
download | busybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.tar.gz busybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.tar.bz2 busybox-w32-219d14d514ca4d31b4319af14e3a64b66fe2c233.zip |
random style fixes (extra spaces deleted)
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c index 853303249..c7582bfe0 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -3393,7 +3393,7 @@ static void do_cmd(char c) | |||
3393 | editing = 0; | 3393 | editing = 0; |
3394 | } | 3394 | } |
3395 | } | 3395 | } |
3396 | } else if (strncasecmp(p, "file", cnt) == 0 ) { | 3396 | } else if (strncasecmp(p, "file", cnt) == 0) { |
3397 | last_status_cksum = 0; // force status update | 3397 | last_status_cksum = 0; // force status update |
3398 | } else if (sscanf(p, "%d", &j) > 0) { | 3398 | } else if (sscanf(p, "%d", &j) > 0) { |
3399 | dot = find_line(j); // go to line # j | 3399 | dot = find_line(j); // go to line # j |