master 867b20aa2b9 2/2: ; Fix comments of last commit (bug#81223)
Eli Zaretskii <[email protected]>
| Newsgroups | gmane.emacs.diffs |
|---|---|
| Message-ID | <[email protected]> |
branch: master commit 867b20aa2b9229cf9df017b0400f853c93e74d3b Author: Eli Zaretskii <[email protected]> Commit: Eli Zaretskii <[email protected]> ; Fix comments of last commit (bug#81223) * lisp/emacs-lisp/comp-run.el (comp--run-async-workers): Fix punctuation in comments; add details. --- lisp/emacs-lisp/comp-run.el | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/lisp/emacs-lisp/comp-run.el b/lisp/emacs-lisp/comp-run.el index 203b8531172..7200da28086 100644 --- a/lisp/emacs-lisp/comp-run.el +++ b/lisp/emacs-lisp/comp-run.el @@ -280,11 +280,12 @@ display a message." "`comp-files-queue' should be \".el\" files: %s" source-file) when (and - ;; Verify that the source file still exists on disk - ;; as a regular file before calling - ;; `comp-el-to-eln-filename'. This check prevents - ;; `file-missing' errors caused by stale jobs in the - ;; async compilation queue. + ;; Verify that the source file still exists on disk as a + ;; regular file before calling `comp-el-to-eln-filename'. + ;; This check prevents `file-missing' errors caused by + ;; stale jobs in the async compilation queue. (For + ;; example, this can happen when files are removed during + ;; a package's upgrade or deletion.) (file-regular-p source-file) (or native-comp-always-compile load ; Always compile when the compilation is @@ -372,7 +373,7 @@ display a message." ;; Catch the file-missing error that ;; occurs if the original source file is ;; deleted while the asynchronous worker - ;; is compiling it. Handling this error + ;; is compiling it. Handling this error ;; prevents the sentinel from aborting ;; and ensures the compilation queue ;; continues processing.