Skip to content

Instantly share code, notes, and snippets.

@html
Created August 22, 2011 18:52
Show Gist options
  • Save html/1163186 to your computer and use it in GitHub Desktop.
Save html/1163186 to your computer and use it in GitHub Desktop.
Reset weblocks sessions on swank code evaluation
(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