(let ((greeting (read (current-buffer))))
(if (not (= (car greeting) 1))
(error "Bad ispell version: wanted 1, got %d" (car greeting)))
- (message (car (cdr greeting))))
+ (message "%s" (car (cdr greeting))))
(delete-region (point-min) last-char))))
;; Make sure ispell is ready for a command.
(cond ((null ispell-bad-words)
(error "Ispell has not yet been run"))
((markerp (car ispell-bad-words))
- (message (substitute-command-keys
+ (message "%s"
+ (substitute-command-keys
"Type \\[ispell-next] to continue")))
((eq (car ispell-bad-words) nil)
(setq ispell-bad-words nil)
;;; This just causes confusion. -- rms.
;;; (goto-char start)
;;; (sit-for 0)
- (message (format "Ispell checking %s" word))
+ (message "Ispell checking %s" word)
(ispell-cmd word)
(let ((message (ispell-next-message)))
(cond ((eq message t)