diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-17 23:22:49 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-17 23:22:49 +0000 |
commit | 91afdf8096c3f3e434686d1b585ab5cde72c9f03 (patch) | |
tree | f8048ba181a7252a227230f047b501087e6339ae | |
parent | a3d15c8be7493634a07f8c8cc5585dacf5aa20f3 (diff) | |
download | busybox-w32-91afdf8096c3f3e434686d1b585ab5cde72c9f03.tar.gz busybox-w32-91afdf8096c3f3e434686d1b585ab5cde72c9f03.tar.bz2 busybox-w32-91afdf8096c3f3e434686d1b585ab5cde72c9f03.zip |
vi: style fixlet
-rw-r--r-- | editors/vi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c index 67606f99f..594edfd51 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -1134,7 +1134,8 @@ static void Hit_Return(void) | |||
1134 | redraw(TRUE); // force redraw all | 1134 | redraw(TRUE); // force redraw all |
1135 | } | 1135 | } |
1136 | 1136 | ||
1137 | static int next_tabstop(int col) { //vda | 1137 | static int next_tabstop(int col) |
1138 | { | ||
1138 | return col + ((tabstop - 1) - (col % tabstop)); | 1139 | return col + ((tabstop - 1) - (col % tabstop)); |
1139 | } | 1140 | } |
1140 | 1141 | ||