comparison lisp/dired.el @ 69779:865de55024d5

(dired-dnd-protocol-alist): Mention that change does only apply to new buffers in doc string.
author Reiner Steib <Reiner.Steib@gmx.de>
date Mon, 03 Apr 2006 17:27:06 +0000
parents 180e3960a4f1
children d1bfd9018628
comparison
equal deleted inserted replaced
69778:6828bafcac8e 69779:865de55024d5
204 '(("^file:///" . dired-dnd-handle-local-file) 204 '(("^file:///" . dired-dnd-handle-local-file)
205 ("^file://" . dired-dnd-handle-file) 205 ("^file://" . dired-dnd-handle-file)
206 ("^file:" . dired-dnd-handle-local-file)) 206 ("^file:" . dired-dnd-handle-local-file))
207 "The functions to call when a drop in `dired-mode' is made. 207 "The functions to call when a drop in `dired-mode' is made.
208 See `dnd-protocol-alist' for more information. When nil, behave 208 See `dnd-protocol-alist' for more information. When nil, behave
209 as in other buffers." 209 as in other buffers. Changing this options is effective only for
210 new dired buffers."
210 :type '(choice (repeat (cons (regexp) (function))) 211 :type '(choice (repeat (cons (regexp) (function)))
211 (const :tag "Behave as in other buffers" nil)) 212 (const :tag "Behave as in other buffers" nil))
212 :version "22.1" 213 :version "22.1"
213 :group 'dired) 214 :group 'dired)
214 215