warning messages
Hello,
How can I get
rid of compiler warning messages?
In the load file I do the following:
(setf *load-verbose* ())
(setf *compile-verbose* ())
(setf compiler::*compiler-warnings* ())
This works fine (i.e. I don't get the messages) if I open the file and evaluate it by hand.
If I, however, I load the file from a menu, then it I get all the compiler warning messages even if these are turned off in the load file.
Is the load file, when loaded from a menu, in another context than if I load it
by hand?
In the load file I do the following:
(setf *load-verbose* ())
(setf *compile-verbose* ())
(setf compiler::*compiler-warnings* ())
This works fine (i.e. I don't get the messages) if I open the file and evaluate it by hand.
If I, however, I load the file from a menu, then it I get all the compiler warning messages even if these are turned off in the load file.
Is the load file, when loaded from a menu, in another context than if I load it
by hand?
Mikael