Just a heads up. In the latest version of slime (slime.el), the function slime-define-key has been deleted. You can get around this by defining it. I added the following to js-expander.el. note: slime-prefix-key has also been deleted.
(defun* slime-define-key (key command &key prefixed inferior) (when prefixed (setq key (concat "\C-c" key))) (define-key slime-mode-map key command))
andy peterson
Thanks for the heads-up Andrew! One thing I changed though is to now put the binding under slime-parent-map, so it works in the REPL too.
Vladimir
On Tue, Feb 3, 2009 at 4:44 PM, Andrew Peterson andy.arvid@gmail.com wrote:
Just a heads up. In the latest version of slime (slime.el), the function slime-define-key has been deleted. You can get around this by defining it. I added the following to js-expander.el. note: slime-prefix-key has also been deleted.
(defun* slime-define-key (key command &key prefixed inferior) (when prefixed (setq key (concat "\C-c" key))) (define-key slime-mode-map key command))
andy peterson
parenscript-devel mailing list parenscript-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel
parenscript-devel@common-lisp.net