unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] emacs: Replace 'guix-any' with 'cl-some'.
@ 2015-09-15 18:56 Alex Kost
  2015-09-18  9:42 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Alex Kost @ 2015-09-15 18:56 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 120 bytes --]

I was surprised when I didn't found ‘cl-any’ function.  Now it's clear —
its name is ‘cl-some’.  Oops :-)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-emacs-Replace-guix-any-with-cl-some.patch --]
[-- Type: text/x-patch, Size: 1595 bytes --]

From 0ca666e091735c82a5f197b43bd2317c2b2e4b84 Mon Sep 17 00:00:00 2001
From: Alex Kost <alezost@gmail.com>
Date: Tue, 15 Sep 2015 21:36:23 +0300
Subject: [PATCH] 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'.
---
 emacs/guix-command.el | 6 +++---
 emacs/guix-utils.el   | 8 --------
 2 files changed, 3 insertions(+), 11 deletions(-)

diff --git a/emacs/guix-command.el b/emacs/guix-command.el
index ddafac9..6fdfb93 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)
diff --git a/emacs/guix-utils.el b/emacs/guix-utils.el
index 682609d..d1f088b 100644
--- a/emacs/guix-utils.el
+++ b/emacs/guix-utils.el
@@ -226,14 +226,6 @@ single argument."
      (while (re-search-forward ,regexp nil t)
        ,@body)))
 
-(defun guix-any (pred lst)
-  "Test whether any element from LST satisfies PRED.
-If so, return the return value from the successful PRED call.
-Return nil otherwise."
-  (when lst
-    (or (funcall pred (car lst))
-        (guix-any pred (cdr lst)))))
-
 \f
 ;;; Alist accessors
 
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] emacs: Replace 'guix-any' with 'cl-some'.
  2015-09-15 18:56 [PATCH] emacs: Replace 'guix-any' with 'cl-some' Alex Kost
@ 2015-09-18  9:42 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2015-09-18  9:42 UTC (permalink / raw)
  To: Alex Kost; +Cc: guix-devel

Alex Kost <alezost@gmail.com> skribis:

> From 0ca666e091735c82a5f197b43bd2317c2b2e4b84 Mon Sep 17 00:00:00 2001
> From: Alex Kost <alezost@gmail.com>
> Date: Tue, 15 Sep 2015 21:36:23 +0300
> Subject: [PATCH] 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'.

OK, thanks!

Ludo'.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-09-18  9:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-15 18:56 [PATCH] emacs: Replace 'guix-any' with 'cl-some' Alex Kost
2015-09-18  9:42 ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).