guix-commits
[Top][All Lists]
Advanced

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

01/08: modules: Recognize #:re-export-and-replace.


From: guix-commits
Subject: 01/08: modules: Recognize #:re-export-and-replace.
Date: Tue, 19 Jan 2021 12:15:29 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit f97ee7741883cc69be90947c7e699bd8435f065f
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Jan 17 17:41:40 2021 +0100

    modules: Recognize #:re-export-and-replace.
    
    * guix/modules.scm (extract-dependencies): Recognize
     #:re-export-and-replace, which was introduced in Guile 3.0.
---
 guix/modules.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/guix/modules.scm b/guix/modules.scm
index 1a6fafe..61bc8e1 100644
--- a/guix/modules.scm
+++ b/guix/modules.scm
@@ -1,5 +1,5 @@
 ;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright © 2016, 2017, 2018, 2019, 2021 Ludovic Courtès <ludo@gnu.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -77,7 +77,7 @@ CLAUSES."
       ((#:autoload module _ rest ...)
        (loop rest (cons module result)))
       (((or #:export #:re-export #:export-syntax #:re-export-syntax
-            #:replace #:version)
+            #:re-export-and-replace #:replace #:version)
         _ rest ...)
        (loop rest result))
       (((or #:pure #:no-backtrace) rest ...)



reply via email to

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