emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master f342f9c: Fix "make bootstrap" build warning in tab-


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master f342f9c: Fix "make bootstrap" build warning in tab-bar.el
Date: Tue, 22 Oct 2019 15:18:41 -0400 (EDT)

branch: master
commit f342f9cd267d39b3ef7d0c2a58718f4ac62f5abd
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    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").
---
 lisp/tab-bar.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/tab-bar.el b/lisp/tab-bar.el
index 098d705..8350b4e 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]