[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
issue IN-PACKAGE-FUNCTIONALITY
- To: cperdue@Sun.COM
- Subject: issue IN-PACKAGE-FUNCTIONALITY
- From: Jon L White <jonl@lucid.com>
- Date: Mon, 5 Dec 88 18:47:26 PST
- Cc: cl-cleanup@sail.stanford.edu, cl-compiler@sail.stanford.edu
- In-reply-to: Cris Perdue's message of Wed, 30 Nov 88 17:59:13 PST <8812010159.AA15569@clam.sun.com>
re: It would be quite nice if the ANSI standard could do without the
current requirement that LOAD must interleave resolution of symbol
references and execution of top level forms. (p.182) . . .
My impression is that it would be within reason to eliminate this
requirement if we adopt DEFPACKAGE. Has that been considered?
No. The DEFPACKAGE proposal would have no bearing on this, since
the language is still going to include package effector functions
such as EXPORT, UNINTERN, etc. [The primary benefit of the DEFPACKAGE
proposal is to help a programmer remember not to "distribute" his
package definitions throught several files, and thus avoid differences
between loading the source and loading the compiled versions.]
As long as packages are really "first class" objects, we will be stuck
with the problem of sequencing on the package effector operations.
This is independent of whether or not the file being loaded is compiled.
My negative comments (on another issue) about "C-style loading" were
meant to highlight the distinction that LOADing a Lisp file is
semantically equivalent to running a bunch of user programs *** in
order ***; but loading a (compiled) C file is a primitive operation
much below that of the Lisp LOAD.
-- JonL --