From bd84ab898615b2f2b5e2b7eff42916f487b5b650 Mon Sep 17 00:00:00 2001 From: Daniel Kochmanski Date: Tue, 2 May 2017 15:21:12 +0200 Subject: [PATCH] help: add package local nicknames doc --- src/doc/help.lsp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/src/doc/help.lsp b/src/doc/help.lsp index c1f2f0753..255afda12 100644 --- a/src/doc/help.lsp +++ b/src/doc/help.lsp @@ -2275,6 +2275,28 @@ built-in packages: system system internal symbols. Has nicknames SYS and SI. compiler system internal symbols for the ECL compiler.") +(docfun ext:package-local-nicknames function + (package-designator) " +Returns an alist of (LOCAL-NICKNAME . ACTUAL-PACKAGE) +describing the nicknames local to the designated package.") + +(docfun ext:package-locally-nicknamed-by-list function + (package-designator) " +Returns a list of packages which have a local nickname for the +designated package.") + +(docfun ext:add-package-local-nickname function + (local-nickname actul-package &optional package-designator) " +Adds LOCAL-NICKNAME for ACTUAL-PACKAGE in the designated package, +defaulting to current package. LOCAL-NICKNAME must be a string +designator, and ACTUAL-PACKAGE must be a package designator.") + +(docfun ext:remove-package-local-nickname function + (old-nickname &optional package-designator) " +If the designated package had OLD-NICKNAME as a local nickname +for another package, it is removed. Returns true if the nickname +existed and was removed, and NIL otherwise.") + (docfun package-name function (package) " Returns the name of PACKAGE as a string.")