Hello!

Andy Wingo <wi...@pobox.com> skribis:

> As an example let's take *repl-stack* from boot-9.  Here's what we
> could do:
>
>   (define repl-stack (make-parameter #f)))
>
> and in deprecated.scm:
>
>   (define *repl-stack* (parameter-fluid repl-stack))
>
> Ideally we would change *repl-stack* to be an identifier-syntax like:
>
>   (define-syntax *repl-stack*
>     (identifier-syntax
>       (begin
>         (issue-deprecation-warning "it's dead jim")
>         (parameter-fluid repl-stack))))

OK, looks like a nice plan.  Fine with me, then!

Thanks,
Ludo’.


Reply via email to