summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-07-27 23:16:51 +0200
committerBram Moolenaar <Bram@vim.org>2018-07-27 23:16:51 +0200
commit8e85db0376604274bccf12bf5859d92b4192aca1 (patch)
tree5cef4eedcf58d83daadd02fbb710076822f3a4a0 /src/getchar.c
parentd2a054910bf8f0888fac81e46a64a22dd4a763b5 (diff)
patch 8.1.0216: part of file not indented properlyv8.1.0216
Problem: Part of file not indented properly. Solution: Adjust the indent. (Ken Takata)
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/getchar.c b/src/getchar.c
index cc43ef24a6..496e33fa86 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -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;