From 8b4e7d54badc132557183cb1ba774ea1e1206431 Mon Sep 17 00:00:00 2001 From: William Harold Newman Date: Thu, 20 Jun 2002 13:04:26 +0000 Subject: [PATCH] BUGS and other text --- BUGS | 7 +++++++ NEWS | 29 +++++++++++++++-------------- src/compiler/macros.lisp | 2 +- 3 files changed, 23 insertions(+), 15 deletions(-) diff --git a/BUGS b/BUGS index bba6c83..456c7fd 100644 --- a/BUGS +++ b/BUGS @@ -1362,6 +1362,13 @@ WORKAROUND: :ACCRUED-EXCEPTIONS (:INEXACT) :FAST-MODE NIL) +184: "division by zero becomes frozen into RATIO" + (reported by Wolfhard Buss on cmucl-imp 18 Jun 2002, fails on + sbcl-0.7.4.39 too) + * (/ 1 (/ 3 2) 0) + 1/0 + + DEFUNCT CATEGORIES OF BUGS IR1-#: These labels were used for bugs related to the old IR1 interpreter. diff --git a/NEWS b/NEWS index d6cdc13..9e38607 100644 --- a/NEWS +++ b/NEWS @@ -1132,32 +1132,33 @@ changes in sbcl-0.7.5 relative to sbcl-0.7.4: bootstrapping under CLISP. * SBCL now runs on the Tru64 (aka OSF/1) operating system on the Alpha architecture. - * bug 140 fixed: redefinition of classes with different supertypes + * bug 140 fixed: Redefinition of classes with different supertypes is now reflected in the type hierarchy. (thanks to Pierre Mai) - * bug 158 fixed: the compiler can now deal with integer loop + * bug 158 fixed: The compiler can now deal with integer loop increments different from 1; fixing this turned out also to fix bug 164. * bug 169 fixed: no more bogus warnings about using lexical bindings - despite the presence of perfectly good SPECIAL declarations. (thanks + despite the presence of perfectly good SPECIAL declarations (thanks to David Lichteblau) - * bug 175 fixed: more-closely-ANSI CHANGE-CLASS function, now + * bug 175 fixed: CHANGE-CLASS is now more ANSI-conforming, accepting initargs. (thanks to Espen Johnsen and Pierre Mai) * bug 179 fixed: DIRECTORY can now deal with filenames with pattern characters in them. + * bug 180 fixed: Method combination specifications no longer ignore + the :MOST-SPECIFIC-LAST option. (thanks to Pierre Mai) * bug fix: Structure type predicate functions now check their argument count as they should. - * bug fix: classes with :METACLASS STRUCTURE-CLASS now print + * bug fix: Classes with :METACLASS STRUCTURE-CLASS now print correctly. (thanks to Pierre Mai) - * bug 180 fixed: method combination specifications no longer ignore - the :MOST-SPECIFIC-LAST option * minor incompatible change: The --noprogrammer option is deprecated - in favor of the new name --disable-debugger option, which takes - effect at a slightly different time at startup (so that e.g. - handling of errors in --sysinit and --userinit files will be affected - differently). The SB-EXT:DISABLE-DEBUGGER and SB-EXT:ENABLE-DEBUGGER - functions have been added to allow this functionality to be controlled - from ordinary Lisp code. (ENABLE-DEBUGGER should help people like the - Debian maintainers, who might want to run non-interactive scripts to + in favor of the new --disable-debugger option, which is very similar. + (The major difference is that it takes effect at a slightly different + time at startup, causing handling of errors in --sysinit and + --userinit files will be affected differently.) The + SB-EXT:DISABLE-DEBUGGER and SB-EXT:ENABLE-DEBUGGER functions have + been added to allow this functionality to be controlled from ordinary + Lisp code. (ENABLE-DEBUGGER should help people like the Debian + maintainers, who might want to run non-interactive scripts to build SBCL cores which will later be used interactively.) * minor incompatible change: The LOAD function no longer, when given a wild pathname to load, loads all files matching that pathname. diff --git a/src/compiler/macros.lisp b/src/compiler/macros.lisp index d1170eb..3ea38a5 100644 --- a/src/compiler/macros.lisp +++ b/src/compiler/macros.lisp @@ -149,7 +149,7 @@ ) ; EVAL-WHEN ;;; Define a new class of boolean attributes, with the attributes -;;; having the specified Attribute-Names. Name is the name of the +;;; having the specified ATTRIBUTE-NAMES. NAME is the name of the ;;; class, which is used to generate some macros to manipulate sets of ;;; the attributes: ;;; -- 1.7.10.4