elisp/ui-license: Use 'cons' instead of 'cl-list*'

* elisp/guix-ui-license.el (guix-license-list-describe): 'cl-list*' is
  redundant here, use 'cons' instead.
This commit is contained in:
Alex Kost 2017-03-08 13:29:59 +03:00
parent c11094293d
commit 1f205b8c75
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ SEARCH-TYPE may be one of the following symbols: `all', `id', `name'."
"Describe licenses with IDS (list of identifiers)."
(bui-display-entries
(bui-entries-by-ids (bui-current-entries) ids)
'guix-license 'info (cl-list* 'id ids)))
'guix-license 'info (cons 'id ids)))
(defun guix-license-list-show-packages ()
"Display packages with the license at point."