emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master 8fa1cdc1fa: ; Improve doc of `x-dnd-native-test-function'


From: Po Lu
Subject: master 8fa1cdc1fa: ; Improve doc of `x-dnd-native-test-function'
Date: Tue, 14 Jun 2022 07:50:40 -0400 (EDT)

branch: master
commit 8fa1cdc1faf901f45554e97843efd1f01adc2e92
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>

    ; Improve doc of `x-dnd-native-test-function'
    
    * src/xterm.c (syms_of_xterm): Improve doc.  Suggested by Eli
    Zaretskii <eliz@gnu.org>.
---
 src/xterm.c | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/src/xterm.c b/src/xterm.c
index 333520c8bc..2cc17b455d 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -27365,13 +27365,15 @@ argument to `x-begin-drag'.  */);
   Vx_dnd_targets_list = Qnil;
 
   DEFVAR_LISP ("x-dnd-native-test-function", Vx_dnd_native_test_function,
-    doc: /* Function called to determine return when dropping on Emacs itself.
-It should accept two arguments POS and ACTION, and return a symbol
-describing what to return from `x-begin-drag'.  POS is a mouse
-position list detailing the location of the drop, and ACTION is the
-action specified by the caller of `x-begin-drag'.
-
-If nil or a non-symbol value is returned, the drop will be
-cancelled.  */);
+    doc: /* Function that determines return value of drag-and-drop on Emacs 
frames.
+If the value is a function, `x-begin-drag' will call it with two
+arguments, POS and ACTION, where POS is a mouse position list
+that specifies the location of the drop, and ACTION is the
+action specified by the caller of `x-begin-drag'.  The function
+should return a symbol describing what to return from
+`x-begin-drag' if the drop happens on an Emacs frame.
+
+If the value is nil, or the function returns a value that is not
+a symbol, a drop on an Emacs frame will be canceled.  */);
   Vx_dnd_native_test_function = Qnil;
 }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]