diff options
author | Glenn Morris <rgm@gnu.org> | 2018-03-16 20:41:17 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2018-03-16 20:41:17 -0400 |
commit | 1c7db8aa30969d0bc0e6d35b9bd57c70314ed9d0 (patch) | |
tree | 27600ddb0cdc48349eacb12a7d84af2753576137 /lisp/net/newst-treeview.el | |
parent | 9c4ee531158960d3aae50e950b48ca8dce18c0d1 (diff) | |
download | emacs-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/net/newst-treeview.el')
-rw-r--r-- | lisp/net/newst-treeview.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/net/newst-treeview.el b/lisp/net/newst-treeview.el index 7f3d5d75fdb..b2997d71b19 100644 --- a/lisp/net/newst-treeview.el +++ b/lisp/net/newst-treeview.el @@ -36,6 +36,7 @@ ;; ====================================================================== ;;; Code: +(require 'cl-lib) (require 'newst-reader) (require 'widget) (require 'tree-widget) |