technomancy / slime forked from nablaone/slime

unofficial repository, updated daily (import from CVS)

This URL has Read+Write access

slime /
name age message
file .cvsignore Sun Apr 08 12:23:57 -0700 2007 Added *.lx64fsl (openmcl on linux fasls). [mbaringer]
file ChangeLog Thu Oct 15 09:40:37 -0700 2009 * slime.el (slime-current-package): Move REPL s... [heller]
file HACKING Thu Jun 04 01:50:30 -0700 2009 Mention docstrings. [heller]
file NEWS Fri Jan 02 13:57:13 -0800 2009 Mention the missing REPL. [heller]
file PROBLEMS Sun Nov 20 15:31:56 -0800 2005 Mention READ-CHAR-NO-HANG brokeness. [heller]
file README Tue Oct 03 14:49:13 -0700 2006 Update license statement. [mbaringer]
directory contrib/ Sat Oct 17 22:07:33 -0700 2009 Add Adapted-by header and slime-repl dependency. [technomancy]
directory doc/ Sat Oct 10 06:44:34 -0700 2009 Fix typo: swank-backend::preferred-communicatio... [sboukarev]
file hyperspec.el Mon Mar 09 04:06:38 -0700 2009 * hyperspec.el (common-lisp-hyperspec-lookup-re... [heller]
file metering.lisp Fri Aug 22 14:15:07 -0700 2008 * metering.lisp: Add deftypes for time-type and... [heller]
file mkdist.sh Mon Aug 29 13:02:57 -0700 2005 Added public domain dedication. [lgorrie]
file nregex.lisp Mon Sep 19 01:20:48 -0700 2005 Released into the public domain by Lawrence E. ... [lgorrie]
file sbcl-pprint-patch.lisp Thu Feb 16 17:30:21 -0800 2006 New file, adds the annotations feature to the S... [mkoeppe]
file slime-autoloads.el Fri Oct 16 21:42:37 -0700 2009 Add autoload comments to slime.el. [technomancy]
file slime.el Sat Oct 17 22:07:33 -0700 2009 Add Adapted-by header and slime-repl dependency. [technomancy]
file swank-abcl.lisp Sun Sep 20 03:51:50 -0700 2009 * swank-abcl.lisp (thread-description): Fix ty... [trittweiler]
file swank-allegro.lisp Sun Jun 21 00:22:56 -0700 2009 * swank-backend.lisp (frame-source-location): R... [heller]
file swank-backend.lisp Sun Sep 20 02:39:16 -0700 2009 Generalize M-? (or M-_ respectively.) It wil... [trittweiler]
file swank-ccl.lisp Tue Oct 06 13:12:03 -0700 2009 swank-ccl.lisp (map-backtrace): Handle null end... [sboukarev]
file swank-clisp.lisp Thu Jul 30 10:05:18 -0700 2009 * swank-clisp.lisp: Clisp 2.48 experimentally ... [trittweiler]
file swank-cmucl.lisp Mon Aug 10 12:30:22 -0700 2009 Separate context info from compiler message tex... [heller]
file swank-corman.lisp Sun Jun 21 00:22:56 -0700 2009 * swank-backend.lisp (frame-source-location): R... [heller]
file swank-ecl.lisp Sun Jul 26 21:08:41 -0700 2009 2009-07-27 Geo Carncross <geocar@gmail.com> ... [gcarncross]
file swank-gray.lisp Sun Aug 31 04:58:01 -0700 2008 * swank-backend.lisp (make-input-stream): Remov... [heller]
file swank-lispworks.lisp Mon Sep 28 04:33:43 -0700 2009 swank-lispworks.lisp (replace-strings-with-symb... [sboukarev]
file swank-loader.lisp Mon Sep 07 22:59:20 -0700 2009 * swank-loader.lisp (lisp-version-string): Incl... [heller]
file swank-openmcl.lisp Mon Aug 10 12:30:22 -0700 2009 Separate context info from compiler message tex... [heller]
file swank-sbcl.lisp Sat Sep 26 16:24:50 -0700 2009 * swank-sbcl.lisp (call-with-debugger-hook): C... [trittweiler]
file swank-scl.lisp Mon Aug 10 12:30:22 -0700 2009 Separate context info from compiler message tex... [heller]
file swank-source-file-cache.lisp Sat May 09 12:26:00 -0700 2009 * swank-source-file-cache.lisp (read-snippet-f... [trittweiler]
file swank-source-path-parser.lisp Tue May 19 03:51:38 -0700 2009 guard agains source path mapping hitting reader... [nsiivola]
file swank.asd Sun Aug 09 09:10:17 -0700 2009 * swank.asd (asdf:perform): don't call `swank-l... [sboukarev]
file swank.lisp Fri Oct 09 16:05:12 -0700 2009 * swank.lisp (stop-server): (list-threads) retu... [sboukarev]
file test-all.sh Mon Aug 29 13:02:57 -0700 2005 Added public domain dedication. [lgorrie]
file test.sh Sun Oct 26 14:17:58 -0700 2008 * test.sh: Return the number of failed tests as... [heller]
file xref.lisp Sun May 16 17:25:24 -0700 2004 Renamed XREF package to PXREF (P for portable).... [lgorrie]
README
Overview.
----------------------------------------

  SLIME is the Superior Lisp Interaction Mode for Emacs. It is
  implemented in two main parts: the Emacs Lisp side (slime.el), and
  the support library for the Common Lisp (swank.lisp and swank-*.lisp)

  For a real description, see the manual in doc/

Quick setup instructions
------------------------

  Add this to your ~/.emacs file and fill in the appropriate filenames:

    (add-to-list 'load-path "~/hacking/lisp/slime/")  ; your SLIME directory
    (setq inferior-lisp-program "/opt/sbcl/bin/sbcl") ; your Lisp system
    (require 'slime)
    (slime-setup)

  Make sure your `inferior-lisp-program' is set to a compatible
  version of Lisp.

  Use `M-x' slime to fire up and connect to an inferior Lisp.
  SLIME will now automatically be available in your Lisp source
  buffers.

Licence.
----------------------------------------

  SLIME is free software. All files, unless explicitly stated
  otherwise, are public domain.

Contact.
----------------------------------------

  Questions and comments are best directed to the mailing list:
    http://common-lisp.net/mailman/listinfo/slime-devel

  The mailing list archive is also available on Gmane:
    http://news.gmane.org/gmane.lisp.slime.devel