Prev: Why McCarthy writes about "symbolic expressions" and not "formulas"?
Next: Elements of Style in English
From: Haris Bogdanovi� on 2 May 2010 08:33 Hi. I have Emacs on windows that works with the following init.el file: ------------------------------------------------------------------------------------ (global-unset-key (kbd "M-d")) (global-unset-key (kbd "M-DEL")) (global-set-key (kbd "C-x e") 'slime-eval-buffer) (push "*Buffer List*" same-window-buffer-names) (modify-frame-parameters nil '((wait-for-wm . nil))) (autoload 'linum-mode "linum" "toggle line numbers on/off" t) (global-set-key (kbd "C-<f5>") 'linum-mode) (setq inferior-lisp-program "C:/lisp/clisp/clisp.exe") (add-to-list 'load-path "c:/lisp/slime") (add-to-list 'load-path "c:/lisp/slime/contrib") (require 'slime-autoloads) slime-setup '(slime-fancy)) (slime) (custom-set-variables '(blink-cursor-mode nil) '(cua-mode t nil (cua-base)) '(text-mode-hook (quote (text-mode-hook-identify)))) ----------------------------------------------------------------------------------- I decided to try Xemacs and copied this file to .xemacs folder. I got an error: slime autodoc doesn't work in Xemacs What should I change in init.el to get slime/clisp working in Xemacs ? Thanks
From: Raymond Toy on 2 May 2010 19:09 On 5/2/10 8:33 AM, Haris Bogdanovi wrote: > Hi. > > I have Emacs on windows that works with the following init.el file: > [snip] > > I decided to try Xemacs and copied this file to .xemacs folder. > > I got an error: > > slime autodoc doesn't work in Xemacs > > What should I change in init.el to get slime/clisp working in Xemacs ? It just means that slime autodoc doesn't work. Otherwise, it should work, with a few annoyances. If you want autodoc, you can grab a recent version of eldoc from emacs. Or just use emacs. Ray
From: Leo on 12 May 2010 03:26
On 2010-05-02 13:33 +0100, Haris Bogdanovi� wrote: > I decided to try Xemacs and copied this file to .xemacs folder. > > I got an error: > > slime autodoc doesn't work in Xemacs > > What should I change in init.el to get slime/clisp working in Xemacs ? Check the Commentary in slime.el. Leo |