From 45e1d7e4f0a7c6c03ee1548091a227dc44b6cd65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Thu, 20 Jul 2017 10:47:36 +0200 Subject: [PATCH] Fixed rendering of non-dotted pairs in defform --- scribble-lib/scribble/private/manual-form.rkt | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/scribble-lib/scribble/private/manual-form.rkt b/scribble-lib/scribble/private/manual-form.rkt index e4c45ae0..a4860671 100644 --- a/scribble-lib/scribble/private/manual-form.rkt +++ b/scribble-lib/scribble/private/manual-form.rkt @@ -95,13 +95,14 @@ (if (and (identifier? spec) (free-identifier=? spec #'defined-id)) (datum->syntax #'here '(unsyntax x) spec spec) - (syntax-case spec () - [(a . b) - (datum->syntax spec - (cons (loop #'a) (loop #'b)) - spec - spec)] - [_ spec]))))]) + (cond + [(syntax? spec) (datum->syntax spec + (loop (syntax-e spec)) + spec + spec)] + [(pair? spec) (cons (loop (car spec)) + (loop (cdr spec)))] + [else spec]))))]) #'(with-togetherable-racket-variables (l.lit ...) ([form [defined-id spec]] [form [defined-id spec1]] ...