aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nvim/option.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index ac889f2451..a4e48f9c02 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -1444,11 +1444,7 @@ int do_set(char *arg, int opt_flags)
// - skip blanks
// - skip one "=val" argument (for hidden options ":set gfn =xx")
for (int i = 0; i < 2; i++) {
- while (*arg != NUL && !ascii_iswhite(*arg)) {
- if (*arg++ == '\\' && *arg != NUL) {
- arg++;
- }
- }
+ arg = skiptowhite_esc(arg);
arg = skipwhite(arg);
if (*arg != '=') {
break;