]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.347
- new
[packages/vim.git] / 7.3.347
CommitLineData
59ab3540
AM
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.347
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.347
11Problem: When dropping text from a browser on Vim it receives HTML even
12 though "html" is excluded from 'clipboard'. (Andrei Avk)
13Solution: Fix the condition for TARGET_HTML.
14Files: src/gui_gtk_x11.c
15
16
17*** ../vim-7.3.346/src/gui_gtk_x11.c 2011-08-10 17:44:41.000000000 +0200
18--- src/gui_gtk_x11.c 2011-10-23 20:56:38.000000000 +0200
19***************
20*** 3081,3087 ****
21
22 for (i = 0; i < (int)N_DND_TARGETS; ++i)
23 {
24! if (!clip_html && selection_targets[i].info == TARGET_HTML)
25 n_targets--;
26 else
27 targets[j++] = dnd_targets[i];
28--- 3081,3087 ----
29
30 for (i = 0; i < (int)N_DND_TARGETS; ++i)
31 {
32! if (!clip_html && dnd_targets[i].info == TARGET_HTML)
33 n_targets--;
34 else
35 targets[j++] = dnd_targets[i];
36*** ../vim-7.3.346/src/version.c 2011-10-20 21:58:20.000000000 +0200
37--- src/version.c 2011-10-26 11:35:23.000000000 +0200
38***************
39*** 716,717 ****
40--- 716,719 ----
41 { /* Add new patch number below this line */
42+ /**/
43+ 347,
44 /**/
45
46--
47I AM THANKFUL...
48...for a lawn that needs mowing, windows that need cleaning
49and gutters that need fixing because it means I have a home.
50
51 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
52/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
53\\\ an exciting new programming language -- http://www.Zimbu.org ///
54 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.026488 seconds and 4 git commands to generate.