0.8.0.78.vector-nil-string.14:
[sbcl.git] / src / code / parse-body.lisp
index c6926a9..f19db1c 100644 (file)
@@ -26,7 +26,7 @@
 ;;;
 ;;; If DOC-STRING-ALLOWED is NIL, then no forms will be treated as
 ;;; documentation strings.
-(defun sb!sys:parse-body (body &optional (doc-string-allowed t))
+(defun parse-body (body &optional (doc-string-allowed t))
   (let ((reversed-decls nil)
         (forms body)
         (doc nil))
                      t)))))
            (declaration-p (x)
              (if (consp x)
-               (eq (car x) 'declare))))
+                 (let ((name (car x)))
+                   (if (eq name 'declaim)
+                       (progn (style-warn
+                               "DECLAIM is met where DECLARE is expected.")
+                              nil)
+                       (eq name 'declare))))))
       (tagbody
         :again
         (if forms