diff options
| author | Alex Kost <alezost@gmail.com> | 2018-08-13 18:26:31 +0300 |
|---|---|---|
| committer | Alex Kost <alezost@gmail.com> | 2018-08-13 18:26:31 +0300 |
| commit | 891528405242c71dca12194105c2ad5a20b3f1ec (patch) | |
| tree | 9bcb9b46cb6070d93be33a680168c5313c2bae6a | |
| parent | popup: Use variable names instead of their descriptions (diff) | |
| download | emacs-build-farm-891528405242c71dca12194105c2ad5a20b3f1ec.tar.gz | |
project: Display "M-x build-farm-project" in Info buffer
As we always want to display a single project in Info buffer.
Previously, it could be displayed in a List buffer depending on
'build-farm-project-list-show-single' variable.
* build-farm-project.el (build-farm-project): Use
'bui-get-display-entries' directly instead of 'build-farm-get-display'
wrapper.
| -rw-r--r-- | build-farm-project.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-farm-project.el b/build-farm-project.el index 8608098..448aaf0 100644 --- a/build-farm-project.el +++ b/build-farm-project.el @@ -185,7 +185,8 @@ ARGS." (defun build-farm-project (project) "Display build farm PROJECT." (interactive (list (build-farm-read-project))) - (build-farm-get-display build-farm-url 'project 'id project)) + (bui-get-display-entries 'build-farm-project 'info + (list build-farm-url 'id project))) (provide 'build-farm-project) |
