diff options
author | Erik Naggum <erik@naggum.no> | 1996-01-16 13:14:12 +0000 |
---|---|---|
committer | Erik Naggum <erik@naggum.no> | 1996-01-16 13:14:12 +0000 |
commit | 0dccc8d3f79235a1017498c4494220371d8dac63 (patch) | |
tree | 4a8c3c71fed46203b4bae18eef8d1159bb8ce910 | |
parent | 6236826542451f83067766b27e503438aa64831d (diff) | |
download | emacs-0dccc8d3f79235a1017498c4494220371d8dac63.tar.gz |
(update-file-autoloads): Fix message.
-rw-r--r-- | lisp/emacs-lisp/autoload.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/autoload.el b/lisp/emacs-lisp/autoload.el index 3a4125c6b68..439f13cd515 100644 --- a/lisp/emacs-lisp/autoload.el +++ b/lisp/emacs-lisp/autoload.el @@ -362,7 +362,7 @@ autoloads go somewhere else.") nil t) nil (if (interactive-p) - (message file " has no autoloads")) + (message "%s has no autoloads" file)) t) (or existing-buffer (kill-buffer (current-buffer)))))))) |