]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix "make bootstrap" build warning in tab-bar.el
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 22 Oct 2019 19:18:33 +0000 (21:18 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 22 Oct 2019 19:18:33 +0000 (21:18 +0200)
* lisp/tab-bar.el (require): Require seq when compiling to avoid a
compilation warning.  The function it uses is autoloaded, but
autoloads aren't loaded when this is built (on "make bootstrap").

lisp/tab-bar.el

index 098d7057e543578d373ebc94055d0a077b13f966..8350b4e69455a6250179a39bf0e76a85cab5151b 100644 (file)
@@ -34,7 +34,9 @@
 
 ;;; Code:
 
-(eval-when-compile (require 'cl-lib))
+(eval-when-compile
+  (require 'cl-lib)
+  (require 'seq))
 
 \f
 (defgroup tab-bar nil