Fix "make bootstrap" build warning in tab-bar.el

* 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").
This commit is contained in:
Lars Ingebrigtsen 2019-10-22 21:18:33 +02:00
parent b1be40c468
commit f342f9cd26

View file

@ -34,7 +34,9 @@
;;; Code:
(eval-when-compile (require 'cl-lib))
(eval-when-compile
(require 'cl-lib)
(require 'seq))
(defgroup tab-bar nil