diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-09-21 16:56:35 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-09-21 16:56:35 +0200 |
commit | 3368ea215249b08ebaf64247f7a4f542fb6ba060 (patch) | |
tree | 5ea97ed3ee06b2b0f3468fccd7b7f6b9edce9634 /src/if_cscope.c | |
parent | 2eea198564930225d51188682f548332a064037f (diff) | |
download | vim-git-3368ea215249b08ebaf64247f7a4f542fb6ba060.tar.gz |
updated for version 7.3.008v7.3.008
Problem: 'cursorbind' is kept in places where 'scrollbind' is reset.
Solution: Reset 'cursorbind'.
Diffstat (limited to 'src/if_cscope.c')
-rw-r--r-- | src/if_cscope.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/if_cscope.c b/src/if_cscope.c index 3ee718321..1a377da85 100644 --- a/src/if_cscope.c +++ b/src/if_cscope.c @@ -1274,9 +1274,7 @@ cs_find_common(opt, pat, forceit, verbose, use_ll, cmdline) { win_split(postponed_split > 0 ? postponed_split : 0, postponed_split_flags); -# ifdef FEAT_SCROLLBIND - curwin->w_p_scb = FALSE; -# endif + RESET_BINDING(curwin); postponed_split = 0; } # endif |