diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-06-24 02:35:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 02:35:25 +0200 |
commit | 7d604a1e6158cda79f7ac485e0ef0e349014f8bf (patch) | |
tree | 4234b4bc08bfa6023b91f385642d899266bc825a /src/nvim/ex_cmds.c | |
parent | 9fd4a0b52697db053143f51822e68da95c6886aa (diff) | |
parent | fa3db26f100bcb1c27b62b491bd63aed0800795b (diff) | |
download | rneovim-7d604a1e6158cda79f7ac485e0ef0e349014f8bf.tar.gz rneovim-7d604a1e6158cda79f7ac485e0ef0e349014f8bf.tar.bz2 rneovim-7d604a1e6158cda79f7ac485e0ef0e349014f8bf.zip |
Merge #10294 from janlazo/vim-8.0.1239
vim-patch:8.0.1239,8.1.{112,125,165,166,167,169,181,242,270,272,747,850,853,1519}
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 71ed5f6ec1..17b66fd32c 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -335,7 +335,7 @@ static int linelen(int *has_tab) len = linetabsize(line); // Check for embedded TAB. if (has_tab != NULL) { - *has_tab = STRRCHR(first, TAB) != NULL; + *has_tab = vim_strchr(first, TAB) != NULL; } *last = save; |