diff options
Diffstat (limited to 'src')
| -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 8990b59f57..4a8ca741db 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -1490,7 +1490,7 @@ do_set (                new_value_alloced = true;                if (newval == NULL) {                  newval = empty_option; -              } else if (!(options[opt_idx].flags | P_NO_DEF_EXP)) { +              } else if (!(options[opt_idx].flags & P_NO_DEF_EXP)) {                  s = option_expand(opt_idx, newval);                  if (s == NULL) {                    s = newval; | 
