emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/dired.el


From: Richard M . Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/dired.el
Date: Mon, 22 Nov 2004 11:59:42 -0500

Index: emacs/lisp/dired.el
diff -c emacs/lisp/dired.el:1.297 emacs/lisp/dired.el:1.298
*** emacs/lisp/dired.el:1.297   Mon Nov 22 05:07:07 2004
--- emacs/lisp/dired.el Mon Nov 22 16:53:41 2004
***************
*** 3153,3158 ****
--- 3153,3171 ----
  
  ;;;;  Drag and drop support
  
+ (defcustom dired-recursive-copies nil
+   "*Decide whether recursive copies are allowed.
+ nil means no recursive copies.
+ `always' means copy recursively without asking.
+ `top' means ask for each directory at top level.
+ Anything else means ask for each directory."
+   :type '(choice :tag "Copy directories"
+                (const :tag "No recursive copies" nil)
+                (const :tag "Ask for each directory" t)
+                (const :tag "Ask for each top directory only" top)
+                (const :tag "Copy directories without asking" always))
+   :group 'dired)
+ 
  (defun dired-dnd-test-function (window action types)
    "The test function for drag and drop into dired buffers.
  WINDOW is where the mouse is when this function is called.  It may be a frame




reply via email to

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