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:
3630066
)
Added primitives to the histogram KEY<? predicate.
author
Stephen Adams
<edu/mit/csail/zurich/adams>
Thu, 20 Jul 1995 16:03:54 +0000
(16:03 +0000)
committer
Stephen Adams
<edu/mit/csail/zurich/adams>
Thu, 20 Jul 1995 16:03:54 +0000
(16:03 +0000)
v8/src/compiler/base/stats.scm
patch
|
blob
|
history
diff --git
a/v8/src/compiler/base/stats.scm
b/v8/src/compiler/base/stats.scm
index 44d27b4e97779f769bf132d8aaea5b7ee69f8298..8e4f12668258f977696d17e7df91fd476d9f85ff 100644
(file)
--- a/
v8/src/compiler/base/stats.scm
+++ b/
v8/src/compiler/base/stats.scm
@@
-1,6
+1,6
@@
#| -*-Scheme-*-
-$Id: stats.scm,v 1.
3 1995/03/12 16:31:16
adams Exp $
+$Id: stats.scm,v 1.
4 1995/07/20 16:03:54
adams Exp $
Copyright (c) 1994 Massachusetts Institute of Technology
@@
-202,6
+202,8
@@
MIT in each case. |#
(symbol<? u v))
((and (string? u) (string? v))
(string<? u v))
+ ((and (primitive-procedure? u) (primitive-procedure? v))
+ (key<? (primitive-procedure-name u) (primitive-procedure-name v)))
(else '(DONT KNOW))))
(define (pp-alist alist)