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
index e2f9fc5..0912609 100644
--- a/src/gui_gtk_x11.c
+++ b/src/gui_gtk_x11.c
@@ -3081,7 +3081,7 @@
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];