Re: with-slots usage question
"Robert P. Goldman" <[email protected]> Mon, 10 Nov 2003 13:48:37 -0600
| Newsgroups | gmane.lisp.clump |
|---|---|
| Message-ID | <[email protected]> |
>>>>> "Miles" == Miles Egan <[email protected]> writes: Miles> On Mon, 2003-11-10 at 11:00, Tim Moore wrote: >> On Monday, November 10, 2003, at 07:38 PM, Miles Egan wrote: >> >> > On Mon, 2003-11-10 at 10:15, Peter Seibel wrote: >> >> That's what packages are for :) Miles> They help, but there's still a lot of stuff in cl-user to Miles> clash with. Sure, but it's not clear that you should always be importing into CL-USER, yes? CL-USER is a kind of scratch package. If you're going to do something complex, where conflicts are an issue, maybe you need to make your own top-level package where you can more carefully control the imports (and possibly have stuff that shadows built-ins). Yes, I know it's a PITA, but sometimes it's the best one can do. R