| Allegro CL version 10.1 New since the initial 10.1 release. |
Arguments: local-nickname &optional housing-package
If the housing package designated by housing-package has
local-nickname (a string designator) as a
local nickname, it is removed and t
is
returned, otherwise nil
is returned.
cl-user(18): (package-local-nicknames :hpack) (("p-one" . #<The p1 package>) ("p-two" . #<The p2 package>) ("p-one-a" . #<The p1 package>)) cl-user(19): (remove-package-local-nickname :p-one-a :hpack) t cl-user(20): (package-local-nicknames :hpack) (("p-one" . #<The p1 package>) ("p-two" . #<The p2 package>)) cl-user(21): (remove-package-local-nickname :p-three :hpack) nil cl-user(22): (package-local-nicknames :hpack) (("p-one" . #<The p1 package>) ("p-two" . #<The p2 package>)) cl-user(23):
See Package-local Nicknames in packages.htm for more information in package-local nicknames.
Copyright (c) 1998-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page is new in the 10.1 release.
Created 2019.8.20.
| Allegro CL version 10.1 New since the initial 10.1 release. |