[gnus git] branch master updated: m0-9-61-gadf889e =1= Do not use cl-lib functions since those are unavailable on older Emacsen.

David Engster <[email protected]> Sun, 23 Feb 2014 13:11:54 +0100
Newsgroups gmane.emacs.gnus.cvs
Message-ID <[email protected]>
       via  adf889ef6b5a38c8655714703719e582e36f0de6 (commit)
      from  16f18e1c694f315aa35174d61f9f7d6cfc100506 (commit)


- Log -----------------------------------------------------------------
commit adf889ef6b5a38c8655714703719e582e36f0de6
Author: David Engster <[email protected]>
Date:   Sun Feb 23 13:11:33 2014 +0100

    Do not use cl-lib functions since those are unavailable on older Emacsen.
    
    * auth-source.el (auth-source-netrc-saver): Do not depend on `cl-lib'
    to stay compatible with older Emacsen, so replace `cl-loop' with
    `loop'.

diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 828d3d9..14b3eed 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2014-02-23  David Engster  <[email protected]>
+
+	* auth-source.el (auth-source-netrc-saver): Do not depend on `cl-lib'
+	to stay compatible with older Emacsen, so replace `cl-loop' with
+	`loop'.
+
 2014-02-22  Daniel Colascione  <[email protected]>
 
 	* auth-source.el (auth-source-secrets-listify-pattern): New function.
diff --git a/lisp/auth-source.el b/lisp/auth-source.el
index 103b66e..d1437d4 100644
--- a/lisp/auth-source.el
+++ b/lisp/auth-source.el
@@ -1534,10 +1534,10 @@ list, it mathces the original pattern."
            (heads (if (stringp value)
                       (list (list key value))
                     (mapcar (lambda (v) (list key v)) value))))
-      (cl-loop
+      (loop
          for h in heads
          nconc
-           (cl-loop
+           (loop
               for tl in tails
               collect (append h tl))))))
 

-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.

Summary of changes:
 lisp/ChangeLog      |    6 ++++++
 lisp/auth-source.el |    4 ++--
 2 files changed, 8 insertions(+), 2 deletions(-)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".

The branch, master has been updated


hooks/post-receive
-- 
Gnus Project