branch: externals/el-job commit def607408fb6c9cba6f9608c81d36ca0a66cf2be Author: Martin Edström <meedst...@runbox.eu> Commit: Martin Edström <meedst...@runbox.eu>
Lint --- el-job-child.el | 6 ++++++ el-job-test.el | 2 ++ el-job.el | 6 ++++++ 3 files changed, 14 insertions(+) diff --git a/el-job-child.el b/el-job-child.el index 0277dab824..95b56a363f 100644 --- a/el-job-child.el +++ b/el-job-child.el @@ -90,3 +90,9 @@ add that information to the final return value." (provide 'el-job-child) ;;; el-job-child.el ends here + +;; Local Variables: +;; checkdoc-spellcheck-documentation-flag: nil +;; checkdoc-verb-check-experimental-flag: nil +;; emacs-lisp-docstring-fill-column: 72 +;; End: diff --git a/el-job-test.el b/el-job-test.el index 4004becd02..f9885dd52a 100644 --- a/el-job-test.el +++ b/el-job-test.el @@ -19,6 +19,7 @@ (require 'ert) (require 'map) +(require 'subr-x) (require 'cl-lib) (require 'el-job-child) (require 'el-job) @@ -56,6 +57,7 @@ (ert-deftest el-job--ensure-compiled-lib () (when (and (require 'comp nil t) + (native-comp-available-p) (boundp 'comp-async-compilations) (hash-table-p comp-async-compilations) (fboundp #'comp-lookup-eln)) diff --git a/el-job.el b/el-job.el index fb4fb4f758..5dc63d5d75 100644 --- a/el-job.el +++ b/el-job.el @@ -819,3 +819,9 @@ Safely return nil otherwise, whether or not ID is known." (provide 'el-job) ;;; el-job.el ends here + +;; Local Variables: +;; checkdoc-spellcheck-documentation-flag: nil +;; checkdoc-verb-check-experimental-flag: nil +;; emacs-lisp-docstring-fill-column: 72 +;; End: