summaryrefslogtreecommitdiffstats
path: root/src/getchar.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2021-11-22 12:47:39 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-22 12:47:39 +0000
commita3f83feb63eae5464a620ae793c002eb45f7a838 (patch)
treeba852892bd11fba6e9f70586bc4adc5236a19932 /src/getchar.c
parent73448a27a8e13b9b26759abeb092fd13a0e93238 (diff)
patch 8.2.3643: header for source file is outdatedv8.2.3643
Problem: Header for source file is outdated. Solution: Make the header more accurate. (closes #9186)
Diffstat (limited to 'src/getchar.c')
-rw-r--r--src/getchar.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/getchar.c b/src/getchar.c
index a6644d8efa..bdf0272ef0 100644
--- a/src/getchar.c
+++ b/src/getchar.c
@@ -8,12 +8,8 @@
*/
/*
- * getchar.c
- *
- * functions related with getting a character from the user/mapping/redo/...
- *
- * manipulations with redo buffer and stuff buffer
- * mappings and abbreviations
+ * getchar.c: Code related to getting a character from the user or a script
+ * file, manipulations with redo buffer and stuff buffer.
*/
#include "vim.h"
@@ -2633,7 +2629,7 @@ handle_mapping(
keylen = KEYLEN_PART_KEY;
// If no termcode matched, try to include the modifier into the
- // key. This for when modifyOtherKeys is working.
+ // key. This is for when modifyOtherKeys is working.
if (keylen == 0 && !no_reduce_keys)
keylen = check_simplify_modifier(max_mlen + 1);