Fix bug in WITH-INPUT-FROM-STRING (PFD ansi-tests)
... only update INDEX on normal exit. (Fix from Bryan O'Connor)
secondary constituent character trait.
** SET-SYNTAX-FROM-CHAR correctly copies multiple-escape character
syntax.
+ ** WITH-INPUT-FROM-STRING should only update the index place on
+ normal termination.
changes in sbcl-0.8.19 relative to sbcl-0.8.18:
* new port: SBCL now works in native 64-bit mode on x86-64/Linux
,(or start 0)
,end)))))
,@decls
- (unwind-protect
- (progn ,@forms)
- (close ,var)
+ (multiple-value-prog1
+ (unwind-protect
+ (progn ,@forms)
+ (close ,var))
,@(when index
`((setf ,index (string-input-stream-current ,var)))))))))
;;; 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.19.18"
+"0.8.19.19"