[vim] - patchlevel 347

Karsten Hopp karsten at fedoraproject.org
Fri Dec 23 21:30:48 UTC 2011


commit 8fc669a0ffd8b433a191536bf93488059a0e37f6
Author: Karsten Hopp <karsten at redhat.com>
Date:   Fri Dec 23 22:30:46 2011 +0100

    - patchlevel 347

 7.3.347 |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 54 insertions(+), 0 deletions(-)
---
diff --git a/7.3.347 b/7.3.347
new file mode 100644
index 0000000..85b0feb
--- /dev/null
+++ b/7.3.347
@@ -0,0 +1,54 @@
+To: vim_dev at googlegroups.com
+Subject: Patch 7.3.347
+Fcc: outbox
+From: Bram Moolenaar <Bram at moolenaar.net>
+Mime-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+------------
+
+Patch 7.3.347
+Problem:    When dropping text from a browser on Vim it receives HTML even
+	    though "html" is excluded from 'clipboard'. (Andrei Avk)
+Solution:   Fix the condition for TARGET_HTML.
+Files:	    src/gui_gtk_x11.c
+
+
+*** ../vim-7.3.346/src/gui_gtk_x11.c	2011-08-10 17:44:41.000000000 +0200
+--- src/gui_gtk_x11.c	2011-10-23 20:56:38.000000000 +0200
+***************
+*** 3081,3087 ****
+  
+      for (i = 0; i < (int)N_DND_TARGETS; ++i)
+      {
+! 	if (!clip_html && selection_targets[i].info == TARGET_HTML)
+  	    n_targets--;
+  	else
+  	    targets[j++] = dnd_targets[i];
+--- 3081,3087 ----
+  
+      for (i = 0; i < (int)N_DND_TARGETS; ++i)
+      {
+! 	if (!clip_html && dnd_targets[i].info == TARGET_HTML)
+  	    n_targets--;
+  	else
+  	    targets[j++] = dnd_targets[i];
+*** ../vim-7.3.346/src/version.c	2011-10-20 21:58:20.000000000 +0200
+--- src/version.c	2011-10-26 11:35:23.000000000 +0200
+***************
+*** 716,717 ****
+--- 716,719 ----
+  {   /* Add new patch number below this line */
++ /**/
++     347,
+  /**/
+
+-- 
+I AM THANKFUL...
+...for a lawn that needs mowing, windows that need cleaning
+and gutters that need fixing because it means I have a home.
+
+ /// Bram Moolenaar -- Bram at Moolenaar.net -- http://www.Moolenaar.net   \\\
+///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
+\\\  an exciting new programming language -- http://www.Zimbu.org        ///
+ \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///


More information about the scm-commits mailing list