From: Alan Third Date: Wed, 22 Nov 2017 16:44:38 +0000 (+0000) Subject: Fix incorrect interaction of drag/drop and double click (bug#29121) X-Git-Tag: emacs-26.0.91~265 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=292c09ff6db4bba1655bbb3160e859fef59ab34b;p=emacs.git Fix incorrect interaction of drag/drop and double click (bug#29121) * src/nsterm.m (EmacsView::performDragOperation): Drag and drop doesn't use ns-input-file. --- diff --git a/src/nsterm.m b/src/nsterm.m index cf32a5e8015..59a42eed887 100644 --- a/src/nsterm.m +++ b/src/nsterm.m @@ -8129,8 +8129,6 @@ not_in_argv (NSString *arg) emacs_event->kind = DRAG_N_DROP_EVENT; XSETINT (emacs_event->x, x); XSETINT (emacs_event->y, y); - ns_input_file = append2 (ns_input_file, - build_string ([file UTF8String])); emacs_event->modifiers = modifiers; emacs_event->arg = list2 (Qfile, build_string ([file UTF8String])); EV_TRAILER (theEvent);