commit | 1ad022a9b81d7829d5dc98cf5b8d0ee410558040 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Dec 03 18:20:32 2017 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Dec 03 18:20:32 2017 +0100 |
tree | 91ce0dc3f8519c0718a06288d35398d69e4eab21 | |
parent | 24820691e6ba9dae41ef16a3d3e55589843b34f4 [diff] [blame] |
patch 8.0.1367
diff --git a/src/beval.c b/src/beval.c index f8bb6ba..981e5ea 100644 --- a/src/beval.c +++ b/src/beval.c
@@ -50,7 +50,7 @@ } #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. */