comparison src/screen.c @ 23467:826a6406ea7b v8.2.2276

patch 8.2.2276: list of distributed files is outdated Commit: https://github.com/vim/vim/commit/a72514945bc3edd4fc4d745004e37c5d5487c98d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 2 16:53:13 2021 +0100 patch 8.2.2276: list of distributed files is outdated Problem: List of distributed files is outdated. Solution: Update the file list. Minor comment updates.
author Bram Moolenaar <Bram@vim.org>
date Sat, 02 Jan 2021 17:00:04 +0100
parents 6d50182e7e24
children 0bd44e94dd14
comparison
equal deleted inserted replaced
23466:15fa3923cc49 23467:826a6406ea7b
3085 #define PLAN_NL 3 3085 #define PLAN_NL 3
3086 #define PLAN_WRITE 4 3086 #define PLAN_WRITE 4
3087 // Can't use ScreenLines unless initialized 3087 // Can't use ScreenLines unless initialized
3088 if (ScreenLines == NULL) 3088 if (ScreenLines == NULL)
3089 return; 3089 return;
3090
3091 if (col != screen_cur_col || row != screen_cur_row) 3090 if (col != screen_cur_col || row != screen_cur_row)
3092 { 3091 {
3093 // Check for valid position. 3092 // Check for valid position.
3094 if (row < 0) // window without text lines? 3093 if (row < 0) // window without text lines?
3095 row = 0; 3094 row = 0;