aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2003-01-06 01:20:35 +0000
committerRichard M. Stallman2003-01-06 01:20:35 +0000
commit53ade5c75e44ae7c93fd363b9c957d2e5990990d (patch)
treea20162f08e747c6a0f2fdd940329acd6b0540a15
parent19c17c4ec58a7326e6394c00e526e614519e71aa (diff)
downloademacs-53ade5c75e44ae7c93fd363b9c957d2e5990990d.tar.gz
emacs-53ade5c75e44ae7c93fd363b9c957d2e5990990d.zip
(dired-recursive-deletes): Fix custom type.
-rw-r--r--lisp/dired.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index 700d1e25634..fd4ed845700 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -2046,10 +2046,11 @@ nil means no recursive deletes.
2046`top' means ask for each directory at top level, but delete its subdirectories 2046`top' means ask for each directory at top level, but delete its subdirectories
2047without asking. 2047without asking.
2048Anything else means ask for each directory." 2048Anything else means ask for each directory."
2049 :type '(choice :tag "Delete not empty directory" 2049 :type '(choice :tag "Delete non-empty directories"
2050 (const :tag "No. Only empty directories" nil) 2050 (const :tag "Yes" always)
2051 (const :tag "Ask for each directory" t) 2051 (const :tag "No--only delete empty directories" nil)
2052 (const :tag "Ask for each top directory only" top)) 2052 (const :tag "Confirm for each directory" t)
2053 (const :tag "Confirm for each top directory only" top))
2053 :group 'dired) 2054 :group 'dired)
2054 2055
2055;; Match anything but `.' and `..'. 2056;; Match anything but `.' and `..'.