Skip to content
Snippets Groups Projects
Commit 789b75a8 authored by Eric Timmons's avatar Eric Timmons Committed by Robert Goldman
Browse files

Revive the call to INSTALL-PACKAGE-LOCAL-NICKNAMES from !167

It got lost in an earlier rebase of this branch.
parent cb00a919
No related branches found
No related tags found
No related merge requests found
...@@ -636,13 +636,15 @@ or when loading the package is optional." ...@@ -636,13 +636,15 @@ or when loading the package is optional."
#+package-local-nicknames #+package-local-nicknames
(defun install-package-local-nicknames (destination-package new-nicknames) (defun install-package-local-nicknames (destination-package new-nicknames)
;; First, remove all package-local nicknames. (We'll reinstall any desired ones later.) ;; First, remove all package-local nicknames. (We'll reinstall any desired ones later.)
(dolist (pair-to-remove (package-local-nicknames destination-package)) (dolist (pair-to-remove (uiop/package-local-nicknames:package-local-nicknames destination-package))
(remove-package-local-nickname (string (car pair-to-remove)) destination-package)) (uiop/package-local-nicknames:remove-package-local-nickname
(string (car pair-to-remove)) destination-package))
;; Then, install all desired nicknames. ;; Then, install all desired nicknames.
(loop :for (nickname package) :in new-nicknames (loop :for (nickname package) :in new-nicknames
:do (add-package-local-nickname (string nickname) :do (uiop/package-local-nicknames:add-package-local-nickname
(find-package package) (string nickname)
destination-package))) (find-package package)
destination-package)))
(defun ensure-package (name &key (defun ensure-package (name &key
nicknames documentation use nicknames documentation use
...@@ -694,15 +696,7 @@ or when loading the package is optional." ...@@ -694,15 +696,7 @@ or when loading the package is optional."
(rename-package package package-name nicknames) (rename-package package package-name nicknames)
;; Handle local nicknames ;; Handle local nicknames
#+package-local-nicknames #+package-local-nicknames
(let* ((existing-nicknames (mapcar #'(lambda (x) (string (car x))) (install-package-local-nicknames package local-nicknames)
(uiop/package-local-nicknames:package-local-nicknames package)))
(new-nicknames (mapcar #'(lambda (x) (string (first x))) local-nicknames))
(to-remove (set-difference existing-nicknames new-nicknames :test 'equal)))
(map () #'(lambda (x) (uiop/package-local-nicknames:remove-package-local-nickname x package))
to-remove)
(loop :for (nick-str package-str) :in local-nicknames
:do (uiop/package-local-nicknames:add-package-local-nickname
nick-str package-str package)))
(dolist (name unintern) (dolist (name unintern)
(multiple-value-bind (existing status) (find-symbol name package) (multiple-value-bind (existing status) (find-symbol name package)
(when status (when status
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment