]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.774 v7.3.774
authorBram Moolenaar <Bram@vim.org>
Wed, 23 Jan 2013 12:41:00 +0000 (13:41 +0100)
committerBram Moolenaar <Bram@vim.org>
Wed, 23 Jan 2013 12:41:00 +0000 (13:41 +0100)
Problem:    Tiny GUI version misses console dialog feature.
Solution:   Define FEAT_CON_DIALOG when apprpriate. (Christian Brabandt)

src/feature.h
src/gui.h
src/version.c

index 7ef654bb39a9da34c9c4d97eb80740990b2d84ad..f54f59ac9fc0a6eb4962994c02dc3607e8f7bfe1 100644 (file)
 # endif
 #endif
 
+/*
+ * On some systems, when we compile with the GUI, we always use it.  On Mac
+ * there is no terminal version, and on Windows we can't figure out how to
+ * fork one off with :gui.
+ */
+#if defined(FEAT_GUI_MSWIN) || (defined(FEAT_GUI_MAC) && !defined(MACOS_X_UNIX))
+# define ALWAYS_USE_GUI
+#endif
+
 /*
  * +dialog_gui         Use GUI dialog.
  * +dialog_con         May use Console dialog.
         || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_MSWIN) \
         || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC))
 # define FEAT_GUI_TEXTDIALOG
+# ifndef ALWAYS_USE_GUI
+#  define FEAT_CON_DIALOG
+# endif
 #endif
 
 /* Mac specific thing: Codewarrior interface. */
index e0c1c5c8aa178f7402bd81d4bcf1ef80649c75d4..aea450a196d55a1b718645dcf0b29a1c52d7dc85 100644 (file)
--- a/src/gui.h
+++ b/src/gui.h
 # include "photon/PxProto.h"
 #endif
 
-/*
- * On some systems, when we compile with the GUI, we always use it.  On Mac
- * there is no terminal version, and on Windows we can't figure out how to
- * fork one off with :gui.
- */
-#if defined(FEAT_GUI_MSWIN) || (defined(FEAT_GUI_MAC) && !defined(MACOS_X_UNIX))
-# define ALWAYS_USE_GUI
-#endif
-
 /*
  * On some systems scrolling needs to be done right away instead of in the
  * main loop.
index b3e1c2903ab976e387a66b8aa5b029eec128130a..01904570664a87b26719136ac3b51bec2d978cd6 100644 (file)
@@ -725,6 +725,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    774,
 /**/
     773,
 /**/