summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-01-14 11:46:49 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-14 11:46:49 +0000
commit378e6c03f98efc88e8c2675e05a548f9bb7889a1 (patch)
tree5be99f47c5f9a62460c63f60047221bc69c8c928 /src/globals.h
parentb40a2fb3b3e4fef137eebb3bab9c02adc5540658 (diff)
patch 9.0.1195: restoring KeyTyped when building statusline not testedv9.0.1195
Problem: Restoring KeyTyped when building statusline not tested. Solution: Add a test. Clean up and fix other tests. (closes #11815)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/globals.h b/src/globals.h
index 8c3cb62e43..e38b471657 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -2043,6 +2043,6 @@ EXTERN int skip_win_fix_scroll INIT(= FALSE);
// Skip update_topline() call while executing win_fix_scroll().
EXTERN int skip_update_topline INIT(= FALSE);
-// 'showcmd' buffer shared between normal.c and statusline.c
+// 'showcmd' buffer shared between normal.c and statusline code
#define SHOWCMD_BUFLEN (SHOWCMD_COLS + 1 + 30)
EXTERN char_u showcmd_buf[SHOWCMD_BUFLEN];