From dfbff798ed328e5507f97b4adccc57430e274407 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Fri, 4 Nov 2005 13:32:46 +0000 Subject: [PATCH] 0.9.6.18: Make enums with duplicate numbers STYLE-WARN, not WARN. (Cyrus Harmon sbcl-devel 2005-10-26) --- src/code/host-alieneval.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/code/host-alieneval.lisp b/src/code/host-alieneval.lisp index bfe0b42..4f018d6 100644 --- a/src/code/host-alieneval.lisp +++ b/src/code/host-alieneval.lisp @@ -656,7 +656,7 @@ (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))) diff --git a/version.lisp-expr b/version.lisp-expr index 29c67cb..cef9527 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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" -- 1.7.10.4