aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepak Goel2005-09-18 12:40:26 +0000
committerDeepak Goel2005-09-18 12:40:26 +0000
commit55aed1209c8ae9a2358bb683a5a12056b80883b4 (patch)
tree54e553c501812a89945a3e9353a653c0d22ae79b
parent7b8a295e799d7b957da2ac68cedb3fef1aa3dfef (diff)
downloademacs-55aed1209c8ae9a2358bb683a5a12056b80883b4.tar.gz
emacs-55aed1209c8ae9a2358bb683a5a12056b80883b4.zip
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'."
260 (setq function (symbol-function function) 260 (setq function (symbol-function function)
261 def (symbol-function function))) 261 def (symbol-function function)))
262 (if aliases 262 (if aliases
263 (message aliases)) 263 (message "%s" aliases))
264 (let ((library 264 (let ((library
265 (cond ((eq (car-safe def) 'autoload) 265 (cond ((eq (car-safe def) 'autoload)
266 (nth 1 def)) 266 (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."
610 (if version 610 (if version
611 (insert " version " version)) 611 (insert " version " version))
612 (newline 2) 612 (newline 2)
613 (message 613 (message "%s"
614 (substitute-command-keys "Type \\[mail-send] to send bug report.")))) 614 (substitute-command-keys "Type \\[mail-send] to send bug report."))))
615 615
616(provide 'lisp-mnt) 616(provide 'lisp-mnt)