0.9.6.18:
authorChristophe Rhodes <csr21@cam.ac.uk>
Fri, 4 Nov 2005 13:32:46 +0000 (13:32 +0000)
committerChristophe Rhodes <csr21@cam.ac.uk>
Fri, 4 Nov 2005 13:32:46 +0000 (13:32 +0000)
Make enums with duplicate numbers STYLE-WARN, not WARN.  (Cyrus
Harmon sbcl-devel 2005-10-26)

src/code/host-alieneval.lisp
version.lisp-expr

index bfe0b42..4f018d6 100644 (file)
         (unless (and max (> max val)) (setq max val))
         (unless (and min (< min val)) (setq min val))
         (when (rassoc val from-alist)
-          (warn "The element value ~S is used more than once." val))
+          (style-warn "The element value ~S is used more than once." val))
         (when (assoc sym from-alist :test #'eq)
           (error "The enumeration element ~S is used more than once." sym))
         (push (cons sym val) from-alist)))
index 29c67cb..cef9527 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.6.17"
+"0.9.6.18"