fix 05-assignment-doublequoted-doubleqoutes.sh

This commit is contained in:
Rutger van Beusekom 2018-11-14 19:31:29 +01:00
parent da105e0e81
commit aa8aa10151
2 changed files with 3 additions and 3 deletions

View File

@ -152,7 +152,7 @@
sq < [']
dq < [\"]
singlequotes <- sq (!sq .)* sq#
doublequotes <- dq (substitution / variable / (!dq ('\\\"' / .)))* dq#
doublequotes <- dq (substitution / variable / (!dq (escape '\"' / .)))* dq#
case-keyword < 'case'
do-keyword < 'do'

View File

@ -376,8 +376,8 @@
((h ... t) t)
(_ o)))
(define (delim o)
o)
(define (delim . o)
(string-join o ""))
(define (name o)
o)