Update of /cvsroot/sbcl/sbcl
In directory usw-pr-cvs1:/tmp/cvs-serv21834
Modified Files:
BUGS CREDITS version.lisp-expr
Log Message:
0.7.5.22:
deleted email addresses in the wake of autospam to cmucl-imp
("Attn: If you find bugs in CMU CL please report them to")
Index: BUGS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/BUGS,v
retrieving revision 1.163
retrieving revision 1.164
diff -u -d -r1.163 -r1.164
--- BUGS 16 Jul 2002 03:09:43 -0000 1.163
+++ BUGS 22 Jul 2002 20:22:41 -0000 1.164
@@ -1456,6 +1456,18 @@
(INTEGER 1296 1296)
...)>)[:EXTERNAL]
+189: "ignored NOTINLINE for functions defined by FLET or LABELS"
+ According to the ANSI definition of the NOTINLINE declaration,
+ NOTINLINE specifies that it is undesirable to compile the functions
+ named by FUNCTION-NAMES in-line. A compiler is not free to ignore
+ this declaration; calls to the specified functions must be implemented
+ as out-of-line subroutine calls.
+ However, as of sbcl-0.7.5.22, Python ignores this declaration for
+ functions defined by LABELS and FLET, and merrily optimizes away the
+ LAMBDAs. (This is an annoyance not just for language lawyers, but for
+ people who want a useful BACKTRACE for functions which, for whatever
+ reason, are constrained to be implemented as LABELS or LET.)
+
DEFUNCT CATEGORIES OF BUGS
IR1-#:
These labels were used for bugs related to the old IR1 interpreter.
Index: CREDITS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/CREDITS,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- CREDITS 11 Jun 2002 16:13:35 -0000 1.26
+++ CREDITS 22 Jul 2002 20:22:41 -0000 1.27
@@ -629,3 +629,4 @@
WHN William ("Bill") Newman
CSR Christophe Rhodes
PVE Peter Van Eynde
+PW Paul Werkowski
\ No newline at end of file
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.481
retrieving revision 1.482
diff -u -d -r1.481 -r1.482
--- version.lisp-expr 22 Jul 2002 17:17:48 -0000 1.481
+++ version.lisp-expr 22 Jul 2002 20:22:41 -0000 1.482
@@ -18,4 +18,4 @@
;;; for internal versions, especially for internal versions off the
;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.7.5.21"
+"0.7.5.22"
|