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.
  1. 19 Apr, 2017 4 commits
  2. 18 Apr, 2017 1 commit
  3. 19 Mar, 2017 2 commits
  4. 09 Feb, 2017 3 commits
  5. 08 Feb, 2017 2 commits
  6. 04 Feb, 2017 2 commits
  7. 22 Jan, 2017 2 commits
  8. 21 Jan, 2017 1 commit
  9. 09 Nov, 2016 1 commit
  10. 02 Nov, 2016 3 commits
  11. 12 Oct, 2016 1 commit
  12. 06 Oct, 2016 1 commit
  13. 05 Oct, 2016 1 commit
  14. 04 Oct, 2016 1 commit
    • rpgoldman's avatar
      Remove call to ASDF::OPERATION-FORCED (#350) · 2628a706
      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.
      2628a706
  15. 07 Sep, 2016 2 commits
  16. 04 Sep, 2016 1 commit
  17. 31 Aug, 2016 1 commit
  18. 29 Aug, 2016 1 commit
  19. 22 Aug, 2016 1 commit
  20. 21 Aug, 2016 1 commit
  21. 19 Aug, 2016 1 commit
  22. 04 Jul, 2016 2 commits
    • Luís Oliveira's avatar
      slime-repl: bind TAB to self-insert-command · a8a3dd88
      Luís Oliveira authored
      Otherwise it'd trigger a SWANK event while in slime-repl-read-mode which
      would block indefinitely.
      
      Fixes issue #329.
      a8a3dd88
    • Luís Oliveira's avatar
      Extend load-path with contribs sooner · 3ea02047
      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.
      3ea02047
  23. 24 Jun, 2016 2 commits
  24. 14 Jun, 2016 1 commit
    • Luís Oliveira's avatar
      Make calling slime-setup unnecessary · 9055a7e5
      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.
      9055a7e5
  25. 12 Jun, 2016 2 commits
    • Luís Oliveira's avatar
      README.md: "setup" is a noun, not a verb · fd438e9f
      Luís Oliveira authored
      fd438e9f
    • Luís Oliveira's avatar
      slime-version: check if we're opening slime.el · 4af7d6ca
      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.)
      4af7d6ca