]> granicus.if.org Git - vim/commitdiff
patch 8.1.0216: part of file not indented properly v8.1.0216
authorBram Moolenaar <Bram@vim.org>
Fri, 27 Jul 2018 21:16:51 +0000 (23:16 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 27 Jul 2018 21:16:51 +0000 (23:16 +0200)
Problem:    Part of file not indented properly.
Solution:   Adjust the indent. (Ken Takata)

src/getchar.c
src/version.c

index cc43ef24a653daf8badc7a6759356ba2c38374c0..496e33fa863b60b97e855f8699da529dd07bb5e4 100644 (file)
@@ -1710,18 +1710,18 @@ vgetc(void)
         * its ASCII equivalent */
        switch (c)
        {
-           case K_KPLUS:               c = '+'; break;
-           case K_KMINUS:              c = '-'; break;
-           case K_KDIVIDE:             c = '/'; break;
+           case K_KPLUS:       c = '+'; break;
+           case K_KMINUS:      c = '-'; break;
+           case K_KDIVIDE:     c = '/'; break;
            case K_KMULTIPLY:   c = '*'; break;
-           case K_KENTER:              c = CAR; break;
+           case K_KENTER:      c = CAR; break;
            case K_KPOINT:
 #ifdef WIN32
-                                   /* Can be either '.' or a ',', *
-                                    * depending on the type of keypad. */
-                                   c = MapVirtualKey(VK_DECIMAL, 2); break;
+                               // Can be either '.' or a ',',
+                               // depending on the type of keypad.
+                               c = MapVirtualKey(VK_DECIMAL, 2); break;
 #else
-                                   c = '.'; break;
+                               c = '.'; break;
 #endif
            case K_K0:          c = '0'; break;
            case K_K1:          c = '1'; break;
index 172748b4725ca9bcd31042eb832a8806652ef909..0d0a2b28665869b4946a45bc82b0f31f8529bf1a 100644 (file)
@@ -798,6 +798,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    216,
 /**/
     215,
 /**/