projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cdb33b
)
Remove wrong array branch from equal
author
David Vázquez
<davazp@gmail.com>
Wed, 8 May 2013 16:05:16 +0000
(17:05 +0100)
committer
David Vázquez
<davazp@gmail.com>
Wed, 8 May 2013 16:05:16 +0000
(17:05 +0100)
src/boot.lisp
patch
|
blob
|
history
diff --git
a/src/boot.lisp
b/src/boot.lisp
index
0cbb4d2
..
72c43cb
100644
(file)
--- a/
src/boot.lisp
+++ b/
src/boot.lisp
@@
-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)