emacs-diffs
[Top][All Lists]
Advanced

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

master be7a07f: Fix byte-compilation warning in project.el


From: Eli Zaretskii
Subject: master be7a07f: Fix byte-compilation warning in project.el
Date: Fri, 26 Jun 2020 03:16:38 -0400 (EDT)

branch: master
commit be7a07f38d0bc12e3f513d8a2626ae7f8d4bb7df
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Fix byte-compilation warning in project.el
    
    * lisp/emacs-lisp/seq.el (seq-every-p): Autoload it.  This fixes
    byte-compilation warning in project.el.
---
 lisp/emacs-lisp/seq.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el
index e3037a7..4c1a179 100644
--- a/lisp/emacs-lisp/seq.el
+++ b/lisp/emacs-lisp/seq.el
@@ -348,6 +348,7 @@ If SEQUENCE is empty, return INITIAL-VALUE and FUNCTION is 
not called."
         (setq acc (funcall function acc elt)))
       acc)))
 
+;;;###autoload
 (cl-defgeneric seq-every-p (pred sequence)
   "Return non-nil if (PRED element) is non-nil for all elements of SEQUENCE."
   (catch 'seq--break



reply via email to

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