diff options
| author | Eli Zaretskii | 2020-06-26 10:15:46 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2020-06-26 10:15:46 +0300 |
| commit | be7a07f38d0bc12e3f513d8a2626ae7f8d4bb7df (patch) | |
| tree | 9927a66efce727f85c70167fb7ea859476713f1d | |
| parent | 75bb40b163cdc4a5fffa873c1b430dc222f921ee (diff) | |
| download | emacs-be7a07f38d0bc12e3f513d8a2626ae7f8d4bb7df.tar.gz emacs-be7a07f38d0bc12e3f513d8a2626ae7f8d4bb7df.zip | |
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.
| -rw-r--r-- | lisp/emacs-lisp/seq.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/seq.el b/lisp/emacs-lisp/seq.el index e3037a71901..4c1a1797adc 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." | |||
| 348 | (setq acc (funcall function acc elt))) | 348 | (setq acc (funcall function acc elt))) |
| 349 | acc))) | 349 | acc))) |
| 350 | 350 | ||
| 351 | ;;;###autoload | ||
| 351 | (cl-defgeneric seq-every-p (pred sequence) | 352 | (cl-defgeneric seq-every-p (pred sequence) |
| 352 | "Return non-nil if (PRED element) is non-nil for all elements of SEQUENCE." | 353 | "Return non-nil if (PRED element) is non-nil for all elements of SEQUENCE." |
| 353 | (catch 'seq--break | 354 | (catch 'seq--break |