summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-10-17 09:12:21 +0000
committerBram Moolenaar <Bram@vim.org>2006-10-17 09:12:21 +0000
commite163f1cb99d99fcd6368a2d1e39b1d1c53fb72e1 (patch)
treeccb7aa04f425f36a079b7f42686cc32ee5385437
parent685295c3c4ae9b81138458ce2890c1a55422d3bd (diff)
updated for version 7.0-136v7.0.136
-rw-r--r--src/misc1.c3
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/misc1.c b/src/misc1.c
index 0c2b797cf7..ed6c629949 100644
--- a/src/misc1.c
+++ b/src/misc1.c
@@ -2842,7 +2842,8 @@ changed_common(lnum, col, lnume, xtra)
#ifdef FEAT_AUTOCMD
/* when the cursor line is changed always trigger CursorMoved */
- if (lnum <= curwin->w_cursor.lnum && lnume > curwin->w_cursor.lnum)
+ if (lnum <= curwin->w_cursor.lnum
+ && lnume + (xtra < 0 ? -xtra : xtra) > curwin->w_cursor.lnum)
last_cursormoved.lnum = 0;
#endif
}
diff --git a/src/version.c b/src/version.c
index c701666582..f442ba30a6 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 136,
+/**/
135,
/**/
134,