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:
fe6ace7
)
Fix wrong number of arguments.
author
Taylor R Campbell
<campbell@mumble.net>
Sun, 1 Dec 2019 00:12:36 +0000
(
00:12
+0000)
committer
Taylor R Campbell
<campbell@mumble.net>
Sun, 1 Dec 2019 00:12:36 +0000
(
00:12
+0000)
src/runtime/char-set.scm
patch
|
blob
|
history
diff --git
a/src/runtime/char-set.scm
b/src/runtime/char-set.scm
index 5952592fa6e13cd581a0de6a4a06788569f3a3fc..4546bba94913470e1106803ebdae241b16e1e4b8 100644
(file)
--- a/
src/runtime/char-set.scm
+++ b/
src/runtime/char-set.scm
@@
-513,10
+513,10
@@
USA.
(primitive-object-hash-2 (%char-set-low char-set)
(%char-set-high char-set)))))
(if (default-object? modulus)
- (get-hash
char-set
)
+ (get-hash)
(begin
(guarantee positive-fixnum? modulus 'char-set-hash)
- (fix:remainder (get-hash
char-set
) modulus)))))
+ (fix:remainder (get-hash) modulus)))))
(define (char-set->code-points char-set)
(let loop ((ilist (%char-set->inversion-list char-set)) (ranges '()))