Unnecessary after removal of tab copying

This commit is contained in:
Ashish Kumar Yadav 2021-12-27 23:58:55 +05:30
parent a6ed88b509
commit 8b7c67b591
1 changed files with 1 additions and 2 deletions

View File

@ -48,7 +48,6 @@
#define ISCONTROLC1(c) (BETWEEN(c, 0x80, 0x9f))
#define ISCONTROL(c) (ISCONTROLC0(c) || ISCONTROLC1(c))
#define ISDELIM(u) (u && wcschr(worddelimiters, u))
#define ISSPACE(gp) (gp->u == ' ' && (gp->mode & ATTR_SET))
#define STRESCARGREST(n) ((n) == 0 ? strescseq.buf : strescseq.argp[(n)-1] + 1)
#define STRESCARGJUST(n) (*(strescseq.argp[n]) = '\0', STRESCARGREST(n))
@ -643,7 +642,7 @@ selsnap(int *x, int *y, int direction)
gp = &TLINE(newy)[newx];
delim = ISDELIM(gp->u);
if (!(gp->mode & ATTR_WDUMMY) && (delim != prevdelim ||
(delim && !(ISSPACE(gp) && ISSPACE(prevgp)))))
(delim && !(gp->u == ' ' && prevgp->u == ' '))))
break;
*x = newx;