Hi guys,

I'm trying to load slime with clisp. It looks like it's loaded but I still get emacs with inferior-lisp
Code:
[1]> 
;; Loading file /home/xtd8865/.emacs.d/elisp/swank-loader.lisp ...
;; Loaded file /home/xtd8865/.emacs.d/elisp/swank-loader.lisp
;; Loading file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-backend.fas ...
;; Loaded file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-backend.fas
;; Loading file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/xref.fas ...
;; Loaded file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/xref.fas
;; Loading file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/metering.fas ...
;; Loaded file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/metering.fas
;; Loading file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-clisp.fas ...
WARNING: DEFUN/DEFMACRO: redefining function BREAK in
         /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-clisp.fas, was defined in
         /tmp/clisp-2.47/with-gcc-wall/condition.fas
WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<STANDARD-GENERIC-FUNCTION EMACS-INSPECT>
;; Loaded file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-clisp.fas
;; Loading file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-gray.fas ...
WARNING: The generic function #<STANDARD-GENERIC-FUNCTION STREAM-LINE-COLUMN> is being modified, but has already been called.
WARNING: The generic function #<STANDARD-GENERIC-FUNCTION STREAM-FORCE-OUTPUT> is being modified, but has already been called.
WARNING: The generic function #<STANDARD-GENERIC-FUNCTION STREAM-LINE-COLUMN> is being modified, but has already been called.
;; Loaded file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-gray.fas
;; Loading file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-match.fas ...
;; Loaded file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank-match.fas
;; Loading file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank.fas ...
;; Loaded file /home/xtd8865/.slime/fasl/2009-11-26/clisp-2.47-unix-pc386/swank.fas
WARNING: These Swank interfaces are unimplemented:
         (ACTIVATE-STEPPING ADD-FD-HANDLER ADD-SIGIO-HANDLER ALL-THREADS DISASSEMBLE-FRAME FIND-SOURCE-LOCATION
         INTERRUPT-THREAD
         RECEIVE-IF REMOVE-FD-HANDLERS REMOVE-SIGIO-HANDLERS SEND SLDB-BREAK-AT-START SLDB-BREAK-ON-RETURN SLDB-STEP-INTO
         SLDB-STEP-NEXT SLDB-STEP-OUT SPAWN TOGGLE-TRACE)
;; Swank started at port: 58310.
Code:
Connected. Lemonodor-fame is just a hack away
But on the window toolbar at the bottom it still says *inferior-lisp*
My .emacs

Code:
(add-to-list 'load-path "/home/xtd8865/.emacs.d/elisp/")
(require 'slime)

(setq inferior-lisp-program "/usr/bin/clisp -K full"
     lisp-indent-function 'common-lisp-indent-function
        slime-complete-symbol-function 'slime-fuzzy-complete-symbol
        slime-complete-symbol*-fancy t)
(slime-setup)
Thanks for your help