• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revision8a6c67218fccfc536fdf829075e99549fb8247dd (tree)
Time2007-12-10 03:26:22
Authorvimboss
Commitervimboss

Log Message

updated for version 7.1-173

Change Summary

Incremental Difference

diff -r 9be44c669f4c -r 8a6c67218fcc src/regexp.c
--- a/src/regexp.c Sat Dec 08 21:21:18 2007 +0000
+++ b/src/regexp.c Sun Dec 09 18:26:22 2007 +0000
@@ -3810,11 +3810,11 @@
38103810 break;
38113811
38123812 case RE_BOF:
3813- /* Passing -1 to the getline() function provided for the search
3814- * should always return NULL if the current line is the first
3815- * line of the file. */
3813+ /* We're not at the beginning of the file when below the first
3814+ * line where we started, not at the start of the line or we
3815+ * didn't start at the first line of the buffer. */
38163816 if (reglnum != 0 || reginput != regline
3817- || (REG_MULTI && reg_getline((linenr_T)-1) != NULL))
3817+ || (REG_MULTI && reg_firstlnum > 1))
38183818 status = RA_NOMATCH;
38193819 break;
38203820
diff -r 9be44c669f4c -r 8a6c67218fcc src/version.c
--- a/src/version.c Sat Dec 08 21:21:18 2007 +0000
+++ b/src/version.c Sun Dec 09 18:26:22 2007 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 173,
671+/**/
670672 172,
671673 /**/
672674 171,
Show on old repository browser