On Fri, 20 Jul 2007 14:41:29 -0600, Robert Uhl eadmund42@gmail.com wrote:
I imagine the suggested usage is something like this?
(defclass my-dispatch-table () ((table :accessor table)))
(defmethod dispatch-request ((table my-dispatch-table)) (with-cleverness (dispatch-request (table table))))
Or just write an :AROUND method around the existing one.