changeset 14513:076b9632bda4 v8.1.0270

patch 8.1.0270: checking for a Tab in a line could be faster commit https://github.com/vim/vim/commit/b31a3acce13231643b006988c1ce76b8a12b2982 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Aug 11 14:41:55 2018 +0200 patch 8.1.0270: checking for a Tab in a line could be faster Problem: Checking for a Tab in a line could be faster. Solution: Use strchr() instead of strrchr(). (closes https://github.com/vim/vim/issues/3312)
author Christian Brabandt <cb@256bit.org>
date Sat, 11 Aug 2018 14:45:05 +0200
parents 41f03a01146c
children 7ac24a4dc6ea
files src/ex_cmds.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -281,7 +281,7 @@ linelen(int *has_tab)
     *last = NUL;
     len = linetabsize(line);		/* get line length */
     if (has_tab != NULL)		/* check for embedded TAB */
-	*has_tab = (vim_strrchr(first, TAB) != NULL);
+	*has_tab = (vim_strchr(first, TAB) != NULL);
     *last = save;
 
     return len;
--- a/src/version.c
+++ b/src/version.c
@@ -795,6 +795,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    270,
+/**/
     269,
 /**/
     268,