summaryrefslogtreecommitdiff
path: root/lisp/mail/rfc2231.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2018-03-16 20:41:17 -0400
committerGlenn Morris <rgm@gnu.org>2018-03-16 20:41:17 -0400
commit1c7db8aa30969d0bc0e6d35b9bd57c70314ed9d0 (patch)
tree27600ddb0cdc48349eacb12a7d84af2753576137 /lisp/mail/rfc2231.el
parent9c4ee531158960d3aae50e950b48ca8dce18c0d1 (diff)
downloademacs-1c7db8aa30969d0bc0e6d35b9bd57c70314ed9d0.tar.gz
Explicitly require cl-lib where needed
Rather than relying on the byte-compiler happening to use it. * lisp/completion.el, lisp/ffap.el, lisp/loadhist.el: * lisp/userlock.el, lisp/emacs-lisp/debug.el, lisp/emacs-lisp/rx.el: * lisp/emacs-lisp/testcover.el, lisp/mail/rfc2231.el: * lisp/net/newst-treeview.el, lisp/net/puny.el: * lisp/net/tramp-archive.el, lisp/net/tramp-gvfs.el: * lisp/net/tramp-sh.el, lisp/net/tramp-smb.el, lisp/org/org-ctags.el: * lisp/org/org-macs.el, lisp/progmodes/grep.el: * lisp/progmodes/perl-mode.el, lisp/progmodes/ruby-mode.el: * lisp/textmodes/dns-mode.el, lisp/textmodes/mhtml-mode.el: * lisp/vc/pcvs-parse.el: Explicitly require cl-lib as needed.
Diffstat (limited to 'lisp/mail/rfc2231.el')
-rw-r--r--lisp/mail/rfc2231.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mail/rfc2231.el b/lisp/mail/rfc2231.el
index 4da3641893b..103af55248a 100644
--- a/lisp/mail/rfc2231.el
+++ b/lisp/mail/rfc2231.el
@@ -22,6 +22,7 @@
;;; Code:
+(eval-when-compile (require 'cl-lib))
(require 'ietf-drums)
(require 'rfc2047)
(autoload 'mm-encode-body "mm-bodies")