aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDeepak Goel2005-09-18 12:32:51 +0000
committerDeepak Goel2005-09-18 12:32:51 +0000
commit8c307e0f56cac8a485ba6355ccd6f9e943b49f7c (patch)
tree2f0678d7e55d4955077f780b5f3a54da88cd9e96 /lisp
parent29a4e67d88be7ea5b8ba6a2164c2dc9771bcd7ab (diff)
downloademacs-8c307e0f56cac8a485ba6355ccd6f9e943b49f7c.tar.gz
emacs-8c307e0f56cac8a485ba6355ccd6f9e943b49f7c.zip
Message format spec fixes, commit no. 4
Diffstat (limited to 'lisp')
-rw-r--r--lisp/play/decipher.el2
-rw-r--r--lisp/play/landmark.el2
-rw-r--r--lisp/play/zone.el2
3 files changed, 3 insertions, 3 deletions
diff --git a/lisp/play/decipher.el b/lisp/play/decipher.el
index 6471e23b5f2..e8850e6fdf4 100644
--- a/lisp/play/decipher.el
+++ b/lisp/play/decipher.el
@@ -600,7 +600,7 @@ you have determined the keyword."
600(defun decipher-show-alphabet () 600(defun decipher-show-alphabet ()
601 "Display the current cipher alphabet in the message line." 601 "Display the current cipher alphabet in the message line."
602 (interactive) 602 (interactive)
603 (message 603 (message "%s"
604 (mapconcat (lambda (a) 604 (mapconcat (lambda (a)
605 (concat 605 (concat
606 (char-to-string (car a)) 606 (char-to-string (car a))
diff --git a/lisp/play/landmark.el b/lisp/play/landmark.el
index 4da291d4505..67c6c0d3021 100644
--- a/lisp/play/landmark.el
+++ b/lisp/play/landmark.el
@@ -1473,7 +1473,7 @@ After this limit is reached, lm-random-move is called to push him out of it."
1473 (lm-plot-square (lm-point-square) 1) 1473 (lm-plot-square (lm-point-square) 1)
1474 (incf lm-number-of-moves) 1474 (incf lm-number-of-moves)
1475 (if lm-output-moves 1475 (if lm-output-moves
1476 (message (format "Moves made: %d" lm-number-of-moves)))) 1476 (message "Moves made: %d" lm-number-of-moves)))
1477 1477
1478 1478
1479(defun lm-random-move () 1479(defun lm-random-move ()
diff --git a/lisp/play/zone.el b/lisp/play/zone.el
index 876490b1f9a..7441c2b9aa8 100644
--- a/lisp/play/zone.el
+++ b/lisp/play/zone.el
@@ -179,7 +179,7 @@ If the element is a function or a list of a function and a number,
179 (error 179 (error
180 (funcall restore) 180 (funcall restore)
181 (while (not (input-pending-p)) 181 (while (not (input-pending-p))
182 (message (format "We were zoning when we wrote %s..." pgm)) 182 (message "We were zoning when we wrote %s..." pgm)
183 (sit-for 3) 183 (sit-for 3)
184 (message "...here's hoping we didn't hose your buffer!") 184 (message "...here's hoping we didn't hose your buffer!")
185 (sit-for 3))) 185 (sit-for 3)))