updated for version 7.4.201
Problem: 'lispwords' is a global option.
Solution: Make 'lispwords' global-local. (Sung Pae)
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index 9fb67a2..2b846b8 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -4629,7 +4629,7 @@
*'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 df36883..89ebe26 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -855,7 +855,7 @@
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