From: Mark Wooding Date: Sun, 26 Mar 2017 14:16:18 +0000 (+0100) Subject: src/method-impl.lisp (method-keyword-argument-lists): Fix indentation. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/sod/commitdiff_plain/bdaf6dbdbdeed8b0c41c3499a4efddcd3507642d src/method-impl.lisp (method-keyword-argument-lists): Fix indentation. --- diff --git a/src/method-impl.lisp b/src/method-impl.lisp index 630570b..2300ac6 100644 --- a/src/method-impl.lisp +++ b/src/method-impl.lisp @@ -252,15 +252,15 @@ (define-on-demand-slot delegating-direct-method function-type (method) (defmethod method-keyword-argument-lists ((method effective-method) direct-methods) (with-slots (message) method - (and (keyword-message-p message) - (mapcar (lambda (m) - (let ((type (sod-method-type m))) - (cons (c-function-keywords type) - (format nil "method for ~A on ~A (at ~A)" - message - (sod-method-class m) - (file-location m))))) - direct-methods)))) + (and (keyword-message-p message) + (mapcar (lambda (m) + (let ((type (sod-method-type m))) + (cons (c-function-keywords type) + (format nil "method for ~A on ~A (at ~A)" + message + (sod-method-class m) + (file-location m))))) + direct-methods)))) (defmethod shared-initialize :after ((method effective-method) slot-names &key direct-methods)