diff --git a/pkgs/racket-pkgs/at-exp-lib/info.rkt b/pkgs/racket-pkgs/at-exp-lib/info.rkt index 6d1143ceb1..4e9a6fa064 100644 --- a/pkgs/racket-pkgs/at-exp-lib/info.rkt +++ b/pkgs/racket-pkgs/at-exp-lib/info.rkt @@ -7,4 +7,4 @@ (define pkg-authors '(eli mflatt)) -(define version "1.1") +(define version "1.2") diff --git a/pkgs/scribble-pkgs/scribble-doc/scribblings/scribble/reader-internals.scrbl b/pkgs/scribble-pkgs/scribble-doc/scribblings/scribble/reader-internals.scrbl index c0a1c23bfa..a46cdeec3c 100644 --- a/pkgs/scribble-pkgs/scribble-doc/scribblings/scribble/reader-internals.scrbl +++ b/pkgs/scribble-pkgs/scribble-doc/scribblings/scribble/reader-internals.scrbl @@ -145,7 +145,8 @@ is an example of this. @section[#:tag "at-exp-lang"]{Adding @"@"-expressions to a Language} @defmodulelang[at-exp]{The @racketmodname[at-exp] language installs -@seclink["reader"]{@"@"-reader} support in the readtable, and then chains to the reader of +@seclink["reader"]{@"@"-reader} support in the readtable used to read +a module, and then chains to the reader of another language that is specified immediately after @racketmodname[at-exp].} @@ -160,6 +161,15 @@ at-exp racket/base reports @racket["Hello, friend."]. +In addition to configuring the reader for a module body, +@racketmodname[at-exp] attaches a run-time configuration annotation to +the module, so that it if it used as the main module, the +@racket[current-read-interaction] parameter is adjusted to use the +@seclink["reader"]{@"@"-reader} readtable extension. + +@history[#:changed "1.2" @elem{Added @racket[current-read-interaction] + run-time configuration.}] + @;-------------------------------------------------------------------- @section{Interface}