cs: sync with Chez Scheme change for trap check, again

We had to give back some space savings to avoid potential problems
with allocating in the event callback and running out of stack
space[?] when passing an argument. We get to keep most of the
improvement though.
This commit is contained in:
Matthew Flatt 2020-02-07 16:20:04 -07:00
parent 595b62a038
commit 615e4f707a
3 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@
(define collection 'multi)
(define version "7.6.0.10")
(define version "7.6.0.11")
(define deps `("racket-lib"
["racket" #:version ,version]))

View File

@ -2,7 +2,7 @@
;; Check to make we're using a build of Chez Scheme
;; that has all the features we need.
(define-values (need-maj need-min need-sub need-dev)
(values 9 5 3 18))
(values 9 5 3 19))
(unless (guard (x [else #f]) (eval 'scheme-fork-version-number))
(error 'compile-file

View File

@ -16,7 +16,7 @@
#define MZSCHEME_VERSION_X 7
#define MZSCHEME_VERSION_Y 6
#define MZSCHEME_VERSION_Z 0
#define MZSCHEME_VERSION_W 10
#define MZSCHEME_VERSION_W 11
/* A level of indirection makes `#` work as needed: */
#define AS_a_STR_HELPER(x) #x