summaryrefslogtreecommitdiffstats
path: root/src/buffer.c
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 /src/buffer.c
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 'src/buffer.c')
-rw-r--r--src/buffer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 4eaf3dbe5e..d68646790e 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1978,6 +1978,9 @@ free_buf_options(buf, free_p_ff)
#endif
buf->b_p_ar = -1;
buf->b_p_ul = NO_LOCAL_UNDOLEVEL;
+#ifdef FEAT_LISP
+ clear_string_option(&buf->b_p_lw);
+#endif
}
/*