diff mbox series

[bug#66146] fix: emacs-guix autoload missing exported module

Message ID DU2P193MB2132D86D4B7B14A6DD0363EEF3F8A@DU2P193MB2132.EURP193.PROD.OUTLOOK.COM
State New
Headers show
Series [bug#66146] fix: emacs-guix autoload missing exported module | expand

Commit Message

Sergio Pastor Pérez Sept. 21, 2023, 9:05 p.m. UTC
---
Good evening.

I've noticed that when using the 'Build' button from the interface that pops
from running `guix-packages-by-name' an error is issued. The `package-by-id'
procedure is not available to the repl 'emacs-guix' is using. This fixes the
module that the repl uses so it includes the missing function.

Greetings,
Sergio.

 scheme/emacs-guix.scm | 1 +
 1 file changed, 1 insertion(+)

Comments

Ludovic Courtès Oct. 5, 2023, 2:20 p.m. UTC | #1
Hi,

Sergio Pastor Pérez <sergio.pastorperez@outlook.es> skribis:

> ---
> Good evening.
>
> I've noticed that when using the 'Build' button from the interface that pops
> from running `guix-packages-by-name' an error is issued. The `package-by-id'
> procedure is not available to the repl 'emacs-guix' is using. This fixes the
> module that the repl uses so it includes the missing function.

I tweaked the commit log and pushed it.

Thanks!

Ludo’.
diff mbox series

Patch

diff --git a/scheme/emacs-guix.scm b/scheme/emacs-guix.scm
index 789043a..d3cad94 100644
--- a/scheme/emacs-guix.scm
+++ b/scheme/emacs-guix.scm
@@ -41,6 +41,7 @@ 
                                     package/output-sexps
                                     number-of-packages
                                     package-names*
+                                    package-by-id
                                     package-location-string
                                     package-location-files
                                     package-location-sexps)