mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00:00
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:
parent
b1be40c468
commit
f342f9cd26
1 changed files with 3 additions and 1 deletions
|
|
@ -34,7 +34,9 @@
|
|||
|
||||
;;; Code:
|
||||
|
||||
(eval-when-compile (require 'cl-lib))
|
||||
(eval-when-compile
|
||||
(require 'cl-lib)
|
||||
(require 'seq))
|
||||
|
||||
|
||||
(defgroup tab-bar nil
|
||||
|
|
|
|||
Loading…
Reference in a new issue