Skip to content

Commit 8e85db0

Browse files
committed
patch 8.1.0216: part of file not indented properly
Problem: Part of file not indented properly. Solution: Adjust the indent. (Ken Takata)
1 parent d2a0549 commit 8e85db0

2 files changed

Lines changed: 10 additions & 8 deletions

File tree

src/getchar.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1710,18 +1710,18 @@ vgetc(void)
17101710
* its ASCII equivalent */
17111711
switch (c)
17121712
{
1713-
case K_KPLUS: c = '+'; break;
1714-
case K_KMINUS: c = '-'; break;
1715-
case K_KDIVIDE: c = '/'; break;
1713+
case K_KPLUS: c = '+'; break;
1714+
case K_KMINUS: c = '-'; break;
1715+
case K_KDIVIDE: c = '/'; break;
17161716
case K_KMULTIPLY: c = '*'; break;
1717-
case K_KENTER: c = CAR; break;
1717+
case K_KENTER: c = CAR; break;
17181718
case K_KPOINT:
17191719
#ifdef WIN32
1720-
/* Can be either '.' or a ',', *
1721-
* depending on the type of keypad. */
1722-
c = MapVirtualKey(VK_DECIMAL, 2); break;
1720+
// Can be either '.' or a ',',
1721+
// depending on the type of keypad.
1722+
c = MapVirtualKey(VK_DECIMAL, 2); break;
17231723
#else
1724-
c = '.'; break;
1724+
c = '.'; break;
17251725
#endif
17261726
case K_K0: c = '0'; break;
17271727
case K_K1: c = '1'; break;

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -798,6 +798,8 @@ static char *(features[]) =
798798

799799
static int included_patches[] =
800800
{ /* Add new patch number below this line */
801+
/**/
802+
216,
801803
/**/
802804
215,
803805
/**/

0 commit comments

Comments
 (0)