branch: elpa/datetime commit 4e6a7af643c43a7ac9b1311d40c9ea07fba79ee7 Author: Paul Pogonyshev <pogonys...@gmail.com> Commit: Paul Pogonyshev <pogonys...@gmail.com>
Fucking byte-compilation warnings. --- datetime.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datetime.el b/datetime.el index 7f6456f36f..d374882206 100644 --- a/datetime.el +++ b/datetime.el @@ -377,7 +377,7 @@ when necessary." (aref (eval-when-compile (let (result) (dotimes (year 400) (push (and (= (% year 4) 0) (or (/= (% year 100) 0) (= (% year 400) 0))) result)) - (apply (if (fboundp #'bool-vector) #'bool-vector #'vector) (nreverse result)))) + (with-no-warnings (apply (if (fboundp #'bool-vector) #'bool-vector #'vector) (nreverse result))))) (mod year 400))) (defconst datetime--gregorian-cumulative-year-days (let ((days 0)