Hi,

Thien-Thi Nguyen <[EMAIL PROTECTED]> writes:

> currently:
>   (define-module (foo)
>     #:use-module (a b c)
>     #:use-module ((d e f) #:select (x y z))
>     #:export (bar))
>
> proposed:
>   (define-module (foo)
>     #:use-modules
>     (a b c)
>     ((d e f) #:select (x y z))
>     #:export (bar))
>
> that is, `#:use-modules X Y Z' would be exactly equivalent
> to `#:use-module X #:use-module Y #:use-module Z'.

Why not, but (i) Emacs would have a hard time indenting this ;-), and
(ii) given that it provides little benefits, I think I'd be more
inclined to not change anything.

My two cents...

Ludovic.



_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://lists.gnu.org/mailman/listinfo/guile-user

Reply via email to