diff options
author | Ron Yorston <rmy@pobox.com> | 2021-07-13 16:35:43 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2021-07-13 18:23:43 +0200 |
commit | e6f4145f2961bfd500214ef1fcf07543ffacb603 (patch) | |
tree | 3cb76789a6ddff24cf00fdabf9350f67b07d6c52 /editors | |
parent | 36feb2682481d55ae49df899c38e16130227ba4a (diff) |
vi: fix regex search compilation error
Building with FEATURE_VI_REGEX_SEARCH enabled fails.
Signed-off-by: Ron Yorston <rmy@pobox.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'editors')
-rw-r--r-- | editors/vi.c | 2 |
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) static char *strchr_backslash(const char *s, int c) { while (*s) { - if (*s == c) { + if (*s == c) return (char *)s; if (*s == '\\') if (*++s == '\0') |