From 3266aa9ec285dbcf254daa17c103bf69dc755967 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 1 Apr 2009 11:24:04 +0000 Subject: trailing whitespace removal --- editors/vi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'editors/vi.c') diff --git a/editors/vi.c b/editors/vi.c index 7f5f2dcbc..0497bc251 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -1677,12 +1677,12 @@ static char *char_insert(char *p, char c) // insert the char c at 'p' q = prev_line(p); // use prev line as template len = strspn(q, " \t"); // space or tab if (len) { - uintptr_t bias; + uintptr_t bias; bias = text_hole_make(p, len); p += bias; q += bias; memcpy(p, q, len); - p += len; + p += len; } } #endif -- cgit v1.2.3