[slime-devel] Slime problem loading clisp

Problem loading slime slime 2.0 2006-04-20 stable release emacs 21.2.1 clisp 2.32 I am having a problem when loading Slime I am new to slime can anyone give me some insight, I couldn't figure much out from reading the manual. Thanks Steve #.emacs (add-to-list 'load-path "~/slime-2.0/") ; your SLIME directory (setq inferior-lisp-program "/sw/bin/clisp -K full") ; your Lisp system (require 'slime) (slime-setup)
emacs --version GNU Emacs 21.2.1 Copyright (C) 2001 Free Software Foundation, Inc. GNU Emacs comes with ABSOLUTELY NO WARRANTY. You may redistribute copies of Emacs under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING.
clisp --version STACK depth: 16367 GNU CLISP 2.32 (2003-12-29) (built on feynman.local [10.13.181.8]) Software: GNU C 3.3 20030304 (Apple Computer, Inc. build 1809) ANSI C program Features [SAFETY=3]: (CLOS LOOP COMPILER CLISP ANSI-CL COMMON-LISP LISP=CL INTERPRETER CLISP-DEBUG SOCKETS GENERIC-STREAMS LOGICAL-PATHNAMES SCREEN UNICODE BASE-CHAR=CHARACTER UNIX) Installation directory: /sw/lib/clisp/ User language: ENGLISH Machine: POWER MACINTOSH(POWER MACINTOSH)stevelaptop.local [10.1.1.72]
emacs M-x slime [1]> ;; Loading file /Users/steve/slime-2.0/swank-loader.lisp ... WARNING: No architecture feature found in (POWERPC PPC X86 X86-64 AMD64 I686 I586 I486 PC386 IAPX386 SPARC64 SPARC HPPA6\4 HPPA). ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank-backend.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank-backend.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/nregex.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/nregex.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/xref.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/xref.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/metering.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/metering.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank-clisp.fas ... WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION CALL-WITHOUT-INTERRUPTS> WARNING: Replacing method #<STANDARD-METHOD NIL> in #<GENERIC-FUNCTION LISP-IMPLEMENTATION-TYPE-NAME> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION SET-DEFAULT-DIRECTORY> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION ARGLIST> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION FORMAT-SLDB-CONDITION> WARNING: Replacing method #<STANDARD-METHOD NIL> in #<GENERIC-FUNCTION UNPROFILE-ALL> WARNING: DEFUN/DEFMACRO: redefining function BREAK in /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank-\clisp.fas, was defined in /sw/src/clisp-2.32-3/clisp-2.32/src/condition.fas ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank-clisp.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank-gray.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank-gray.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank.fas ... *** - COPY-PPRINT-DISPATCH: NIL is not a valid print dispatch table Break 1 SWANK[2]>

On 24 Jan 2007, at 05:19, Steve Morin wrote:
Problem loading slime slime 2.0 2006-04-20 stable release emacs 21.2.1 clisp 2.32
I am having a problem when loading Slime I am new to slime can anyone give me some insight, I couldn't figure much out from reading the manual. Thanks Steve
#.emacs (add-to-list 'load-path "~/slime-2.0/") ; your SLIME directory (setq inferior-lisp-program "/sw/bin/clisp -K full") ; your Lisp system (require 'slime) (slime-setup)
Here's my slimey bit! I suggest putting the full path instead of using the '~'... I recall a patch recently about this. ;; ;; SLIME ;; (add-to-list 'load-path "/Users/seancharles/lisp/slime/") (setq inferior-lisp-program "/usr/local/bin/sbcl" ;(setq inferior-lisp-program "~/lisp/acl80_express/alisp" lisp-indent-function 'common-lisp-indent-function slime-complete-symbol-function 'slime-fuzzy-complete-symbol common-lisp-hyperspec-root "file:///Users/seancharles/lisp/ HyperSpec/" slime-startup-animation ()) (require 'slime) (slime-setup)
emacs --version GNU Emacs 21.2.1 Copyright (C) 2001 Free Software Foundation, Inc. GNU Emacs comes with ABSOLUTELY NO WARRANTY. You may redistribute copies of Emacs under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING.
clisp --version STACK depth: 16367 GNU CLISP 2.32 (2003-12-29) (built on feynman.local [10.13.181.8]) Software: GNU C 3.3 20030304 (Apple Computer, Inc. build 1809) ANSI C program Features [SAFETY=3]: (CLOS LOOP COMPILER CLISP ANSI-CL COMMON-LISP LISP=CL INTERPRETER CLISP-DEBUG SOCKETS GENERIC-STREAMS LOGICAL-PATHNAMES SCREEN UNICODE BASE-CHAR=CHARACTER UNIX) Installation directory: /sw/lib/clisp/ User language: ENGLISH Machine: POWER MACINTOSH(POWER MACINTOSH)stevelaptop.local [10.1.1.72]
emacs M-x slime [1]> ;; Loading file /Users/steve/slime-2.0/swank-loader.lisp ... WARNING: No architecture feature found in (POWERPC PPC X86 X86-64 AMD64 I686 I586 I486 PC386 IAPX386 SPARC64 SPARC HPPA6\4 HPPA). ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- backend.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- backend.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/nregex.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/nregex.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/xref.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/xref.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/ metering.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/ metering.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- clisp.fas ... WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION CALL-WITHOUT-INTERRUPTS> WARNING: Replacing method #<STANDARD-METHOD NIL> in #<GENERIC-FUNCTION LISP-IMPLEMENTATION-TYPE-NAME> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION SET-DEFAULT-DIRECTORY> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION ARGLIST> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION FORMAT-SLDB-CONDITION> WARNING: Replacing method #<STANDARD-METHOD NIL> in #<GENERIC-FUNCTION UNPROFILE-ALL> WARNING: DEFUN/DEFMACRO: redefining function BREAK in /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- \clisp.fas, was defined in /sw/src/clisp-2.32-3/clisp-2.32/src/condition.fas ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- clisp.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- gray.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- gray.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank.fas ... *** - COPY-PPRINT-DISPATCH: NIL is not a valid print dispatch table Break 1 SWANK[2]>
slime-devel site list slime-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/slime-devel

Tried using full path, no change, still broken. Thanks Steve On 1/24/07, Sean Charles <sean.charles@objitsu.com> wrote:
On 24 Jan 2007, at 05:19, Steve Morin wrote:
Problem loading slime slime 2.0 2006-04-20 stable release emacs 21.2.1 clisp 2.32
I am having a problem when loading Slime I am new to slime can anyone give me some insight, I couldn't figure much out from reading the manual. Thanks Steve
#.emacs (add-to-list 'load-path "~/slime-2.0/") ; your SLIME directory (setq inferior-lisp-program "/sw/bin/clisp -K full") ; your Lisp system (require 'slime) (slime-setup)
Here's my slimey bit! I suggest putting the full path instead of using the '~'... I recall a patch recently about this.
;; ;; SLIME ;; (add-to-list 'load-path "/Users/seancharles/lisp/slime/") (setq inferior-lisp-program "/usr/local/bin/sbcl" ;(setq inferior-lisp-program "~/lisp/acl80_express/alisp" lisp-indent-function 'common-lisp-indent-function slime-complete-symbol-function 'slime-fuzzy-complete-symbol common-lisp-hyperspec-root "file:///Users/seancharles/lisp/ HyperSpec/" slime-startup-animation ())
(require 'slime) (slime-setup)
emacs --version GNU Emacs 21.2.1 Copyright (C) 2001 Free Software Foundation, Inc. GNU Emacs comes with ABSOLUTELY NO WARRANTY. You may redistribute copies of Emacs under the terms of the GNU General Public License. For more information about these matters, see the file named COPYING.
clisp --version STACK depth: 16367 GNU CLISP 2.32 (2003-12-29) (built on feynman.local [10.13.181.8]) Software: GNU C 3.3 20030304 (Apple Computer, Inc. build 1809) ANSI C program Features [SAFETY=3]: (CLOS LOOP COMPILER CLISP ANSI-CL COMMON-LISP LISP=CL INTERPRETER CLISP-DEBUG SOCKETS GENERIC-STREAMS LOGICAL-PATHNAMES SCREEN UNICODE BASE-CHAR=CHARACTER UNIX) Installation directory: /sw/lib/clisp/ User language: ENGLISH Machine: POWER MACINTOSH(POWER MACINTOSH)stevelaptop.local [10.1.1.72]
emacs M-x slime [1]> ;; Loading file /Users/steve/slime-2.0/swank-loader.lisp ... WARNING: No architecture feature found in (POWERPC PPC X86 X86-64 AMD64 I686 I586 I486 PC386 IAPX386 SPARC64 SPARC HPPA6\4 HPPA). ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- backend.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- backend.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/nregex.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/nregex.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/xref.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/xref.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/ metering.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/ metering.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- clisp.fas ... WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION CALL-WITHOUT-INTERRUPTS> WARNING: Replacing method #<STANDARD-METHOD NIL> in #<GENERIC-FUNCTION LISP-IMPLEMENTATION-TYPE-NAME> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION SET-DEFAULT-DIRECTORY> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION ARGLIST> WARNING: Replacing method #<STANDARD-METHOD (#<BUILT-IN-CLASS T>)> in #<GENERIC-FUNCTION FORMAT-SLDB-CONDITION> WARNING: Replacing method #<STANDARD-METHOD NIL> in #<GENERIC-FUNCTION UNPROFILE-ALL> WARNING: DEFUN/DEFMACRO: redefining function BREAK in /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- \clisp.fas, was defined in /sw/src/clisp-2.32-3/clisp-2.32/src/condition.fas ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- clisp.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- gray.fas ... ;; Loaded file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank- gray.fas ;; Loading file /Users/steve/.slime/fasl/2006-04-20/clisp-2.32-unix-unknown/swank.fas ... *** - COPY-PPRINT-DISPATCH: NIL is not a valid print dispatch table Break 1 SWANK[2]>
slime-devel site list slime-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/slime-devel
_______________________________________________ slime-devel site list slime-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/slime-devel
-- Become a blue chip expert today - http://www.bluechipexpert.com/invite?code=xqyry Lisp Programming - You don't know what your missing ... Benjamin Franklin, in his autobiography, argues that you can be more productive at work if you don't drink rum or beer all day, apparently a revolutionary concept in the 18th century. ====================================== Help Send Laurie to Veterinary School http://www.sendlaurietovetschool.com

* Steve Morin [2007-01-24 06:19+0100] writes:
Problem loading slime slime 2.0 2006-04-20 stable release emacs 21.2.1 clisp 2.32
2.32 is probably to old. A note in the PROBLEMS files says that CLISP 2.33.2 or newer is required. I don't have that version but 2.35 seems to work. Helmut.

I tried upgrading clisp to 2.35 and slime is working fine. Thanks Steve
slime 2.0 2006-04-20 stable release emacs 21.2.1 clisp 2.32
On 1/24/07, Helmut Eller <heller@common-lisp.net> wrote:
* Steve Morin [2007-01-24 06:19+0100] writes:
Problem loading slime slime 2.0 2006-04-20 stable release emacs 21.2.1 clisp 2.32
2.32 is probably to old. A note in the PROBLEMS files says that CLISP 2.33.2 or newer is required. I don't have that version but 2.35 seems to work.
Helmut.
_______________________________________________ slime-devel site list slime-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/slime-devel
-- Become a blue chip expert today - http://www.bluechipexpert.com/invite?code=xqyry Lisp Programming - You don't know what your missing ... Benjamin Franklin, in his autobiography, argues that you can be more productive at work if you don't drink rum or beer all day, apparently a revolutionary concept in the 18th century. ====================================== Help Send Laurie to Veterinary School http://www.sendlaurietovetschool.com
participants (3)
-
Helmut Eller
-
Sean Charles
-
Steve Morin