From 3042f750cabd802178ee7b1c6b768a796a11a720 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Fri, 7 Aug 2020 10:53:02 +0300 Subject: [PATCH] Say where each #! identifier came from --- hash-bang-syntax.scm | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/hash-bang-syntax.scm b/hash-bang-syntax.scm index 915338a..9c5e57d 100644 --- a/hash-bang-syntax.scm +++ b/hash-bang-syntax.scm @@ -1,26 +1,26 @@ (id bwp) -(description "broken-weak-pair object") +(description "broken-weak-pair object [Chez Scheme]") (id eof) (description "end-of-file object") (id fold-case) -(description "change to case insensitive identifiers") +(description "change to case insensitive identifiers [R7RS]") (id key) -(description "start keyword arguments in lambda list") +(description "start keyword arguments in lambda list [DSSSL]") (id no-fold-case) -(description "change to case sensitive identifiers") +(description "change to case sensitive identifiers [R7RS]") (id optional) -(description "start optional arguments in lambda list") +(description "start optional arguments in lambda list [DSSSL]") (id r6rs) -(description "change to R6RS read syntax") +(description "change to R6RS read syntax [R6RS]") (id r7rs) (description "change to R7RS read syntax") (id rest) -(description "start rest argument in lambda list") +(description "start rest argument in lambda list [DSSSL]")