updated for version 7.4.201
Problem:    'lispwords' is a global option.
Solution:   Make 'lispwords' global-local. (Sung Pae)
diff --git a/src/misc1.c b/src/misc1.c
index b258d0b..9434961 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -8879,7 +8879,7 @@
 {
     char_u	buf[LSIZE];
     int		len;
-    char_u	*word = p_lispwords;
+    char_u	*word = *curbuf->b_p_lw != NUL ? curbuf->b_p_lw : p_lispwords;
 
     while (*word != NUL)
     {