# HG changeset patch # User Bram Moolenaar # Date 1319621785 -7200 # Node ID 72528c5eb87ea315a7c1a48f7734d1717c28820f # Parent 37ecb8ff4560aac283fb9b1e45510c8d5a0f513b updated for version 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. diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c --- a/src/gui_gtk_x11.c +++ b/src/gui_gtk_x11.c @@ -3081,7 +3081,7 @@ gui_gtk_set_dnd_targets(void) for (i = 0; i < (int)N_DND_TARGETS; ++i) { - if (!clip_html && selection_targets[i].info == TARGET_HTML) + if (!clip_html && dnd_targets[i].info == TARGET_HTML) n_targets--; else targets[j++] = dnd_targets[i]; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 347, +/**/ 346, /**/ 345,