summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-03-16 20:41:17 -0400
committerKyle Meyer <kyle@kyleam.com>2019-01-13 12:43:04 -0500
commitd5a7a1a22c3d740adc3257d55d88a4533b48e69b (patch)
treebc60c4947259d3c7d0fb996031bea3018abd3d9a
parent6a5082fccfeb539a990a0771db7dbbb5afbd72e5 (diff)
downloadorg-mode-d5a7a1a22c3d740adc3257d55d88a4533b48e69b.tar.gz
Backport commit 1c7db8aa3 from Emacs
* lisp/org-ctags.el: * lisp/org-macs.el: Explicitly require cl-lib as needed. Explicitly require cl-lib where needed 1c7db8aa30969d0bc0e6d35b9bd57c70314ed9d0 Glenn Morris Fri Mar 16 20:41:17 2018 -0400
-rw-r--r--lisp/org-ctags.el1
-rw-r--r--lisp/org-macs.el1
2 files changed, 2 insertions, 0 deletions
diff --git a/lisp/org-ctags.el b/lisp/org-ctags.el
index 7dc8dd5..f4cf90c 100644
--- a/lisp/org-ctags.el
+++ b/lisp/org-ctags.el
@@ -137,6 +137,7 @@
;;; Code:
+(eval-when-compile (require 'cl-lib))
(require 'org)
(defgroup org-ctags nil
diff --git a/lisp/org-macs.el b/lisp/org-macs.el
index 0653f6a..d3e5932 100644
--- a/lisp/org-macs.el
+++ b/lisp/org-macs.el
@@ -31,6 +31,7 @@
;;; Code:
+(require 'cl-lib)
(require 'format-spec)
(declare-function org-string-collate-lessp "org-compat" (s1 s2 &optional locale ignore-case))