Hello,
if I do (require 'slime) in XEmacs a *Compile-Log-Show* buffer opens. This is very annoying. At the moment I use (delete-other-window) in my init.el, but how can I find the real problem?
Regards,
Julian Stecklina der_julian@web.de writes:
if I do (require 'slime) in XEmacs a *Compile-Log-Show* buffer opens. This is very annoying. At the moment I use (delete-other-window) in my init.el, but how can I find the real problem?
We byte-compile some functions when slime is loaded and some Emacs versions display the log buffer. Not sure what the right fix is. We could rewrite the functions so that they don't produce compiler messages (might be difficult) or perhaps there are variables to suppress the log buffer. Suggestions welcome.
Helmut.
Helmut Eller e9626484@stud3.tuwien.ac.at writes:
We byte-compile some functions when slime is loaded and some Emacs versions display the log buffer. Not sure what the right fix is. We could rewrite the functions so that they don't produce compiler messages (might be difficult) or perhaps there are variables to suppress the log buffer. Suggestions welcome.
Fixed. I wrapped the `byte-compile' calls in `save-window-excursion'.