Skip to content

Commit

Permalink
q*マクロ展開バグ修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sile committed Apr 6, 2012
1 parent 0c722e0 commit 0635613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion command.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
(defmacro q* ((&key watch (connection *default-connection*) timeout) &body commands-exp)
(let ((commands (gensym)))
`(if (null ,watch)
(q ,commands-exp :connection ,connection :timeout ,timeout)
(q (locally ,@commands-exp) :connection ,connection :timeout ,timeout)
(progn
(execute* :watch ,watch :connection ,connection) ; XXX: 多重評価
(let ((,commands (locally ,@commands-exp)))
Expand Down

0 comments on commit 0635613

Please sign in to comment.