kernel.lsp: Remove bogus `ignore doc` declaration. Closes #11.
authorDaniel Kochmański <dkochmanski@hellsgate.pl>
Sat, 14 Mar 2015 18:57:35 +0000 (19:57 +0100)
committerDaniel Kochmański <dkochmanski@hellsgate.pl>
Sat, 14 Mar 2015 18:57:35 +0000 (19:57 +0100)
src/clos/kernel.lsp

index 08884e8..48d83f2 100644 (file)
@@ -62,8 +62,7 @@
 ;;; Methods
 
 (defun install-method (name qualifiers specializers lambda-list fun wrap &rest options)
-  (declare (ignore doc)
-          (notinline ensure-generic-function))
+  (declare (notinline ensure-generic-function))
 ;  (record-definition 'method `(method ,name ,@qualifiers ,specializers))
   (let* ((gf (ensure-generic-function name))
         (fun (if wrap (wrapped-method-function fun) fun))