projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
75bb40b
)
Fix byte-compilation warning in project.el
author
Eli Zaretskii
<eliz@gnu.org>
Fri, 26 Jun 2020 07:15:46 +0000
(10:15 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Fri, 26 Jun 2020 07:15:46 +0000
(10:15 +0300)
* lisp/emacs-lisp/seq.el (seq-every-p): Autoload it. This fixes
byte-compilation warning in project.el.
lisp/emacs-lisp/seq.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/seq.el
b/lisp/emacs-lisp/seq.el
index e3037a71901d9d162c7c20665a8694aeb2f71ccb..4c1a1797adceee5c634f125f259a42df4d62cd50 100644
(file)
--- 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