1
0
forked from aniani/vim

updated for version 7.4.201

Problem:    'lispwords' is a global option.
Solution:   Make 'lispwords' global-local. (Sung Pae)
This commit is contained in:
Bram Moolenaar
2014-03-12 18:55:58 +01:00
parent 24ff9e33a9
commit af6c131bf7
10 changed files with 51 additions and 5 deletions

View File

@@ -8879,7 +8879,7 @@ lisp_match(p)
{
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)
{