comparison src/if_cscope.c @ 2583:7c2e6ba1d702 v7.3.008

updated for version 7.3.008 Problem: 'cursorbind' is kept in places where 'scrollbind' is reset. Solution: Reset 'cursorbind'.
author Bram Moolenaar <bram@vim.org>
date Tue, 21 Sep 2010 16:56:35 +0200
parents 68e394361ca3
children 1a0d346695fa
comparison
equal deleted inserted replaced
2582:2cdbc91795ca 2583:7c2e6ba1d702
1272 # ifdef FEAT_WINDOWS 1272 # ifdef FEAT_WINDOWS
1273 if (postponed_split != 0) 1273 if (postponed_split != 0)
1274 { 1274 {
1275 win_split(postponed_split > 0 ? postponed_split : 0, 1275 win_split(postponed_split > 0 ? postponed_split : 0,
1276 postponed_split_flags); 1276 postponed_split_flags);
1277 # ifdef FEAT_SCROLLBIND 1277 RESET_BINDING(curwin);
1278 curwin->w_p_scb = FALSE;
1279 # endif
1280 postponed_split = 0; 1278 postponed_split = 0;
1281 } 1279 }
1282 # endif 1280 # endif
1283 1281
1284 # ifdef FEAT_AUTOCMD 1282 # ifdef FEAT_AUTOCMD