comparison lisp/dired-aux.el @ 83231:549734260e34

Merged in changes from CVS trunk. Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-714 Update from CVS git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-271
author Karoly Lorentey <lorentey@elte.hu>
date Wed, 08 Dec 2004 22:20:27 +0000
parents 60bf7d203957
children 9e1a411c62e5 f2ebccfa87d4
comparison
equal deleted inserted replaced
83230:d8738586aaec 83231:549734260e34
1090 (save-excursion (forward-line 1) (point)))) 1090 (save-excursion (forward-line 1) (point))))
1091 (setq file (directory-file-name file)) 1091 (setq file (directory-file-name file))
1092 (dired-add-entry file (if (eq ?\040 marker) nil marker))))) 1092 (dired-add-entry file (if (eq ?\040 marker) nil marker)))))
1093 1093
1094 ;;; Copy, move/rename, making hard and symbolic links 1094 ;;; Copy, move/rename, making hard and symbolic links
1095
1096 (defcustom dired-recursive-copies nil
1097 "*Decide whether recursive copies are allowed.
1098 nil means no recursive copies.
1099 `always' means copy recursively without asking.
1100 `top' means ask for each directory at top level.
1101 Anything else means ask for each directory."
1102 :type '(choice :tag "Copy directories"
1103 (const :tag "No recursive copies" nil)
1104 (const :tag "Ask for each directory" t)
1105 (const :tag "Ask for each top directory only" top)
1106 (const :tag "Copy directories without asking" always))
1107 :group 'dired)
1108 1095
1109 (defcustom dired-backup-overwrite nil 1096 (defcustom dired-backup-overwrite nil
1110 "*Non-nil if Dired should ask about making backups before overwriting files. 1097 "*Non-nil if Dired should ask about making backups before overwriting files.
1111 Special value `always' suppresses confirmation." 1098 Special value `always' suppresses confirmation."
1112 :type '(choice (const :tag "off" nil) 1099 :type '(choice (const :tag "off" nil)