From 500b8e7bc0f4d5bdf891fdc9e4f0f5d7ba5db421 Mon Sep 17 00:00:00 2001 From: Lassi Kortela Date: Wed, 27 Jan 2021 11:32:34 +0200 Subject: [PATCH] Correct hash-bang-syntax entries #!optional and #!rest As far as I can tell, DSSSL only has #!key. It has neither #!optional nor #!rest. SRFI 89 has all three. --- hash-bang-syntax.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hash-bang-syntax.scm b/hash-bang-syntax.scm index ee72f32..2d4e456 100644 --- a/hash-bang-syntax.scm +++ b/hash-bang-syntax.scm @@ -28,7 +28,7 @@ (id key) (role keyword) -(description "start keyword arguments in lambda list [DSSSL]") +(description "start keyword arguments in lambda list [DSSSL, SRFI 89]") (id larceny) (role directive) @@ -52,7 +52,7 @@ (id optional) (role keyword) -(description "start optional arguments in lambda list [DSSSL]") +(description "start optional arguments in lambda list [SRFI 89]") (id err5rs) (role directive) @@ -80,7 +80,7 @@ (id rest) (role keyword) -(description "start rest argument in lambda list [DSSSL]") +(description "start rest argument in lambda list [SRFI 89]") (id true) (role object)