This project is mirrored from https://gitee.com/mirrors/slime.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 19 Apr, 2017 4 commits
- 18 Apr, 2017 1 commit
-
-
Michael White authored
Note that this implementation does not capture values printed to standard output. It is not clear that dynamically rebinding the standard output port is possible in Kawa.
-
- 19 Mar, 2017 2 commits
-
-
Stas Boukarev authored
sb-kernel:%simple-fun-self is no more, but it's useless as it points to itself.
-
Stas Boukarev authored
Instead of checking for interrupts every N seconds notify the condition variable that is used by RECEIVE-IF. This requires an optional WAKE-THREAD implementation function, which is added for SBCL, CCL and CLASP.
-
- 09 Feb, 2017 3 commits
-
-
Stas Boukarev authored
-
Stas Boukarev authored
-
Stas Boukarev authored
tempnam(NULL, NULL) uses "tmp." as a prefix, which made fasls compiled from that file name all go into tmp.fasl.
-
- 08 Feb, 2017 2 commits
-
-
Stas Boukarev authored
more-count and more-context are used to get the actual &more value, no need to show them.
-
Stas Boukarev authored
-
- 04 Feb, 2017 2 commits
-
-
Luís Borges de Oliveira authored
-
Luís Borges de Oliveira authored
@dkim points out that some contribs like slime-editing-commands and slime-indentation are useful before (or without) connecting to a swank server. Therefore, let's try and load them a bit earlier. Partially reverts 9055a7e5.
-
- 22 Jan, 2017 2 commits
-
-
Alexander Artemenko authored
-
Alexander Artemenko authored
-
- 21 Jan, 2017 1 commit
-
-
Deokhwan Kim authored
The "lisp-loop-body-forms-indentation" customization variable is of type integer but was wrongly specified as boolean.
-
- 09 Nov, 2016 1 commit
-
-
Stas Boukarev authored
The code header layout has changed.
-
- 02 Nov, 2016 3 commits
-
-
Alan Ruttenberg authored
-
Alan Ruttenberg authored
This is more friendly towards custom readtables as ! is a common reader macro character. (Nevertheless, users shouldn't be loading SWANK with a custom readtable...)
-
Alan Ruttenberg authored
Now handles jar files and buffers.
-
- 12 Oct, 2016 1 commit
-
-
Graham Dobbins authored
This fixes issue #339
-
- 06 Oct, 2016 1 commit
-
-
Luís Oliveira authored
This way (asdf:load-system :swank :force t) actually forces SWANK to be reloaded.
-
- 05 Oct, 2016 1 commit
-
-
Stas Boukarev authored
It expected a symbol for the second argument and (inst (x)) failed.
-
- 04 Oct, 2016 1 commit
-
-
rpgoldman authored
This function is being removed from ASDF. Furthermore, it always returns T, so simply replacing the call to (ASDF::OPERATION-FORCED O) with T would preserve the behavior of this code. However, that is a dangerous default because if executed when SWANK is already running, it will kill existing connections, so let's default to NIL.
-
- 07 Sep, 2016 2 commits
-
-
Stas Boukarev authored
-
drmeister authored
-
- 04 Sep, 2016 1 commit
-
-
Luís Oliveira authored
Fix byte-compiler warnings
-
- 31 Aug, 2016 1 commit
-
-
dkim authored
ElDoc mode has been using its own eldoc-highlight-function-argument face for the argument at point in a function's argument list.
-
- 29 Aug, 2016 1 commit
-
-
Stas Boukarev authored
-
- 22 Aug, 2016 1 commit
-
- 21 Aug, 2016 1 commit
-
-
Luís Oliveira authored
Fixes issue #332.
-
- 19 Aug, 2016 1 commit
-
-
Fice T authored
-
- 04 Jul, 2016 2 commits
-
-
Luís Oliveira authored
Otherwise it'd trigger a SWANK event while in slime-repl-read-mode which would block indefinitely. Fixes issue #329.
-
Luís Oliveira authored
Now that slime-setup is delayed until a connection is opened, we should explictly move the load-path setup to load-time so that contribs that depend on other contribs can find them and be properly byte-compiled. Fixes issue #326.
-
- 24 Jun, 2016 2 commits
-
-
Stas Boukarev authored
That way the correct readtable can be selected.
-
Stas Boukarev authored
-
- 14 Jun, 2016 1 commit
-
-
Luís Oliveira authored
For a while now, the party line has been that slime-contribs is the way to select which contribs are to be loaded. However, there were two common scenarios that didn't work properly: 1. (require 'slime) (setq slime-contribs <something>) 2. Installing SLIME via package.el, then setting slime-contribs. In both cases, the problem was that, after loading SLIME, changing slime-contribs has no effect since it was only being taken into account at load-time. This commit makes it so that we now look at slime-contribs each time a new SLIME connection is launched.
-
- 12 Jun, 2016 2 commits
-
-
Luís Oliveira authored
-
Luís Oliveira authored
When byte compiling a contrib via the Makefile, slime.el is loaded (via `require') but not compiled. That causes `byte-compile-current-file' to point to the contrib file, rather than slime.el, generating confusion when setting `slime-version'. To avoid this, let's look at both `load-file-name' and `byte-compile-current-file' to see if one of them points to slime.el. (Sadly, this involves hard-coding the file name.)
-