summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-02-05 18:00:42 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-05 18:00:42 +0000
commita9a6b0323ea3dc5e4d11d28e7c9ae3534e02ee54 (patch)
treef22f9b6ea343ff0151b39b11da757ecd2c91fafc /src/getchar.c
parent40b4872966d3886e7ff86184ae4ffb58704bf075 (diff)
patch 9.0.1285: various small problemsv9.0.1285
Problem: Various small problems. Solution: Adjust white space and comments.
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/getchar.c b/src/getchar.c
index 2d30d4fb16..2f0079d5cf 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -1662,7 +1662,7 @@ merge_modifyOtherKeys(int c_arg, int *modifiers)
&& c >= 0 && c <= 127)
{
c += 0x80;
- *modifiers &= ~(MOD_MASK_META|MOD_MASK_ALT);
+ *modifiers &= ~(MOD_MASK_META | MOD_MASK_ALT);
}
return c;
}