Skip to content

Instantly share code, notes, and snippets.

@cddr
Created June 23, 2012 06:16
Show Gist options
  • Save cddr/2977107 to your computer and use it in GitHub Desktop.
Save cddr/2977107 to your computer and use it in GitHub Desktop.
edit file that asdf failed to load
(defmethod asdf:perform :around ((op asdf:compile-op) (component asdf:cl-source-file))
(restart-case (call-next-method)
(slime-edit ()
:report "Edit file which failed to compile."
(progn
(ed-in-emacs (asdf::component-pathname component))
(abort)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment