vi: style fixlet
authorDenis Vlasenko <vda.linux@googlemail.com>
Tue, 17 Jul 2007 23:22:49 +0000 (23:22 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Tue, 17 Jul 2007 23:22:49 +0000 (23:22 -0000)
editors/vi.c

index 67606f99fe0c14fc93c602ecb07153136bff1b5e..594edfd51a27a6c8b7c6e4b20907b0c3f0095e69 100644 (file)
@@ -1134,7 +1134,8 @@ static void Hit_Return(void)
        redraw(TRUE);           // force redraw all
 }
 
-static int next_tabstop(int col) { //vda
+static int next_tabstop(int col)
+{
        return col + ((tabstop - 1) - (col % tabstop));
 }