A short time ago both slime-indent-sexp and slime-reindent-defun stopped working, the former giving the error message:
slime-repl-at-prompt-start-p: Wrong type argument: number-or-marker-p, nil
and the latter doing nothing whatever. Since I had just installed emacs-22.1, cedet and a couple other modes, I figured it was an interaction problem and would look at it later. Now is later and in the course of trying to debug this, I've reduced my .emacs to nothing but the following:
(setq inferior-lisp-program "/usr/local/bin/sbcl") (add-to-list 'load-path "/home/jcunningham/site/slime") (require 'slime) (slime-setup) (global-set-key "\C-cs" 'slime-selector)
And there is nothing in the load path (I moved everything elsewhere). Slime is straight out of CVS this morning. The breakage persists. So its starting to look like a problem in slime or between slime and emacs-22.1.
Has anyone else run into this?
--Jeff
So the indentation bindings C-c M-q and C-M-q work for everyone right now? With emacs 22.1? Or no one has any interest in these? --Jeff
Jeff Cunningham wrote:
A short time ago both slime-indent-sexp and slime-reindent-defun stopped working, the former giving the error message:
slime-repl-at-prompt-start-p: Wrong type argument: number-or-marker-p, nil
and the latter doing nothing whatever. Since I had just installed emacs-22.1, cedet and a couple other modes, I figured it was an interaction problem and would look at it later. Now is later and in the course of trying to debug this, I've reduced my .emacs to nothing but the following:
(setq inferior-lisp-program "/usr/local/bin/sbcl") (add-to-list 'load-path "/home/jcunningham/site/slime") (require 'slime) (slime-setup) (global-set-key "\C-cs" 'slime-selector)
And there is nothing in the load path (I moved everything elsewhere). Slime is straight out of CVS this morning. The breakage persists. So its starting to look like a problem in slime or between slime and emacs-22.1.
Has anyone else run into this?
--Jeff _______________________________________________
Jeff Cunningham jeffrey@cunningham.net writes:
So the indentation bindings C-c M-q and C-M-q work for everyone right now? With emacs 22.1? Or no one has any interest in these? --Jeff
Yes, it's broken. There's a patch by Andreas Fuchs on the mailinglist.
-T.
Tobias C. Rittweiler wrote:
Jeff Cunningham jeffrey@cunningham.net writes:
So the indentation bindings C-c M-q and C-M-q work for everyone right now? With emacs 22.1? Or no one has any interest in these? --Jeff
Yes, it's broken. There's a patch by Andreas Fuchs on the mailinglist.
-T.
Ah, I missed that one. The patch works great. Thanks.
-Jeff