diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-03-12 18:55:58 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-03-12 18:55:58 +0100 |
commit | af6c131bf7f86dc85fbc2e4a79f2547786228126 (patch) | |
tree | 8224851b49bf2c2962285c7a2e5a3683c2ed9ccb /runtime/optwin.vim | |
parent | 24ff9e33a9b87f63547e7bce95d09ade1a04fcfb (diff) | |
download | vim-af6c131bf7f86dc85fbc2e4a79f2547786228126.zip |
updated for version 7.4.201
Problem: 'lispwords' is a global option.
Solution: Make 'lispwords' global-local. (Sung Pae)
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index df3688381..89ebe26a3 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -855,7 +855,7 @@ if has("lispindent") call append("$", "\t(local to buffer)") call <SID>BinOptionL("lisp") call append("$", "lispwords\twords that change how lisp indenting works") - call <SID>OptionG("lw", &lw) + call <SID>OptionL("lw", &lw) endif |