diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-04-01 12:26:46 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-04-01 12:26:46 +0200 |
commit | e7a88a8d4ebd2419ad926578ddc0ee4bf43cf069 (patch) | |
tree | 81f49107dac9aeab9408bf66602b9943dcef4f72 | |
parent | a392038db5871af6f78fe4d822d9f7126f25eab6 (diff) | |
download | vim-git-e7a88a8d4ebd2419ad926578ddc0ee4bf43cf069.tar.gz |
updated for version 7.4.230v7.4.230
Problem: Error when using ":options".
Solution: Fix the entry for 'lispwords'. (Kenichi Ito)
-rw-r--r-- | runtime/optwin.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 89ebe26a3..26684381a 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>OptionL("lw", &lw) + call <SID>OptionL("lw") endif diff --git a/src/version.c b/src/version.c index 2f4c89609..ef8d474d2 100644 --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 230, +/**/ 229, /**/ 228, |