diff options
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index b0e0d01504..c805e41ec5 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1525,7 +1525,7 @@ do_set ( origval = oldval; } - if (nextchar == '&') { /* set to default val */ + if (nextchar == '&') { // set to default val newval = options[opt_idx].def_val[ ((flags & P_VI_DEF) || cp_val) ? VI_DEFAULT : VIM_DEFAULT]; |