bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#40869: Scheme syntax-rules indent when using ellipsis symbol


From: Jakub Jankiewicz
Subject: bug#40869: Scheme syntax-rules indent when using ellipsis symbol
Date: Sun, 26 Apr 2020 17:18:53 +0200

According to srfi-46 the syntax-rules can have extra first parameter:

This is the indent:

(define-syntax list+
  (syntax-rules ::: ()
                ((_ args :::) '(args :::))))

it should be the same as without ellipis extra symbol:

(define-syntax list+
  (syntax-rules ()
    ((_ args ...) '(args ...))))

--
Jakub Jankiewicz, Web Developer
https://jcubic.pl/me





reply via email to

[Prev in Thread] Current Thread [Next in Thread]