]> granicus.if.org Git - vim/commitdiff
updated for version 7.0184
authorBram Moolenaar <Bram@vim.org>
Sat, 21 Jan 2006 22:12:51 +0000 (22:12 +0000)
committerBram Moolenaar <Bram@vim.org>
Sat, 21 Jan 2006 22:12:51 +0000 (22:12 +0000)
src/gui_w32.c
src/if_cscope.c
src/testdir/test10.in
src/version.h

index c49d82b3e760a34b3e91f45122115cd884afe82e..234afe1f362920da41b5a29a97eee9bf2596a656 100644 (file)
@@ -2166,6 +2166,29 @@ clear_rect(RECT *rcp)
 }
 
 
+    void
+gui_mch_get_screen_dimensions(int *screen_w, int *screen_h)
+{
+    RECT       workarea_rect;
+
+    get_work_area(&workarea_rect);
+
+    *screen_w = workarea_rect.right
+               - GetSystemMetrics(SM_CXFRAME) * 2;
+
+    /* FIXME: dirty trick: Because the gui_get_base_height() doesn't include
+     * the menubar for MSwin, we subtract it from the screen height, so that
+     * the window size can be made to fit on the screen. */
+    *screen_h = workarea_rect.bottom
+               - GetSystemMetrics(SM_CYFRAME) * 2
+               - GetSystemMetrics(SM_CYCAPTION)
+#ifdef FEAT_MENU
+               - gui_mswin_get_menu_height(FALSE)
+#endif
+               ;
+}
+
+
 #if defined(FEAT_MENU) || defined(PROTO)
 /*
  * Add a sub menu to the menu bar.
@@ -2779,7 +2802,7 @@ gui_mch_dialog(
     {
        RECT    workarea_rect;
 
-       /* We don't have a window, use the desktip area. */
+       /* We don't have a window, use the desktop area. */
        get_work_area(&workarea_rect);
        maxDialogWidth = workarea_rect.right - workarea_rect.left - 100;
        if (maxDialogWidth > 600)
index 24d7d065904da46eea5dd4916a8ce3d6dc602653..56fd12aa2b914ed13ae69400571730751e47d19c 100644 (file)
@@ -44,7 +44,9 @@ static int        cs_cnt_matches __ARGS((int idx));
 static char *      cs_create_cmd __ARGS((char *csoption, char *pattern));
 static int         cs_create_connection __ARGS((int i));
 static void        do_cscope_general __ARGS((exarg_T *eap, int make_split));
+#ifdef FEAT_QUICKFIX
 static void        cs_file_results __ARGS((FILE *, int *));
+#endif
 static void        cs_fill_results __ARGS((char *, int , int *, char ***,
                        char ***, int *));
 static int         cs_find __ARGS((exarg_T *eap));
@@ -1670,6 +1672,7 @@ cs_parse_results(cnumber, buf, bufsize, context, linenumber, search)
     return name;
 }
 
+#ifdef FEAT_QUICKFIX
 /*
  * PRIVATE: cs_file_results
  *
@@ -1725,6 +1728,7 @@ cs_file_results(f, nummatches_a)
     } /* for all cscope connections */
     vim_free(buf);
 }
+#endif
 
 /*
  * PRIVATE: cs_fill_results
index f15c4f5d2cddefdf32ea549dd7ce391174f854d9..6d0c721ddd497a19a599afe08735f8a23d458942 100644 (file)
@@ -1,4 +1,4 @@
-Test for 'errorformat'.
+Test for 'errorformat'.  This will fail if the quickfix feature was disabled.
 
 STARTTEST
 :so small.vim
index 818a3d4a1ac9920c876e1bf0f3d6267355919de1..1b46f8709df8c0e54270b249d0b32c2622ed1ac5 100644 (file)
@@ -36,5 +36,5 @@
 #define VIM_VERSION_NODOT      "vim70aa"
 #define VIM_VERSION_SHORT      "7.0aa"
 #define VIM_VERSION_MEDIUM     "7.0aa ALPHA"
-#define VIM_VERSION_LONG       "VIM - Vi IMproved 7.0aa ALPHA (2006 Jan 20)"
-#define VIM_VERSION_LONG_DATE  "VIM - Vi IMproved 7.0aa ALPHA (2006 Jan 20, compiled "
+#define VIM_VERSION_LONG       "VIM - Vi IMproved 7.0aa ALPHA (2006 Jan 21)"
+#define VIM_VERSION_LONG_DATE  "VIM - Vi IMproved 7.0aa ALPHA (2006 Jan 21, compiled "