]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.829 v7.3.829
authorBram Moolenaar <Bram@vim.org>
Wed, 20 Feb 2013 17:39:13 +0000 (18:39 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 20 Feb 2013 17:39:13 +0000 (18:39 +0100)
Problem:    When compiled with the +rightleft feature 'showmatch' also shows a
            match for the opening paren.  When 'revins' is set the screen may
            scroll.
Solution:   Only check the opening paren when the +rightleft feature was
            enabled.  Do not show a match that is not visible. (partly by
            Christian Brabandt)

src/search.c
src/version.c

index 24b0c4a82e834862180db3a52f44af8cbee09718..fc7468046fb338e0b4c182752765b39f2031316a 100644 (file)
@@ -2431,12 +2431,10 @@ showmatch(c)
     /* 'matchpairs' is "x:y,x:y" */
     for (p = curbuf->b_p_mps; *p != NUL; ++p)
     {
-       if (PTR2CHAR(p) == c
 #ifdef FEAT_RIGHTLEFT
-                   && (curwin->w_p_rl ^ p_ri)
-#endif
-          )
+       if (PTR2CHAR(p) == c && (curwin->w_p_rl ^ p_ri))
            break;
+#endif
        p += MB_PTR2LEN(p) + 1;
        if (PTR2CHAR(p) == c
 #ifdef FEAT_RIGHTLEFT
@@ -2451,7 +2449,7 @@ showmatch(c)
 
     if ((lpos = findmatch(NULL, NUL)) == NULL)     /* no match, so beep */
        vim_beep();
-    else if (lpos->lnum >= curwin->w_topline)
+    else if (lpos->lnum >= curwin->w_topline && lpos->lnum < curwin->w_botline)
     {
        if (!curwin->w_p_wrap)
            getvcol(curwin, lpos, NULL, &vcol, NULL);
index 71e10153c8f3cc22a32949426efcd716aa4281b9..a63e02554a4f2202757809bdf531c33de9af117b 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    829,
 /**/
     828,
 /**/