diff src/buffer.c @ 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 505cf1943dc2
children 50dbef5e774a
line wrap: on
line diff
--- 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
 }
 
 /*