]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix namespace problem in dired-aux.el
authorStefan Kangas <stefan@marxist.se>
Thu, 4 Aug 2022 10:14:10 +0000 (12:14 +0200)
committerStefan Kangas <stefan@marxist.se>
Thu, 4 Aug 2022 10:15:00 +0000 (12:15 +0200)
* lisp/dired-aux.el (dired-minibuffer-default-add-shell-commands):
Rename from 'minibuffer-default-add-dired-shell-commands'.  Retain
old name as an obsolete alias.

lisp/dired-aux.el

index bb24954386b0f1510efc03d7ae72551ea963f512..c8de2669ea374e6f52bfe40ffe3911302c339e30 100644 (file)
@@ -760,7 +760,7 @@ with a prefix argument."
 
 (defvar dired-aux-files)
 
-(defun minibuffer-default-add-dired-shell-commands ()
+(defun dired-minibuffer-default-add-shell-commands ()
   "Return a list of all commands associated with current dired files.
 This function is used to add all related commands retrieved by `mailcap'
 to the end of the list of defaults just after the default value."
@@ -787,7 +787,7 @@ offer a smarter default choice of shell command."
       (lambda ()
        (setq-local dired-aux-files files)
        (setq-local minibuffer-default-add-function
-                   #'minibuffer-default-add-dired-shell-commands))
+                    #'dired-minibuffer-default-add-shell-commands))
     (setq prompt (format prompt (dired-mark-prompt arg files)))
     (if (functionp 'dired-guess-shell-command)
        (dired-mark-pop-up nil 'shell files
@@ -3529,6 +3529,9 @@ in the Dired buffer."
         (setq model (vc-checkout-model backend only-files-list))))
     (list backend files only-files-list state model)))
 
+(define-obsolete-function-alias 'minibuffer-default-add-dired-shell-commands
+  #'dired-minibuffer-default-add-shell-commands "29.1")
+
 \f
 (provide 'dired-aux)