mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Show friendly message after package install
* lisp/emacs-lisp/package.el (package-install): Once we know the package has successfully been installed using the `package-install` command, instead of relying on the compile "Done" message, give a message that tells the user that the package has been installed. (Bug#21857) Copyright-paperwork-exempt: yes
This commit is contained in:
parent
c0fcbd2c11
commit
4a94881345
1 changed files with 2 additions and 1 deletions
|
|
@ -2081,7 +2081,8 @@ to install it but still mark it as selected."
|
|||
(package-compute-transaction () (list (list pkg))))))
|
||||
(progn
|
||||
(package-download-transaction transaction)
|
||||
(package--quickstart-maybe-refresh))
|
||||
(package--quickstart-maybe-refresh)
|
||||
(message "Package `%s' installed." name))
|
||||
(message "`%s' is already installed" name))))
|
||||
|
||||
(defun package-strip-rcs-id (str)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue