summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-03-12 18:55:58 +0100
committerBram Moolenaar <Bram@vim.org>2014-03-12 18:55:58 +0100
commitaf6c131bf7f86dc85fbc2e4a79f2547786228126 (patch)
tree8224851b49bf2c2962285c7a2e5a3683c2ed9ccb /runtime
parent24ff9e33a9b87f63547e7bce95d09ade1a04fcfb (diff)
updated for version 7.4.201v7.4.201
Problem: 'lispwords' is a global option. Solution: Make 'lispwords' global-local. (Sung Pae)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/options.txt2
-rw-r--r--runtime/optwin.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 9fb67a2cff..2b846b87d6 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -4629,7 +4629,7 @@ A jump table for the options with a short description can be found at |Q_op|.
*'lispwords'* *'lw'*
'lispwords' 'lw' string (default is very long)
- global
+ global or local to buffer |global-local|
{not in Vi}
{not available when compiled without the |+lispindent|
feature}
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index df3688381d..89ebe26a3e 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