changeset 12981:d52a3969ce4f v8.0.1367

patch 8.0.1367 commit https://github.com/vim/vim/commit/1ad022a9b81d7829d5dc98cf5b8d0ee410558040 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Dec 3 18:20:32 2017 +0100 patch 8.0.1367
author Christian Brabandt <cb@256bit.org>
date Sun, 03 Dec 2017 18:30:04 +0100
parents 55e499af0d75
children b257a7834e7e
files src/beval.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/beval.c
+++ b/src/beval.c
@@ -50,7 +50,7 @@ get_beval_info(
     }
 #endif
     wp = mouse_find_win(&row, &col);
-    if (wp != NULL && row < wp->w_height && col < wp->w_width)
+    if (wp != NULL && row >= 0 && row < wp->w_height && col < wp->w_width)
     {
 	/* Found a window and the cursor is in the text.  Now find the line
 	 * number. */
--- a/src/version.c
+++ b/src/version.c
@@ -772,6 +772,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1366,
+/**/
     1365,
 /**/
     1364,