Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23556
Modified Files:
BUGS version.lisp-expr
Log Message:
0.8.9.58:
New bug.
Index: BUGS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/BUGS,v
retrieving revision 1.375
retrieving revision 1.376
diff -u -d -r1.375 -r1.376
--- BUGS 20 Apr 2004 13:31:55 -0000 1.375
+++ BUGS 24 Apr 2004 04:40:27 -0000 1.376
@@ -1375,3 +1375,15 @@
The tokenizer's use of *read-buffer* and *read-buffer-length* causes
spurious errors should two threads attempt to tokenise at the same
time.
+
+312:
+ (reported by Jon Dyte)
+ SBCL issues a warning "Duplicate definition of FOO" compiling
+
+ (declaim (inline foo))
+ (defun foo (x)
+ (1+ x))
+ (defun bar (y)
+ (list (foo y) (if (> y 1) (funcall (if (> y 0) #'foo #'identity) y))))
+
+ (probably related to the bug 280.)
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.1567
retrieving revision 1.1568
diff -u -d -r1.1567 -r1.1568
--- version.lisp-expr 23 Apr 2004 14:36:33 -0000 1.1567
+++ version.lisp-expr 24 Apr 2004 04:40:27 -0000 1.1568
@@ -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.8.9.57"
+"0.8.9.58"
|