• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisiond2612392202f9b87c122b7233b0bbc67c9edc004 (tree)
Time2007-06-19 18:51:25
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-004

Change Summary

Incremental Difference

diff -r 2a256978a646 -r d2612392202f src/ex_cmds.c
--- a/src/ex_cmds.c Tue Jun 19 08:06:18 2007 +0000
+++ b/src/ex_cmds.c Tue Jun 19 09:51:25 2007 +0000
@@ -3367,7 +3367,7 @@
33673367 * was in this window (or another window). If not used
33683368 * before, reset the local window options to the global
33693369 * values. Also restores old folding stuff. */
3370- get_winopts(buf);
3370+ get_winopts(curbuf);
33713371 #ifdef FEAT_SPELL
33723372 did_get_winopts = TRUE;
33733373 #endif
@@ -3649,8 +3649,8 @@
36493649 #ifdef FEAT_SPELL
36503650 /* If the window options were changed may need to set the spell language.
36513651 * Can only do this after the buffer has been properly setup. */
3652- if (did_get_winopts && curwin->w_p_spell && *buf->b_p_spl != NUL)
3653- did_set_spelllang(buf);
3652+ if (did_get_winopts && curwin->w_p_spell && *curbuf->b_p_spl != NUL)
3653+ did_set_spelllang(curbuf);
36543654 #endif
36553655
36563656 if (command == NULL)
diff -r 2a256978a646 -r d2612392202f src/version.c
--- a/src/version.c Tue Jun 19 08:06:18 2007 +0000
+++ b/src/version.c Tue Jun 19 09:51:25 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 4,
671+/**/
670672 3,
671673 /**/
672674 2,
Show on old repository browser