Fix a typo that sneaked in when committing a diff submitted by Stas
Boukarev, version 1.0.36.21, launchpad bug #309093.
This makes literal struct parsing work again.
(defstruct foo (r nil :type (or null simple-vector)))
#S(foo :r #(#x00 #x11 #x22 #x33 #x44 #x55 #x66 #x77))
==> now works again.
"Comma inside backquoted structure (not a list or general vector.)"))
(*backquote-count* 0)
(body (if (char= (read-char stream t) #\( )
- (let ((*backquote-count* -1))
+ (let ((*backquote-count* 0))
(read-list stream nil))
(simple-reader-error stream "non-list following #S"))))
(unless (listp body)
;;; 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".)
-"1.0.37.59"
+"1.0.37.60"