diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-23 19:52:50 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-23 19:52:50 +0800 |
commit | f5a3edb0c0f761a82b22cd1ac193538220fdee95 (patch) | |
tree | af32221d68d46a9d55d994a05534ed4449a47e27 /src/nvim/ex_docmd.c | |
parent | 0621cd31129d111282043e4543d2507013adb653 (diff) | |
download | rneovim-f5a3edb0c0f761a82b22cd1ac193538220fdee95.tar.gz rneovim-f5a3edb0c0f761a82b22cd1ac193538220fdee95.tar.bz2 rneovim-f5a3edb0c0f761a82b22cd1ac193538220fdee95.zip |
refactor: remove cpo-& behavior (#17745)
cpo-& has been removed, but its behavior was accidentally made the
default behavior. That should be removed instead.
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 5ef9f6c05e..dab17fc3a4 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -7155,7 +7155,6 @@ void alist_slash_adjust(void) /// ":preserve". static void ex_preserve(exarg_T *eap) { - curbuf->b_flags |= BF_PRESERVED; ml_preserve(curbuf, true, true); } |