summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/beval.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/beval.c b/src/beval.c
index f8bb6ba26b..981e5ea46c 100644
--- 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. */
diff --git a/src/version.c b/src/version.c
index 3f1d7db311..4a82af9de3 100644
--- 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,