[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Hard to debug with (load nomessage)
From: |
Kevin Rodgers |
Subject: |
Re: Hard to debug with (load nomessage) |
Date: |
Wed, 20 Mar 2002 12:22:53 -0700 |
Järneström Jonas wrote:
> My point is thus that using (load nomessage) if you do a lot of
> loading in your application is potentially dangerous from a debugging
> point of view. I think this should be stated in the on-line doc for (load)
If you set things up like this:
(defvar load-nomessage nil)
(load "library-1" nil load-nomessage)
...
(load "library-N" nil load-nomessage)
Then your users get the behavior you want, and you can debug by setq'ing
load-nomessage.
--
Kevin Rodgers <kevinr@ihs.com>