summaryrefslogtreecommitdiff
path: root/emacs/guix-command.el
diff options
context:
space:
mode:
authorAlex Kost <alezost@gmail.com>2015-09-15 21:36:23 +0300
committerAlex Kost <alezost@gmail.com>2015-09-18 21:41:46 +0300
commitb2cb869cf928aa0aba7716103548b49af852d6e6 (patch)
tree83240bd4a2dd9d8c526c044c90673239b167c94d /emacs/guix-command.el
parenteda1cc8b5d68189166e1d61142aa84e5af4187c7 (diff)
downloadpatches-b2cb869cf928aa0aba7716103548b49af852d6e6.tar
patches-b2cb869cf928aa0aba7716103548b49af852d6e6.tar.gz
emacs: Replace 'guix-any' with 'cl-some'.
* emacs/guix-utils.el (guix-any): Remove. * emacs/guix-command.el (guix-command-improve-argument): Use 'cl-some' instead of 'guix-any'.
Diffstat (limited to 'emacs/guix-command.el')
-rw-r--r--emacs/guix-command.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/guix-command.el b/emacs/guix-command.el
index ddafac92f1..6fdfb93981 100644
--- a/emacs/guix-command.el
+++ b/emacs/guix-command.el
@@ -305,9 +305,9 @@ to be modified."
(defun guix-command-improve-argument (argument improvers)
"Return ARGUMENT modified with IMPROVERS."
- (or (guix-any (lambda (improver)
- (funcall improver argument))
- improvers)
+ (or (cl-some (lambda (improver)
+ (funcall improver argument))
+ improvers)
argument))
(defun guix-command-improve-arguments (arguments commands)