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 51e9fbf commit b31a3acCopy full SHA for b31a3ac
2 files changed
src/ex_cmds.c
@@ -281,7 +281,7 @@ linelen(int *has_tab)
281
*last = NUL;
282
len = linetabsize(line); /* get line length */
283
if (has_tab != NULL) /* check for embedded TAB */
284
- *has_tab = (vim_strrchr(first, TAB) != NULL);
+ *has_tab = (vim_strchr(first, TAB) != NULL);
285
*last = save;
286
287
return len;
src/version.c
@@ -794,6 +794,8 @@ static char *(features[]) =
794
795
static int included_patches[] =
796
{ /* Add new patch number below this line */
797
+/**/
798
+ 270,
799
/**/
800
269,
801
0 commit comments