Mercurial > emacs
changeset 49068:a6b76c097634
(dired-recursive-deletes): Fix custom type.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 06 Jan 2003 01:20:35 +0000 |
parents | c0e98fdf377f |
children | 50db4854d2eb |
files | lisp/dired.el |
diffstat | 1 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/dired.el Mon Jan 06 01:19:59 2003 +0000 +++ b/lisp/dired.el Mon Jan 06 01:20:35 2003 +0000 @@ -2046,10 +2046,11 @@ `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 `..'.