aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2004-11-22 16:53:41 +0000
committerRichard M. Stallman2004-11-22 16:53:41 +0000
commitfe02ba07643f773422679b37e480b3b3fdcb369a (patch)
treed38791a422edc9acb0b6708419267a53482e4640
parent5e684428e09882b4f5481fb7580b76094c214c89 (diff)
downloademacs-fe02ba07643f773422679b37e480b3b3fdcb369a.tar.gz
emacs-fe02ba07643f773422679b37e480b3b3fdcb369a.zip
(dired-recursive-copies): Moved from dired-aux.el.
-rw-r--r--lisp/dired.el13
1 files changed, 13 insertions, 0 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index de65b3b54ac..19ea0768e2b 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -3153,6 +3153,19 @@ To be called first in body of `dired-sort-other', etc."
3153 3153
3154;;;; Drag and drop support 3154;;;; Drag and drop support
3155 3155
3156(defcustom dired-recursive-copies nil
3157 "*Decide whether recursive copies are allowed.
3158nil means no recursive copies.
3159`always' means copy recursively without asking.
3160`top' means ask for each directory at top level.
3161Anything else means ask for each directory."
3162 :type '(choice :tag "Copy directories"
3163 (const :tag "No recursive copies" nil)
3164 (const :tag "Ask for each directory" t)
3165 (const :tag "Ask for each top directory only" top)
3166 (const :tag "Copy directories without asking" always))
3167 :group 'dired)
3168
3156(defun dired-dnd-test-function (window action types) 3169(defun dired-dnd-test-function (window action types)
3157 "The test function for drag and drop into dired buffers. 3170 "The test function for drag and drop into dired buffers.
3158WINDOW is where the mouse is when this function is called. It may be a frame 3171WINDOW is where the mouse is when this function is called. It may be a frame