From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stig Brautaset Subject: [PATCH] Add missing require in org-test.el Date: Fri, 14 Jul 2017 14:51:38 +0100 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40914) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dW10W-0000dv-9e for emacs-orgmode@gnu.org; Fri, 14 Jul 2017 09:51:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dW10S-0000mP-EJ for emacs-orgmode@gnu.org; Fri, 14 Jul 2017 09:51:48 -0400 Received: from relay5-d.mail.gandi.net ([217.70.183.197]:51603) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dW10S-0000kC-7S for emacs-orgmode@gnu.org; Fri, 14 Jul 2017 09:51:44 -0400 Received: from mfilter24-d.gandi.net (mfilter24-d.gandi.net [217.70.178.152]) by relay5-d.mail.gandi.net (Postfix) with ESMTP id 4332741C089 for ; Fri, 14 Jul 2017 15:51:41 +0200 (CEST) Received: from relay5-d.mail.gandi.net ([IPv6:::ffff:217.70.183.197]) by mfilter24-d.gandi.net (mfilter24-d.gandi.net [::ffff:10.0.15.180]) (amavisd-new, port 10024) with ESMTP id zxCp__w9ZPvb for ; Fri, 14 Jul 2017 15:51:39 +0200 (CEST) Received: from localhost (unknown [185.59.181.102]) (Authenticated sender: mailbox@brautaset.org) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 9D58741C0A0 for ; Fri, 14 Jul 2017 15:51:39 +0200 (CEST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Org Mode --=-=-= Content-Type: text/plain This is required for me to be able to run tests on master with GNU Emacs 26.0.50 on macOS. --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-org-test-add-missing-require-for-cl.el.patch Content-Description: Add missing require to be able to run tests >From f8959cd59e1f9ba5b6752d3d76f042c89553c7a3 Mon Sep 17 00:00:00 2001 From: Stig Brautaset Date: Fri, 14 Jul 2017 14:48:37 +0100 Subject: [PATCH] org-test: add missing require for cl.el --- testing/org-test.el | 1 + 1 file changed, 1 insertion(+) diff --git a/testing/org-test.el b/testing/org-test.el index 844178e5a..7897e07e5 100644 --- a/testing/org-test.el +++ b/testing/org-test.el @@ -58,6 +58,7 @@ (cons (expand-file-name "jump" org-test-dir) load-path)))) (require 'cl-lib) + (require 'cl) (require 'ert) (require 'ert-x) (when (file-exists-p (expand-file-name "jump/jump.el" org-test-dir)) -- 2.11.0 (Apple Git-81) --=-=-= Content-Type: text/plain Stig --=-=-=--