diff options
author | Alex Kost <alezost@gmail.com> | 2015-12-12 11:19:43 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-12-15 21:35:35 +0300 |
commit | 7ccb3ad3c1cd45f2b23d57ef01d3f0a1b9bcaf7e (patch) | |
tree | 855d87336f91af5fe8c3fbc67a750109b4a4f0bf /emacs/guix-main.scm | |
parent | fceac8803966dd7988b56e1e26b909c7fede0e05 (diff) | |
download | guix-7ccb3ad3c1cd45f2b23d57ef01d3f0a1b9bcaf7e.tar guix-7ccb3ad3c1cd45f2b23d57ef01d3f0a1b9bcaf7e.tar.gz |
emacs: 'node-type' is in (guix graph) now.
This is a followup to commit 8fb583714f78d1b283523ef7edbb6e098946182f.
* emacs/guix-main.scm (graph-type-names): Use 'node-type-name'
from (guix graph) module.
Diffstat (limited to 'emacs/guix-main.scm')
-rw-r--r-- | emacs/guix-main.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/guix-main.scm b/emacs/guix-main.scm index 7175b103da..6f9eb422e0 100644 --- a/emacs/guix-main.scm +++ b/emacs/guix-main.scm @@ -58,7 +58,6 @@ (guix licenses) (guix utils) (guix ui) - (guix scripts graph) (guix scripts lint) (guix scripts package) (guix scripts pull) @@ -989,7 +988,8 @@ Return #t if the shell command was executed successfully." (define (graph-type-names) "Return a list of names of available graph node types." - (map node-type-name %node-types)) + (map (@ (guix graph) node-type-name) + (@ (guix scripts graph) %node-types))) (define (refresh-updater-names) "Return a list of names of available refresh updater types." |