From 1f205b8c754c0d9b8894566e8e891aba80fdb925 Mon Sep 17 00:00:00 2001 From: Alex Kost Date: Wed, 8 Mar 2017 13:29:59 +0300 Subject: [PATCH] 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. --- elisp/guix-ui-license.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elisp/guix-ui-license.el b/elisp/guix-ui-license.el index 2074e5a..9b50034 100644 --- a/elisp/guix-ui-license.el +++ b/elisp/guix-ui-license.el @@ -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."