home *** CD-ROM | disk | FTP | other *** search
- Excerpt of message (sent 13 April 1993) by Andy Whitcroft:
-
- andy> Is there any simple way to suppress all `message' output during a
- andy> load of a lisp file. I am loading pending delete and under the new
- andy> version for 19.6 it now is verbose. There is no way to do this in
- andy> the pending delete code (beyond modifying it). I therfore wonder if
- andy> it is possible to suppress all messages for a particular (load ...)?
-
- I wrote myself the following little utility to do just that :
-
- ;; Quiet library load utility
- (defun load-quietly (file &optional directory)
- "Loads a lisp FILE found in (optional) DIRECTORY without broadcast."
- (load (concat directory file) nil t))
-
- --
- Regards, David
-
-