diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-01-27 08:37:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 08:37:36 +0100 |
commit | 480fbbe296d4cad860855fc62a9d8296e915c8df (patch) | |
tree | 71a6c4d725a0430c555de7ee0efc2b4f1f78ca21 /src/nvim/ex_docmd.c | |
parent | 0813b9fde456b991ee5e7ea8a9da2c21a09a13c1 (diff) | |
parent | aa4eadd2bee7d389edc6284078bb43c700de5b0f (diff) | |
download | rneovim-480fbbe296d4cad860855fc62a9d8296e915c8df.tar.gz rneovim-480fbbe296d4cad860855fc62a9d8296e915c8df.tar.bz2 rneovim-480fbbe296d4cad860855fc62a9d8296e915c8df.zip |
Merge pull request #17145 from zeertzjq/vim-8.2.0128
vim-patch:8.2.0128: cannot list options one per line
Diffstat (limited to 'src/nvim/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index a4b43e598d..bfcb8c1663 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -9604,18 +9604,6 @@ static void ex_digraphs(exarg_T *eap) } } -static void ex_set(exarg_T *eap) -{ - int flags = 0; - - if (eap->cmdidx == CMD_setlocal) { - flags = OPT_LOCAL; - } else if (eap->cmdidx == CMD_setglobal) { - flags = OPT_GLOBAL; - } - (void)do_set(eap->arg, flags); -} - void set_no_hlsearch(bool flag) { no_hlsearch = flag; |