diff options
author | Alex Kost <alezost@gmail.com> | 2015-12-07 11:57:56 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-12-09 19:54:19 +0300 |
commit | dcb00c0ad5f33d76dc4cac03ba6f7f8568ddfc57 (patch) | |
tree | 700f36a11be7f649fd2d6ceedde810f3aa1eca3d /emacs/guix-command.el | |
parent | d7a58c60d6e167d0fb0661afdbc3450476db10cb (diff) | |
download | guix-dcb00c0ad5f33d76dc4cac03ba6f7f8568ddfc57.tar guix-dcb00c0ad5f33d76dc4cac03ba6f7f8568ddfc57.tar.gz |
emacs: Add 'guix-build-log-find-file'.
* emacs/guix-build-log.el (guix-build-log-find-file): New procedure.
* emacs/guix-command.el (guix-run-view-build-log): Use it.
Diffstat (limited to 'emacs/guix-command.el')
-rw-r--r-- | emacs/guix-command.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/guix-command.el b/emacs/guix-command.el index 7e924d80f0..ddd3dd536e 100644 --- a/emacs/guix-command.el +++ b/emacs/guix-command.el @@ -65,6 +65,7 @@ (require 'guix-help-vars) (require 'guix-read) (require 'guix-base) +(require 'guix-build-log) (require 'guix-guile) (require 'guix-external) @@ -692,8 +693,7 @@ open the log file(s)." (output (guix-command-output args)) (files (split-string output "\n" t))) (dolist (file files) - (guix-find-file-or-url file) - (guix-build-log-mode)))) + (guix-build-log-find-file file)))) (defun guix-run-view-graph (args) "Run 'guix ARGS ...' graph command, make the image and open it." |