comparison src/getchar.c @ 29404:87980a7936e7 v9.0.0044

patch 9.0.0044: typos in comments, wrapping lines Commit: https://github.com/vim/vim/commit/b8329db36a886355e6e9cb9986a3668fef78c438 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jul 6 13:31:28 2022 +0100 patch 9.0.0044: typos in comments, wrapping lines Problem: Typos in comments, wrapping lines. Solution: Adjust comments. Wrap lines.
author Bram Moolenaar <Bram@vim.org>
date Wed, 06 Jul 2022 14:45:03 +0200
parents 4e48651f2e48
children 5da38c4ffe92
comparison
equal deleted inserted replaced
29403:03e3b0034e31 29404:87980a7936e7
3018 */ 3018 */
3019 static int 3019 static int
3020 vgetorpeek(int advance) 3020 vgetorpeek(int advance)
3021 { 3021 {
3022 int c, c1; 3022 int c, c1;
3023 int timedout = FALSE; // waited for more than 1 second 3023 int timedout = FALSE; // waited for more than 'timeoutlen'
3024 // for mapping to complete 3024 // for mapping to complete or
3025 // 'ttimeoutlen' for complete key code
3025 int mapdepth = 0; // check for recursive mapping 3026 int mapdepth = 0; // check for recursive mapping
3026 int mode_deleted = FALSE; // set when mode has been deleted 3027 int mode_deleted = FALSE; // set when mode has been deleted
3027 #ifdef FEAT_CMDL_INFO 3028 #ifdef FEAT_CMDL_INFO
3028 int new_wcol, new_wrow; 3029 int new_wcol, new_wrow;
3029 #endif 3030 #endif