Function package-nicknames

Syntax:

package-nicknames package nicknames

Arguments and Values:

package—a package designator.

nicknames—a list of strings.

Description:

11.2.0 14Returns the list of nickname strings for package, not including the name of package.

!!! Can it be "a" list instead of "the" list? Must it be cached? -kmp 25-Apr-91

Examples:

 (package-nicknames (make-package 'temporary
                                   :nicknames '("TEMP" "temp")))
→ ("temp" "TEMP") 

Side Effects:

None.

Affected By:

None.

Exceptional Situations:

Should signal an error of type type-error if package is not a package designator.

See Also:

None.

Notes:

None.