浏览代码

fix sbcl feature

OLIVER 7 年之前
父节点
当前提交
ff443d1dcf
共有 1 个文件被更改,包括 2 次插入2 次删除
  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 ()