diff runtime/optwin.vim @ 5712:06e5f65c34d8 v7.4.201

updated for version 7.4.201 Problem: 'lispwords' is a global option. Solution: Make 'lispwords' global-local. (Sung Pae)
author Bram Moolenaar <bram@vim.org>
date Wed, 12 Mar 2014 18:55:58 +0100
parents c458ff35497e
children 57ecd7a8c0f0
line wrap: on
line diff
--- 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