Merge from origin/emacs-26
614cc65
; * lisp/simple.el (line-move-visual): Fix typo.d2ad4ba
Do not consider external packages to be removable (Bug#27822)ec0995c
* src/alloc.c: Remove obsolete comments.ec6f588
Better support utf-8-with-signature and utf-8-hfs in HTMLeb026a8
Don't use -Wabi compiler option
This commit is contained in:
commit
d113142a8b
5 changed files with 25 additions and 7 deletions
|
@ -1754,6 +1754,15 @@ if it is still empty."
|
|||
(indirect indirect-deps)
|
||||
(t (delete-dups (append direct-deps indirect-deps))))))
|
||||
|
||||
(defun package--user-installed-p (package)
|
||||
"Return non-nil if PACKAGE is a user-installed package.
|
||||
PACKAGE is the package name, a symbol. Check whether the package
|
||||
was installed into `package-user-dir' where we assume to have
|
||||
control over."
|
||||
(let* ((pkg-desc (cadr (assq package package-alist)))
|
||||
(dir (package-desc-dir pkg-desc)))
|
||||
(file-in-directory-p dir package-user-dir)))
|
||||
|
||||
(defun package--removable-packages ()
|
||||
"Return a list of names of packages no longer needed.
|
||||
These are packages which are neither contained in
|
||||
|
@ -1763,7 +1772,9 @@ These are packages which are neither contained in
|
|||
;; `p' and its dependencies are needed.
|
||||
append (cons p (package--get-deps p)))))
|
||||
(cl-loop for p in (mapcar #'car package-alist)
|
||||
unless (memq p needed)
|
||||
unless (or (memq p needed)
|
||||
;; Do not auto-remove external packages.
|
||||
(not (package--user-installed-p p)))
|
||||
collect p)))
|
||||
|
||||
(defun package--used-elsewhere-p (pkg-desc &optional pkg-list all)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue