summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2007-08-15 18:08:50 +0000
committervimboss <devnull@localhost>2007-08-15 18:08:50 +0000
commit5f508f5d99388be6dfddef349ed63b337fba79a0 (patch)
treef696da94e3414ac1699033dc5bd122daf941fc86
parent5d141d99d34af8b3430f191502e062b755932752 (diff)
downloadvim-5f508f5d99388be6dfddef349ed63b337fba79a0.tar.gz
updated for version 7.1-078v7.1.078v7-1-078
-rw-r--r--src/gui.c2
-rw-r--r--src/ui.c6
-rw-r--r--src/version.c2
3 files changed, 6 insertions, 4 deletions
diff --git a/src/gui.c b/src/gui.c
index a6e76555..4516b695 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -5117,7 +5117,7 @@ gui_handle_drop(x, y, modifiers, fnames, count)
p = vim_strsave_escaped(fnames[i], (char_u *)"\\ \t\"|");
# endif
if (p != NULL)
- add_to_input_buf(p, (int)STRLEN(p));
+ add_to_input_buf_csi(p, (int)STRLEN(p));
vim_free(p);
vim_free(fnames[i]);
}
diff --git a/src/ui.c b/src/ui.c
index 09dcb475..5a8c37d8 100644
--- a/src/ui.c
+++ b/src/ui.c
@@ -1603,8 +1603,6 @@ set_input_buf(p)
#if defined(FEAT_GUI) || defined(FEAT_MOUSE_GPM) \
|| defined(FEAT_XCLIPBOARD) || defined(VMS) \
|| defined(FEAT_SNIFF) || defined(FEAT_CLIENTSERVER) \
- || (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \
- || defined(FEAT_MENU))) \
|| defined(PROTO)
/*
* Add the given bytes to the input buffer
@@ -1630,7 +1628,9 @@ add_to_input_buf(s, len)
}
#endif
-#if (defined(FEAT_XIM) && defined(FEAT_GUI_GTK)) \
+#if ((defined(FEAT_XIM) || defined(FEAT_DND)) && defined(FEAT_GUI_GTK)) \
+ || defined(FEAT_GUI_MSWIN) \
+ || defined(FEAT_GUI_MAC) \
|| (defined(FEAT_MBYTE) && defined(FEAT_MBYTE_IME)) \
|| (defined(FEAT_GUI) && (!defined(USE_ON_FLY_SCROLL) \
|| defined(FEAT_MENU))) \
diff --git a/src/version.c b/src/version.c
index ad8f6b8b..5f8faf87 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 */
/**/
+ 78,
+/**/
77,
/**/
76,