From 87873d788891029d9e44fa5458321d6a05849b94 Mon Sep 17 00:00:00 2001 From: Philipp Stephani Date: Thu, 7 May 2020 17:18:13 +0200 Subject: [PATCH] Explicitly require cl-lib. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This avoids a byte compilation warning: $ emacs -Q -batch -f batch-byte-compile lv.el In end of data: lv.el:147:1:Warning: the function ‘cl-count’ is not known to be defined. --- lv.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lv.el b/lv.el index bc83f07..61d0971 100644 --- a/lv.el +++ b/lv.el @@ -33,6 +33,8 @@ ;;; Code: +(require 'cl-lib) + (defgroup lv nil "The other echo area." :group 'minibuffer