mirror of
https://github.com/doomemacs/doomemacs.git
synced 2026-03-11 09:11:03 -07:00
fix(common-lisp): +lisp/reload-project
`sly-asdf-load-system` doesn't auto-select the current system without a little help. Fix: #8708
This commit is contained in:
parent
f573c7a1ee
commit
d771e24efa
1 changed files with 4 additions and 1 deletions
|
|
@ -31,7 +31,10 @@
|
|||
(error "Failed to reload Lisp project in 5 attempts.")
|
||||
(recurse (1+ attempt)))))))
|
||||
(recurse 1)
|
||||
(sly-asdf-load-system)))
|
||||
(sly-asdf-load-system
|
||||
(or (sly-asdf-find-current-system)
|
||||
(car sly-asdf-system-history)
|
||||
(user-error "Can't find a system to reload")))))
|
||||
|
||||
;;;###autoload
|
||||
(defun +lisp/find-file-in-quicklisp ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue