aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2019-10-22 21:18:33 +0200
committerLars Ingebrigtsen2019-10-22 21:18:33 +0200
commitf342f9cd267d39b3ef7d0c2a58718f4ac62f5abd (patch)
treef6113040733ad92d781fcc8e9bff4909aff709a0
parentb1be40c468ccffd7cd0793f3e23f8413d9876f5d (diff)
downloademacs-f342f9cd267d39b3ef7d0c2a58718f4ac62f5abd.tar.gz
emacs-f342f9cd267d39b3ef7d0c2a58718f4ac62f5abd.zip
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").
-rw-r--r--lisp/tab-bar.el4
1 files changed, 3 insertions, 1 deletions
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 @@
34 34
35;;; Code: 35;;; Code:
36 36
37(eval-when-compile (require 'cl-lib)) 37(eval-when-compile
38 (require 'cl-lib)
39 (require 'seq))
38 40
39 41
40(defgroup tab-bar nil 42(defgroup tab-bar nil