From 3a9787ce6e6d5791422b95d2cd487a452f91c544 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Thu, 17 Apr 2003 21:19:04 +0000 Subject: [PATCH] One is a valid length for a signed-byte length. --- code/type.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/type.lisp b/code/type.lisp index da6e4ca84..be46ff82f 100644 --- a/code/type.lisp +++ b/code/type.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.55 2003/04/16 13:07:50 gerd Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/type.lisp,v 1.56 2003/04/17 21:19:04 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -2234,7 +2234,7 @@ (deftype signed-byte (&optional s) (cond ((eq s '*) 'integer) - ((and (integerp s) (> s 1)) + ((and (integerp s) (> s 0)) (let ((bound (ash 1 (1- s)))) `(integer ,(- bound) ,(1- bound)))) (t -- GitLab