Ver Fonte

fix sbcl feature

OLIVER há 7 anos atrás
pai
commit
ff443d1dcf
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      macros.lisp

+ 2 - 2
macros.lisp

@@ -140,8 +140,8 @@
          (with-random-state
            (unwind-protect
                 (handler-case
-		    +sbcl (sb-sys:with-interrupts ,@body)
-		    -sbcl (progn ,@body)
+		    #+sbcl (sb-sys:with-interrupts ,@body)
+		    #-sbcl (progn ,@body)
                   (error (e) (log:error "~A" e)))
              (dex:clear-connection-pool))))
        (defun ,scheduler ()