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:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user