Created
August 22, 2011 18:52
-
-
Save html/1163186 to your computer and use it in GitHub Desktop.
Reset weblocks sessions on swank code evaluation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(in-package :swank) | |
(defun my-repl-eval (string) | |
(format t "; Reseting weblocks sessions~%") | |
(weblocks:reset-sessions) | |
(repl-eval string)) | |
(setq *listener-eval-function* #'my-repl-eval) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment