]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-117 v7.2.117
authorBram Moolenaar <Bram@vim.org>
Sat, 21 Feb 2009 23:03:09 +0000 (23:03 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 21 Feb 2009 23:03:09 +0000 (23:03 +0000)
src/buffer.c
src/quickfix.c
src/screen.c
src/version.c

index b510bf963486ae03df94754d72329244c7f41e87..a052e12c64ae92e67153803af075067ef3a7aeb7 100644 (file)
@@ -5098,7 +5098,8 @@ buf_spname(buf)
         */
        FOR_ALL_TAB_WINDOWS(tp, win)
            if (win->w_buffer == buf)
-               break;
+               goto win_found;
+win_found:
        if (win != NULL && win->w_llist_ref != NULL)
            return _("[Location List]");
        else
index 5c3ae381ee45596a684905f65ec2d6128f58d9f0..5f69a925b7fab7f3d19888ca7485e6dccd022efe 100644 (file)
@@ -1610,10 +1610,11 @@ qf_jump(qi, dir, errornr, forceit)
                {
                    goto_tabpage_win(tp, wp);
                    usable_win = 1;
-                   break;
+                   goto win_found;
                }
            }
        }
+win_found:
 
        /*
         * If there is only one window and it is the quickfix window, create a
index 72e20ba7ffb1adb38dc99d64f8d5c338b41deacf..2ba06e20f8cb1cf1038118836886fd41f3a20cab 100644 (file)
@@ -7452,10 +7452,13 @@ screenalloc(clear)
        {
            outofmem = TRUE;
 #ifdef FEAT_WINDOWS
-           break;
+           goto give_up;
 #endif
        }
     }
+#ifdef FEAT_WINDOWS
+give_up:
+#endif
 
 #ifdef FEAT_MBYTE
     for (i = 0; i < p_mco; ++i)
index 86b7fb22722da848b82a212847436ade80a227fa..1e5d6f6b1e2dd329438a47c776e99ea5024783f2 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    117,
 /**/
     116,
 /**/