(eval-and-compile (require 'slime)) (define-slime-contrib slime-presentation-streams "Streams that allow attaching object identities to portions of output." (:authors "Alan Ruttenberg " "Matthias Koeppe " "Helmut Eller ") (:license "GPL") (:on-load (add-hook 'slime-connected-hook 'slime-presentation-streams-on-connected)) (:swank-dependencies swank-presentation-streams)) (defun slime-presentation-streams-on-connected () (slime-eval `(swank:init-presentation-streams))) (provide 'slime-presentation-streams)