guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Fix references to emacs-build-system's expan


From: guix-commits
Subject: branch master updated: gnu: Fix references to emacs-build-system's expand-load-path phase.
Date: Wed, 23 Jun 2021 03:13:02 -0400

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

leoprikler pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6b83da9  gnu: Fix references to emacs-build-system's expand-load-path 
phase.
6b83da9 is described below

commit 6b83da96162fe212a4e306b259c2c52f17878ec5
Author: Carlo Zancanaro <carlo@zancanaro.id.au>
AuthorDate: Wed Jun 23 15:57:40 2021 +1000

    gnu: Fix references to emacs-build-system's expand-load-path phase.
    
    * gnu/packages/emacs-xyz.scm (emacs-pdf-tools)[#:phases]: Use
    emacs-expand-load-path instead of emacs-add-source-to-load-path.
    * gnu/packages/erlang.scm (emacs-erlang)[#:phases]: Use expand-load-path
    instead of add-source-to-load-path.
    * gnu/packages/protobuf.scm (emacs-protobuf-mode)[#:phases]: Use
    expand-load-path instead of add-source-to-load-path.
    
    Signed-off-by: Leo Prikler <leo.prikler@student.tugraz.at>
---
 gnu/packages/emacs-xyz.scm | 2 +-
 gnu/packages/erlang.scm    | 2 +-
 gnu/packages/protobuf.scm  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index eef33fd..28b87d4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -3310,7 +3310,7 @@ during idle time, while Emacs is doing nothing else.")
                  ("pdf-tools-handle-upgrades" '()))))
            (add-after 'emacs-patch-variables 'emacs-expand-load-path
              (assoc-ref emacs:%standard-phases 'expand-load-path))
-           (add-after 'emacs-add-source-to-load-path 'emacs-install
+           (add-after 'emacs-expand-load-path 'emacs-install
              (assoc-ref emacs:%standard-phases 'install))
            (add-after 'emacs-install 'emacs-build
              (assoc-ref emacs:%standard-phases 'build))
diff --git a/gnu/packages/erlang.scm b/gnu/packages/erlang.scm
index 7b5dc70..d52d5c3 100644
--- a/gnu/packages/erlang.scm
+++ b/gnu/packages/erlang.scm
@@ -232,7 +232,7 @@ built-in support for concurrency, distribution and fault 
tolerance.")
     (arguments
      `(#:phases
        (modify-phases %standard-phases
-         (add-before 'add-source-to-load-path 'change-working-directory
+         (add-before 'expand-load-path 'change-working-directory
            (lambda _ (chdir "lib/tools/emacs") #t)))))
     (home-page "https://www.erlang.org/";)
     (synopsis "Erlang major mode for Emacs")
diff --git a/gnu/packages/protobuf.scm b/gnu/packages/protobuf.scm
index 857adf1..9c6dcb5 100644
--- a/gnu/packages/protobuf.scm
+++ b/gnu/packages/protobuf.scm
@@ -311,7 +311,7 @@ structured data.")
     (arguments
      `(#:phases
        (modify-phases %standard-phases
-         (add-before 'add-source-to-load-path 'change-working-directory
+         (add-before 'expand-load-path 'change-working-directory
            (lambda _ (chdir "editors") #t)))))
     (home-page "https://github.com/protocolbuffers/protobuf";)
     (synopsis "Protocol buffers major mode for Emacs")



reply via email to

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