
11 Sep
2007
11 Sep
'07
11:22 a.m.
Tobias C. Rittweiler wrote:
Raymond Toy <toy.raymond@gmail.com> writes:
Should slime-setup take care to load contrib/slime-typeout-frame.el is loaded? Or is that the user's responsibility?
The latter. Putting something like the following into your ~/.emacs, should do the trick:
(require 'slime)
(add-hook 'slime-load-hook (lambda () (require 'slime-fancy) (require 'slime-typeout-frame) (require 'slime-asdf) (require 'slime-tramp) ))
(slime-setup :autodoc t :typeout-frame t)
HTH,
Yes, thanks. One thing: I had to put the require after setting the load-hook. Then everything worked just fine. Thanks, Ray