patch 8.2.4610: some conditions are always true
Problem: Some conditions are always true.
Solution: Remove the useless conditions. (closes #9993)
diff --git a/src/spell.c b/src/spell.c
index 81ba049..5145ce1 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -1371,11 +1371,10 @@
// the cursor.
if (dir == BACKWARD
|| lnum != wp->w_cursor.lnum
- || (lnum == wp->w_cursor.lnum
- && (wrapped
- || (colnr_T)(curline ? p - buf + len
+ || (wrapped
+ || (colnr_T)(curline ? p - buf + len
: p - buf)
- > wp->w_cursor.col)))
+ > wp->w_cursor.col))
{
#ifdef FEAT_SYN_HL
if (has_syntax)