We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2482069 commit 1ad022aCopy full SHA for 1ad022a
2 files changed
src/beval.c
@@ -50,7 +50,7 @@ get_beval_info(
50
}
51
#endif
52
wp = mouse_find_win(&row, &col);
53
- if (wp != NULL && row < wp->w_height && col < wp->w_width)
+ if (wp != NULL && row >= 0 && row < wp->w_height && col < wp->w_width)
54
{
55
/* Found a window and the cursor is in the text. Now find the line
56
* number. */
src/version.c
@@ -771,6 +771,8 @@ static char *(features[]) =
771
772
static int included_patches[] =
773
{ /* Add new patch number below this line */
774
+/**/
775
+ 1366,
776
/**/
777
1365,
778
0 commit comments