diff options
author | Glenn Morris <rgm@gnu.org> | 2015-06-05 16:10:18 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2015-06-05 16:10:18 -0400 |
commit | 1805ce763ebb40d10c0926f8e97de39e3b988722 (patch) | |
tree | 4a68580e3cd49fd0a4750fda8b31b12d79fe873c /lisp/cus-dep.el | |
parent | 34ad02767b8dec902d9e78b38168d71a6b93f94c (diff) | |
download | emacs-1805ce763ebb40d10c0926f8e97de39e3b988722.tar.gz |
Tweak some build messages.
* lisp/Makefile.in ($(lisp)/loaddefs.el):
* lisp/cus-dep.el (custom-make-dependencies):
* lisp/finder.el (finder-compile-keywords): Say what we are doing.
* lisp/international/titdic-cnv.el (batch-titdic-convert):
Don't say how to compile.
Diffstat (limited to 'lisp/cus-dep.el')
-rw-r--r-- | lisp/cus-dep.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-dep.el b/lisp/cus-dep.el index b8a9eb82655..856c96dd034 100644 --- a/lisp/cus-dep.el +++ b/lisp/cus-dep.el @@ -60,7 +60,7 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS" ;; Use up command-line-args-left else Emacs can try to open ;; the args as directories after we are done. (while (setq subdir (pop command-line-args-left)) - (message "Directory %s" subdir) + (message "Scanning %s for custom" subdir) (let ((files (directory-files subdir nil "\\`[^=.].*\\.el\\'")) (default-directory (file-name-as-directory (expand-file-name subdir))) |