# HG changeset patch # User Richard M. Stallman # Date 1041816035 0 # Node ID a6b76c097634fe7bd97506628e896707b508f616 # Parent c0e98fdf377f9f1de6b368710c1f8e2dcd48397e (dired-recursive-deletes): Fix custom type. diff -r c0e98fdf377f -r a6b76c097634 lisp/dired.el --- 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 `..'.