aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--editors/vi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vi.c b/editors/vi.c
index 5c601c759..a4b958734 100644
--- a/editors/vi.c
+++ b/editors/vi.c
@@ -2684,7 +2684,7 @@ static char *expand_args(char *args)
2684static char *strchr_backslash(const char *s, int c) 2684static char *strchr_backslash(const char *s, int c)
2685{ 2685{
2686 while (*s) { 2686 while (*s) {
2687 if (*s == c) { 2687 if (*s == c)
2688 return (char *)s; 2688 return (char *)s;
2689 if (*s == '\\') 2689 if (*s == '\\')
2690 if (*++s == '\0') 2690 if (*++s == '\0')