guix-commits
[Top][All Lists]
Advanced

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

branch core-updates updated: build-system/emacs: Hide the 'delete' bindi


From: guix-commits
Subject: branch core-updates updated: build-system/emacs: Hide the 'delete' binding from (guix build utils).
Date: Thu, 07 May 2020 09:14:55 -0400

This is an automated email from the git hooks/post-receive script.

mbakke pushed a commit to branch core-updates
in repository guix.

The following commit(s) were added to refs/heads/core-updates by this push:
     new 2ca603f  build-system/emacs: Hide the 'delete' binding from (guix 
build utils).
2ca603f is described below

commit 2ca603f113a24f89284ade0771defadfbfed9972
Author: Marius Bakke <address@hidden>
AuthorDate: Thu May 7 15:14:46 2020 +0200

    build-system/emacs: Hide the 'delete' binding from (guix build utils).
    
    This gets rid of a warning from 'compute-guix-derivation.drv' when running 
on
    Guile 3.0.  (guix build emacs-build-system) includes (srfi srfi-1) anyway.
    
    * guix/build/emacs-build-system.scm: Do not import 'delete' from (guix 
build utils).
---
 guix/build/emacs-build-system.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/build/emacs-build-system.scm 
b/guix/build/emacs-build-system.scm
index 219310c..26ea59b 100644
--- a/guix/build/emacs-build-system.scm
+++ b/guix/build/emacs-build-system.scm
@@ -21,7 +21,7 @@
 
 (define-module (guix build emacs-build-system)
   #:use-module ((guix build gnu-build-system) #:prefix gnu:)
-  #:use-module (guix build utils)
+  #:use-module ((guix build utils) #:hide (delete))
   #:use-module (guix build emacs-utils)
   #:use-module (srfi srfi-1)
   #:use-module (srfi srfi-11)



reply via email to

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