www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit aaf880c13054aa37168b4a7ba0faf506acec3538
parent 3a40ed328e4aa5c8c16b17efe6fce8f9c565db71
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Tue, 25 Sep 2018 09:12:50 +0200

Renamed opt.rkt to version-specific file (part 2)

Diffstat:
Aparse/private/opt.rkt | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/parse/private/opt.rkt b/parse/private/opt.rkt @@ -0,0 +1,10 @@ +#lang racket/base +(#%require version-case + (for-syntax (only racket/base version) + (only racket/base #%app #%datum)) + stxparse-info/my-include) +(version-case + [(version< (version) "7.0.0.20") + (my-include "opt.rkt-6-90-0-29")] + [else + (my-include "opt.rkt-7-0-0-20")])