
11 Sep
2007
11 Sep
'07
10:07 a.m.
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, -T.