X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fboot.lisp;h=44587f2180da81e53efc816a97bc9fc5d3ba36f2;hb=dfca8efb6fdc56c94d954d0c29eaebafd53aec58;hp=0cbb4d25dd063f6690e73857c49e4170d7fc9d96;hpb=66d48cef940c15fff41f02a92ec27a9be801eaa9;p=jscl.git diff --git a/src/boot.lisp b/src/boot.lisp index 0cbb4d2..44587f2 100644 --- a/src/boot.lisp +++ b/src/boot.lisp @@ -386,7 +386,7 @@ (defun alpha-char-p (x) (or (<= (char-code #\a) (char-code x) (char-code #\z)) - (<= (char-code #\Z) (char-code x) (char-code #\Z)))) + (<= (char-code #\A) (char-code x) (char-code #\Z)))) (defun digit-char-p (x) (if (and (<= (char-code #\0) (char-code x) (char-code #\9))) @@ -406,14 +406,6 @@ (equal (cdr x) (cdr y)))) ((stringp x) (and (stringp y) (string= x y))) - ((arrayp x) - (let ((n (length x))) - (and (arrayp y) - (eql n (length y)) - (do ((i 0 (1+ i))) - ((or (= i n) - (not (equal (aref x i) (aref y i)))) - (= i n)))))) (t nil))) (defun fdefinition (x)