summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/screen.c6
-rw-r--r--src/version.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c
index e0e9d3b7e..adc62e10e 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -4161,7 +4161,11 @@ win_line(
break;
}
- if (draw_state == WL_LINE && area_highlighting)
+ if (draw_state == WL_LINE && (area_highlighting
+#ifdef FEAT_SPELL
+ || has_spell
+#endif
+ ))
{
/* handle Visual or match highlighting in this line */
if (vcol == fromcol
diff --git a/src/version.c b/src/version.c
index a7bee9099..c3379676e 100644
--- a/src/version.c
+++ b/src/version.c
@@ -800,6 +800,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 683,
+/**/
682,
/**/
681,