From: Michal Nazarewicz Date: Wed, 27 Jul 2016 16:38:41 +0000 (+0200) Subject: Don’t (require 'cl) X-Git-Tag: emacs-26.0.90~1827 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7496844e7dd8b5c852df0b2525299d2dc9d71bb4;p=emacs.git Don’t (require 'cl) * test/src/regex-test.el: Don’t (require 'cl). (regex-tests-PCRE): s/loop/cl-loop/ --- diff --git a/test/src/regex-tests.el b/test/src/regex-tests.el index 1407441965a..97b9633bada 100644 --- a/test/src/regex-tests.el +++ b/test/src/regex-tests.el @@ -20,7 +20,6 @@ ;;; Code: (require 'ert) -(require 'cl) (ert-deftest regex-word-cc-fallback-test () "Test that ‘[[:cc:]]*x’ matches ‘x’ (bug#24020). @@ -516,9 +515,9 @@ differences in behavior.") ('invalid-regexp 'compilation-failed)) matches-observed - (loop for x from 0 to 20 - collect (and (not what-failed) - (or (match-string x string) ""))))) + (cl-loop for x from 0 to 20 + collect (and (not what-failed) + (or (match-string x string) ""))))) nil) ;; verification line: failed match