[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[CAL@THINK-AQUINAS.ARPA: packages and common lisp (yuk)]



This may be relevant to Common Lispers:

    Date: Mon, 17 Mar 86 20:29 EST
    From: Cliff Lasser <CAL@THINK-AQUINAS.ARPA>
    
	Date: Mon, 17 Mar 86 12:55 EST
	From: Guy Steele <gls@THINK-AQUINAS.ARPA>
    
	    Date: Mon, 17 Mar 86 04:52 EST
	    From: Cliff Lasser <CAL@THINK-AQUINAS.ARPA>
    
    
	    It appears that CL:MAKE-PACKAGE makes it necessary to refer to unexported
	    symbols of that package as FOO::BAR as opposed to FOO:BAR.  Is there anyway
	    to tell CL that ALL symbols of a package should be exported so that the
	    behavior is the same as ZL:MAKE-PACKAGE?
    
	    Thanx  -Cliff
    
	Apparently not.  About the best you can do is, at some appropriately
	late point, (do-symbols (x pkg) (export x pkg)).
	--Guy
    
    UGH