,restart-inferior-lisp has stopped working recently. The patch below seems to fix it.
Andras
diff -u -r1.418 slime.el --- slime.el 7 Nov 2004 15:07:00 -0000 1.418 +++ slime.el 9 Nov 2004 01:26:45 -0000 @@ -3095,7 +3095,7 @@ (sit-for 0 20)) (let* ((args (mapconcat #'identity (process-command proc) " ")) (buffer (buffer-name (process-buffer proc))) - (new-proc (slime-start-lisp args buffer))) + (new-proc (slime-start-lisp args buffer (slime-init-command)))) (slime-inferior-connect new-proc))))) (:one-liner "Restart *inferior-lisp* and reconnect SLIME."))
Andras Simon andras@renyi.hu writes:
,restart-inferior-lisp has stopped working recently. The patch below seems to fix it.
Yes, the patch looks right. Please, commit it.
Helmut.