summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/comp.el
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-10-17 15:26:56 +0200
committerStefan Kangas <stefankangas@gmail.com>2022-10-17 15:28:25 +0200
commiteff4a4f49a7c45df9d27f0515c07d8e8727d84bb (patch)
tree66811dbbe056a41e105bdef627065ec0198b4146 /lisp/emacs-lisp/comp.el
parent40b734c5003c71dc533d588bb00ea51a983bd730 (diff)
downloademacs-eff4a4f49a7c45df9d27f0515c07d8e8727d84bb.tar.gz
Improve native-compile-prune-cache messages
* lisp/emacs-lisp/comp.el (native-compile-prune-cache): Quote name of pruned directory.
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r--lisp/emacs-lisp/comp.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el
index 460d260192d..b7c792e64bd 100644
--- a/lisp/emacs-lisp/comp.el
+++ b/lisp/emacs-lisp/comp.el
@@ -4342,7 +4342,7 @@ of (commands) to run simultaneously."
(not (equal (file-name-nondirectory
(directory-file-name subdir))
comp-native-version-dir)))
- (message "Deleting %s..." subdir)
+ (message "Deleting `%s'..." subdir)
;; We're being overly cautious here -- there shouldn't be
;; anything but .eln files in these directories.
(dolist (eln (directory-files subdir t "\\.eln\\(\\.tmp\\)?\\'"))