• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revisiondfcff6590aba6d93a69b414759b164c255fda08f (tree)
Time2008-01-22 19:59:38
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-238

Change Summary

Incremental Difference

diff -r 710b52d02c4a -r dfcff6590aba src/eval.c
--- a/src/eval.c Tue Jan 22 10:06:48 2008 +0000
+++ b/src/eval.c Tue Jan 22 10:59:38 2008 +0000
@@ -14189,6 +14189,10 @@
1418914189 goto theend;
1419014190 }
1419114191
14192+ /* Using 'r' implies 'W', otherwise it doesn't work. */
14193+ if (flags & SP_REPEAT)
14194+ p_ws = FALSE;
14195+
1419214196 /* Optional fifth argument: skip expression */
1419314197 if (argvars[3].v_type == VAR_UNKNOWN
1419414198 || argvars[4].v_type == VAR_UNKNOWN)
@@ -14345,6 +14349,9 @@
1434514349 }
1434614350 foundpos = pos;
1434714351
14352+ /* clear the start flag to avoid getting stuck here */
14353+ options &= ~SEARCH_START;
14354+
1434814355 /* If the skip pattern matches, ignore this match. */
1434914356 if (*skip != NUL)
1435014357 {
diff -r 710b52d02c4a -r dfcff6590aba src/version.c
--- a/src/version.c Tue Jan 22 10:06:48 2008 +0000
+++ b/src/version.c Tue Jan 22 10:59:38 2008 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 238,
671+/**/
670672 237,
671673 /**/
672674 236,
Show on old repository browser