projects
/
mit-scheme.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17b04b1
)
Avoid duplicate type checks in ASSQ.
author
Joe Marshall
<jmarshall@alum.mit.edu>
Thu, 3 Sep 2009 17:22:52 +0000
(10:22 -0700)
committer
Joe Marshall
<jmarshall@alum.mit.edu>
Thu, 3 Sep 2009 17:22:52 +0000
(10:22 -0700)
src/runtime/list.scm
patch
|
blob
|
history
diff --git
a/src/runtime/list.scm
b/src/runtime/list.scm
index 8173fec59a80677e66d01630a4469a974194eb0d..a3cb276a2b6656ea22ffb840715bec0ba290f057 100644
(file)
--- a/
src/runtime/list.scm
+++ b/
src/runtime/list.scm
@@
-1140,6
+1140,7
@@
USA.
(define-integrable (%assoc key alist = caller)
(let ((lose (lambda () (error:not-alist alist caller))))
+ (declare (no-type-checks))
(let loop ((alist alist))
(if (pair? alist)
(begin