summary refs log tree commit diff
path: root/emacs/guix-command.el
diff options
context:
space:
mode:
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)