Hunchentoot と html-template を使用した次のコードにより、Hunchentoot を最新バージョンにアップグレードした最近まで動的 Web ページを提供できていました。以下のコードでどこが間違っているのか誰か教えてください。問題はマクロ定義にあると思いますか?
(defmacro define-url-fn ((name) &body body)
`(progn
(defun ,name ()
,@body)
(push (create-prefix-dispatcher ,(format nil "/~(~a~).html" name) ',name) *dispatch-table*)))
(define-url-fn (sign-up)
(with-output-to-string (stream)
(let* ((values (list :username-error-msg *register-error*)))
(fill-and-print-template #p"/ELEPHUND/INTERFACE/sign-up.tmpl" values :stream stream))))