listAlias
listAlias( [s_aliasName] ) =>s_functionName/l_propertyList/nil
Description
Prints a (property) list of all current aliases and associated function symbols, or the function symbol for which the given alias is defined.
Arguments
Value Returned
Examples
;; Defines ’lf’ and ’e’ as the aliases of the listFunctions()}
;; and edit() functions, respectively
alias(lf listFunctions) => lf
alias(e edit) => e
;; Prints the name of the function that ’lf’ aliases to
listAlias(’lf) => listFunctions
;; Prints A property list of all current aliases and associated
;; function symbols
listAlias() => (e edit lf listFunctions)
;; The given alias name is not an alias for any function
listAlias(’bogus) => nil
;; Remove ’lf’ and ’e’ as aliases
unalias(lf) => (lf)
unalias(e) => (e)
;; There’s no alias defines for any function anymore listAlias() => nil
Related Topics
Return to top