From f475997263b481b7475f9b7d15133025b539587e Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 9 Feb 2015 17:53:27 -0700 Subject: [PATCH] compiler/zo-marshal: repair for module language info Same repair as commit bc6670c8e0 for the Racket core. --- zo-lib/compiler/zo-marshal.rkt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zo-lib/compiler/zo-marshal.rkt b/zo-lib/compiler/zo-marshal.rkt index d7ae319ff7..bd39f9b896 100644 --- a/zo-lib/compiler/zo-marshal.rkt +++ b/zo-lib/compiler/zo-marshal.rkt @@ -1092,7 +1092,7 @@ [l (cons max-let-depth l)] [l (cons internal-context l)] ; module->namespace syntax [l (list* #f #f l)] ; obsolete `functional?' info - [l (cons lang-info l)] ; lang-info + [l (cons (protect-quote lang-info) l)] ; lang-info [l (cons (map convert-module post-submodules) l)] [l (cons (map convert-module pre-submodules) l)] [l (cons (if (memq 'cross-phase flags) #t #f) l)]