Ignore:
Timestamp:
03/17/10 15:22:45 (13 years ago)
Author:
Mark Evenson
Message:

Test results for 0.19.x branch as of r12555.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/doc/slime.markdown

    r12548 r12556  
    3131adding code something like the following to "~/.emacs":
    3232
    33   (add-to-list 'load-path "~/work/slime")
    34   (setq slime-lisp-implementations
    35     '((abcl ("~/work/abcl/abcl"))
    36       (abcl.svn ("~/work/abcl.svn/abcl"))
    37       (sbcl ("/opt/local/bin/sbcl"))))
    38   (require 'slime)
    39   (slime-setup '(slime-fancy slime-asdf slime-banner))
     33    (add-to-list 'load-path "~/work/slime")
     34    (setq slime-lisp-implementations
     35      '((abcl ("~/work/abcl/abcl"))
     36        (abcl.svn ("~/work/abcl.svn/abcl"))
     37        (sbcl ("/opt/local/bin/sbcl"))))
     38    (require 'slime)
     39    (slime-setup '(slime-fancy slime-asdf slime-banner))
    4040
    4141One further need to customize the setting of
     
    7272point to the top directory of the server process.
    7373
    74   (defvar *slime-directory* #p"~/work/slime/") ;; Don't forget trailing slash
    75   (load (merge-pathnames "swank-loader.lisp" *slime-directory*) :verbose t)
    76   (swank-loader:init)
    77   (swank:start-server "/tmp/swank.port") ;; remove if you don't want
    78                                          ;; swank to start listening for connections.
    79 
     74`
     75    (defvar *slime-directory* #p"~/work/slime/") ;; Don't forget trailing slash
     76    (load (merge-pathnames "swank-loader.lisp" *slime-directory*) :verbose t)
     77    (swank-loader:init)
     78    (swank:start-server "/tmp/swank.port") ;; remove if you don't want
     79                                          ;; swank to start listening for connections.
     80`
    8081When this code finishes executing, an integer representing the port on
    8182which the server starts will be written to '/tmp/swank.port' and also
Note: See TracChangeset for help on using the changeset viewer.