diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-11-16 10:54:23 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-11-16 10:54:23 +0100 |
commit | f106b0e970922cb5aad8fbb00375ad6a75f3f3d2 (patch) | |
tree | af65415a8134b53805b530a4750e68d0695b1d49 /emacs/guix-main.scm | |
parent | fcc43c1f7b998b9ffd2f734a4c99d6e17d7cf102 (diff) | |
download | patches-f106b0e970922cb5aad8fbb00375ad6a75f3f3d2.tar patches-f106b0e970922cb5aad8fbb00375ad6a75f3f3d2.tar.gz |
emacs: 'display-search-paths' now takes a list of profiles.
Fixes a regression introduced in fc2d233.
* emacs/guix-main.scm (process-package-actions): Make second argument to
'display-search-paths' a list.
Diffstat (limited to 'emacs/guix-main.scm')
-rw-r--r-- | emacs/guix-main.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/guix-main.scm b/emacs/guix-main.scm index 9eac5185b7..7175b103da 100644 --- a/emacs/guix-main.scm +++ b/emacs/guix-main.scm @@ -905,7 +905,7 @@ OUTPUTS is a list of package outputs (may be an empty list)." "~a packages in profile~%" count) count) - (display-search-paths entries profile)))))))))) + (display-search-paths entries (list profile))))))))))) (define (delete-generations* profile generations) "Delete GENERATIONS from PROFILE. |