diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:40:26 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:40:26 +0000 |
commit | 55aed1209c8ae9a2358bb683a5a12056b80883b4 (patch) | |
tree | 54e553c501812a89945a3e9353a653c0d22ae79b /lisp/emacs-lisp/find-func.el | |
parent | 7b8a295e799d7b957da2ac68cedb3fef1aa3dfef (diff) | |
download | emacs-55aed1209c8ae9a2358bb683a5a12056b80883b4.tar.gz emacs-55aed1209c8ae9a2358bb683a5a12056b80883b4.tar.bz2 emacs-55aed1209c8ae9a2358bb683a5a12056b80883b4.zip |
message format spec fixes, commit # 9
Diffstat (limited to 'lisp/emacs-lisp/find-func.el')
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index d860bfcd598..dea72fc7567 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -260,7 +260,7 @@ in `load-path'." (setq function (symbol-function function) def (symbol-function function))) (if aliases - (message aliases)) + (message "%s" aliases)) (let ((library (cond ((eq (car-safe def) 'autoload) (nth 1 def)) |