From: Lars Ingebrigtsen Date: Tue, 22 Oct 2019 19:18:33 +0000 (+0200) Subject: Fix "make bootstrap" build warning in tab-bar.el X-Git-Tag: emacs-27.0.90~913 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f342f9cd267d39b3ef7d0c2a58718f4ac62f5abd;p=emacs.git 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"). --- diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el index 098d7057e54..8350b4e6945 100644 --- a/lisp/tab-bar.el +++ b/lisp/tab-bar.el @@ -34,7 +34,9 @@ ;;; Code: -(eval-when-compile (require 'cl-lib)) +(eval-when-compile + (require 'cl-lib) + (require 'seq)) (defgroup tab-bar nil