diff options
| author | Lars Ingebrigtsen | 2022-07-23 00:01:00 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-07-23 00:01:00 +0200 |
| commit | f268cdc185b5e98456434da0cfda963b614227fd (patch) | |
| tree | cb421d1f9de97883a4dc410b92e87860222abe89 | |
| parent | dd902c43f3a30baf614986b8126eb30f1e8c6163 (diff) | |
| download | emacs-f268cdc185b5e98456434da0cfda963b614227fd.tar.gz emacs-f268cdc185b5e98456434da0cfda963b614227fd.zip | |
Fix typo in error message in native-compile-prune-cache
* lisp/emacs-lisp/comp.el (native-compile-prune-cache): Fix typo
(bug#56713).
| -rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 04df4885de1..5ee10fcbca2 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el | |||
| @@ -4294,7 +4294,7 @@ of (commands) to run simultaneously." | |||
| 4294 | "Remove .eln files that aren't applicable to the current Emacs invocation." | 4294 | "Remove .eln files that aren't applicable to the current Emacs invocation." |
| 4295 | (interactive) | 4295 | (interactive) |
| 4296 | (unless (featurep 'native-compile) | 4296 | (unless (featurep 'native-compile) |
| 4297 | (user-error "This Emacs isn't build with native-compile support")) | 4297 | (user-error "This Emacs isn't built with native-compile support")) |
| 4298 | (dolist (dir native-comp-eln-load-path) | 4298 | (dolist (dir native-comp-eln-load-path) |
| 4299 | ;; If a directory is non absolute it is assumed to be relative to | 4299 | ;; If a directory is non absolute it is assumed to be relative to |
| 4300 | ;; `invocation-directory'. | 4300 | ;; `invocation-directory'. |