guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: emacs-eval-in-repl-erlang: Fix unbound varia


From: guix-commits
Subject: branch master updated: gnu: emacs-eval-in-repl-erlang: Fix unbound variable.
Date: Fri, 14 Oct 2022 17:51:52 -0400

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

lilyp pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new a11522a024 gnu: emacs-eval-in-repl-erlang: Fix unbound variable.
a11522a024 is described below

commit a11522a02482067cbfbbd9cb881814ffca4854e8
Author: Brian Kubisiak <brian@kubisiak.com>
AuthorDate: Tue Oct 11 19:20:43 2022 -0700

    gnu: emacs-eval-in-repl-erlang: Fix unbound variable.
    
    Commit 0b120ad5f88d32e0c716b1442fe1ea3c562b5586 introduced a circular
    dependency where (gnu packages erlang) would transitively load
    (gnu packages emacs-xyz) before the emacs-erlang package was defined.
    
    * gnu/packages/emacs-xyz.scm (emacs-eval-in-repl-erlang)[#:inputs]: Wrap in
    delay.
    
    Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
 gnu/packages/emacs-xyz.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 1613808419..d6c5831205 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27956,7 +27956,7 @@ or regions to a REPL from ~a buffers.") language))))
   (make-emacs-eval-in-repl "elm" #:inputs (list emacs-elm-mode)))
 
 (define-public emacs-eval-in-repl-erlang
-  (make-emacs-eval-in-repl "erlang" #:inputs (list emacs-erlang)))
+  (make-emacs-eval-in-repl "erlang" #:inputs (delay (list emacs-erlang))))
 
 (define-public emacs-eval-in-repl-geiser
   (make-emacs-eval-in-repl "geiser" #:language "Scheme"



reply via email to

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