aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2003-01-06 01:20:35 +0000
committerRichard M. Stallman <[email protected]>2003-01-06 01:20:35 +0000
commit53ade5c75e44ae7c93fd363b9c957d2e5990990d (patch)
treea20162f08e747c6a0f2fdd940329acd6b0540a15 /lisp
parent19c17c4ec58a7326e6394c00e526e614519e71aa (diff)
(dired-recursive-deletes): Fix custom type.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/dired.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index 700d1e2563..fd4ed84570 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -2046,10 +2046,11 @@ nil means no recursive deletes.
`top' means ask for each directory at top level, but delete its subdirectories
without asking.
Anything else means ask for each directory."
- :type '(choice :tag "Delete not empty directory"
- (const :tag "No. Only empty directories" nil)
- (const :tag "Ask for each directory" t)
- (const :tag "Ask for each top directory only" top))
+ :type '(choice :tag "Delete non-empty directories"
+ (const :tag "Yes" always)
+ (const :tag "No--only delete empty directories" nil)
+ (const :tag "Confirm for each directory" t)
+ (const :tag "Confirm for each top directory only" top))
:group 'dired)
;; Match anything but `.' and `..'.