[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: do-xxx-symbols
- To: RAM@CMU-CS-C.ARPA
- Subject: Re: do-xxx-symbols
- From: Charles Hedrick <HEDRICK@RUTGERS.ARPA>
- Date: Mon, 04 Mar 1985 23:05:00 -0000
- Cc: common-lisp@SU-AI.ARPA
- In-reply-to: Message from "Rob MacLachlan <RAM@CMU-CS-C.ARPA>" of 4 Mar 85 12:33:00 EST
My current implementation is the following:
DO-ALL-SYMBOLS - all symbols in all packages
DO-MOST-SYMBOLS - all symbols in all packages except not internals in
LISP or COMPILER (which I claim the user is not interested in
seeing in many cases)
DO-SYMBOLS - all symbols in the package mentioned
DO-ACCESSIBLE-SYMBOLS - all symbols in the package, and all externals
in used packages. No attempt to remove shadowed symbols.
APROPOS
if package is omitted or NIL: DO-MOST-SYMBOLS
if package is T: DO-ALL-SYMBOLS
otherwise: DO-ACCESSIBLE-SYMBOLS
-------