patch 8.1.0216: part of file not indented properly
Problem: Part of file not indented properly.
Solution: Adjust the indent. (Ken Takata)
diff --git a/src/getchar.c b/src/getchar.c
index cc43ef2..496e33f 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -1710,18 +1710,18 @@
* 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;
diff --git a/src/version.c b/src/version.c
index 172748b..0d0a2b2 100644
--- a/src/version.c
+++ b/src/version.c
@@ -799,6 +799,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 216,
+/**/
215,
/**/
214,