diff options
author | Po Lu <luangruo@yahoo.com> | 2022-06-16 14:41:21 +0800 |
---|---|---|
committer | Po Lu <luangruo@yahoo.com> | 2022-06-16 14:41:21 +0800 |
commit | dcee64d4bf2751a6b67716e2e43267d9e73640cd (patch) | |
tree | 2e1e5dcfcf03032233a86f0d3cb127c81a66e704 | |
parent | e5dbe60e3cfbdfd3a3e1a045e8557a92cb146af0 (diff) | |
download | emacs-dcee64d4bf2751a6b67716e2e43267d9e73640cd.tar.gz emacs-dcee64d4bf2751a6b67716e2e43267d9e73640cd.tar.bz2 emacs-dcee64d4bf2751a6b67716e2e43267d9e73640cd.zip |
Fix defcustom in last change
* lisp/x-dnd.el (x-dnd-use-offix-drop): Fix defcustom.
-rw-r--r-- | lisp/x-dnd.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/x-dnd.el b/lisp/x-dnd.el index 3b15eb432e3..52f7340657a 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 |