Hi,
A basic question I'm afraid - I am using xemacs on Gentoo Linux.
My init.el looks like this:
(setq inferior-lisp-program "/usr/bin/sbcl") (add-to-list 'load-path "/home/keith/bin/slime") (require 'slime) (add-hook 'lisp-mode-hook (lambda () (slime-mode t))) (add-hook 'inferior-lisp-mode-hook (lambda () (inferior-slime-mode t))) (setq inferior-lisp-program "sbcl")
and I get"Cannot open load file: inf-lisp", which I assume comes from (require 'inf-lisp) in slime.el
I have installed ilisp.
Any pointers more than welcome,
Cheers, Keith
Keith keith@kmantell.freeserve.co.uk writes:
and I get"Cannot open load file: inf-lisp", which I assume comes from (require 'inf-lisp) in slime.el
I have installed ilisp.
Any pointers more than welcome,
XEmacs is often distributed as "base" version and additional packages can in some way be added later. 'inf-lisp' is one of the additional packages. I usually install the 'xemacs-sumo' tarball which includes all and every package. Gentoo may have something similar.
It is a bit strange though, that ILisp works. ILisp also requires inf-lisp.
In general it is better do disable ILisp when you use SLIME.
Helmut.
Helmut,
Thanks for the pointer - indeed I have found that Gentoo has something called xemacs-packagae-sumo. That has solved the problem.
Best wishes, Keith
Helmut Eller wrote:
XEmacs is often distributed as "base" version and additional packages can in some way be added later. 'inf-lisp' is one of the additional packages. I usually install the 'xemacs-sumo' tarball which includes all and every package. Gentoo may have something similar.
It is a bit strange though, that ILisp works. ILisp also requires inf-lisp.
In general it is better do disable ILisp when you use SLIME.
Helmut.