[plt-scheme] minor error in Language Manual

From: Bruce Hauman (bhauman at cs.wcu.edu)
Date: Thu Jan 9 14:26:55 EST 2003

In section "12.3.4  Module Environments"
of the "PLT MzScheme: Language Manual" there
appears to be an error in the following example code:

(define-syntax onem (lambda (stx) (datum->syntax-object (mx) stx stx)))
                                                        ^^^^^^^^
Where I think it should be

(define-syntax onem (lambda (stx) (datum->syntax-object stx (mx) stx)))
                                                        ^^^^^^^^

Bruce Hauman



Posted on the users mailing list.