Handle exclusive bounds conservatively by treating them as inclusive
(instead of dying).
(let* ((interval (numeric-type->interval n))
(low (interval-low interval))
(high (interval-high interval)))
+ (when (consp low)
+ (setf low (car low)))
+ (when (consp high)
+ (setf high (car high)))
(specifier-type
`(integer ,(if low
(round low)
;;; 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.34.14"
+"1.0.34.15"