I would absolutely love a more advanced Clojure book in the same vein as "On Lisp", especially if Stuart Halloway is in any way involved. Most of the content can probably be pretty similar modulo differences in the macro systems and such (probably have to axe the reader macros chapter...)
chapter 9 is particularly useful. clojure doesn't have hygienic macros, but it does have namespaces, so it is not as likely as common lisp to silently introduce naming problems. that's explained quite well there (better than i have found anywhere else).
namespaces in combination with how syntax-quote (`) autoqualifies symbols and let disallowing qualified identifiers makes it noticeably more difficult to introduce a name clash.
for example the following macro results in an error when you try to run the expanded code:
(defmacro ex [x] `(let [y 1] (~x y)))
because it expands to (let [namespace/y 1] ...) which is disallowed. When you need to, there is a way to force an unqualified symbol by explicitly quoting and unquoting a symbol, and ` provides autogensyms, so it is very convenient to use.
Namespace-qualifying also means that post-expansion changes to your local namespace won't change the meaning of symbols that referred to things in an external namespace when the macro was expanded.
Halloway picked up where Fogus left off.