emacs-diffs
[Top][All Lists]
Advanced

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

master dcee64d4bf: Fix defcustom in last change


From: Po Lu
Subject: master dcee64d4bf: Fix defcustom in last change
Date: Thu, 16 Jun 2022 02:42:01 -0400 (EDT)

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

    Fix defcustom in last change
    
    * lisp/x-dnd.el (x-dnd-use-offix-drop): Fix defcustom.
---
 lisp/x-dnd.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el
index 3b15eb432e..52f7340657 100644
--- a/lisp/x-dnd.el
+++ b/lisp/x-dnd.el
@@ -115,9 +115,9 @@ If the symbol `files', use the OffiX protocol when dropping
 files, and the fallback drop method (which is used with programs
 like xterm) for text."
   :version "29.1"
-  :type '(choice (const "Don't use the OffiX protocol for drag-and-drop")
-                 (const "Only use the OffiX protocol to drop files")
-                 (const "Use the OffiX protocol for both files and text"))
+  :type '(choice (const :tag "Don't use the OffiX protocol for drag-and-drop" 
nil)
+                 (const :tag "Only use the OffiX protocol to drop files" files)
+                 (const :tag "Use the OffiX protocol for both files and text" 
t))
   :group 'x)
 
 ;; Internal variables



reply via email to

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