X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=BUGS;h=8fd2a83a643565274d856f02eb6ac077d8e727bd;hb=b20e8cac4dd15882d5e0fda1bcf04c487df1360f;hp=b1d99eb18c08d74954dcb2c1571ad7c3123839ce;hpb=6822034325136cde4e14773c83c3769b42721306;p=sbcl.git diff --git a/BUGS b/BUGS index b1d99eb..8fd2a83 100644 --- a/BUGS +++ b/BUGS @@ -1858,30 +1858,6 @@ generally try to check returns in safe code, so we should here too.) (Test-case adapted from CL-PPCRE.) -425: reading from closed streams - - Reported by Damien Cassou on sbcl-devel. REPL transcript follows: - - * (open ".bashrc" :direction :input) - # - * (defparameter *s* *) - *S* - * (read-line *s*) - "# -*- Mode: Sh -*-" - * (read-line *s*) - "# Files you make look like rw-r--r--" - * (open-stream-p *s*) - T - * (close *s*) - T - * (open-stream-p *s*) - NIL - * (read-line *s*) - "umask 022" - - The problem is with the fast path using ansi-stream-cin-buffer not hitting - closed-flame. - 426: inlining failure involving multiple nested calls (declaim (inline foo))