summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeepak Goel <deego@gnufans.org>2005-09-18 12:40:26 +0000
committerDeepak Goel <deego@gnufans.org>2005-09-18 12:40:26 +0000
commit55aed1209c8ae9a2358bb683a5a12056b80883b4 (patch)
tree54e553c501812a89945a3e9353a653c0d22ae79b
parent7b8a295e799d7b957da2ac68cedb3fef1aa3dfef (diff)
downloademacs-55aed1209c8ae9a2358bb683a5a12056b80883b4.tar.gz
message format spec fixes, commit # 9
-rw-r--r--lisp/emacs-lisp/find-func.el2
-rw-r--r--lisp/emacs-lisp/lisp-mnt.el2
2 files changed, 2 insertions, 2 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))
diff --git a/lisp/emacs-lisp/lisp-mnt.el b/lisp/emacs-lisp/lisp-mnt.el
index b102b4da581..0fd49024beb 100644
--- a/lisp/emacs-lisp/lisp-mnt.el
+++ b/lisp/emacs-lisp/lisp-mnt.el
@@ -610,7 +610,7 @@ Prompts for bug subject TOPIC. Leaves you in a mail buffer."
(if version
(insert " version " version))
(newline 2)
- (message
+ (message "%s"
(substitute-command-keys "Type \\[mail-send] to send bug report."))))
(provide 'lisp-mnt)