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 | 75632953039ca1674d0c306c5ef472cd9f54c20c (patch) | |
tree | 8a851a485be3fc20d5ffdf2027a7108b58adc92f /lisp/emacs-lisp/autoload.el | |
parent | c83704f39b3d783f3f6593997752d3201578958c (diff) | |
download | emacs-75632953039ca1674d0c306c5ef472cd9f54c20c.tar.gz |
(update-file-autoloads): Fix message.
Diffstat (limited to 'lisp/emacs-lisp/autoload.el')
-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)))))))) |