diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:28:30 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:28:30 +0000 |
commit | 5673af85e4a427c550b5a85825340250bfa36c9c (patch) | |
tree | 4b9c53da731ddff07ec2c962abc184cdf7aac5d7 /lisp/textmodes/ispell.el | |
parent | 8a26c16552f49f7a61e1e338952110b59e5b2664 (diff) | |
download | emacs-5673af85e4a427c550b5a85825340250bfa36c9c.tar.gz |
Message format spec fixes (2)
Diffstat (limited to 'lisp/textmodes/ispell.el')
-rw-r--r-- | lisp/textmodes/ispell.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/ispell.el b/lisp/textmodes/ispell.el index 2cfa9c829b6..1259b607b1f 100644 --- a/lisp/textmodes/ispell.el +++ b/lisp/textmodes/ispell.el @@ -788,7 +788,7 @@ Otherwise returns the library directory name, if that is defined." (point)) ", " ispell-version)) - (message result)) + (message "%s" result)) ;; return library directory. (if (re-search-forward "LIBDIR = \\\"\\([^ \t\n]*\\)\\\"" nil t) (setq result (buffer-substring (match-beginning 1) (match-end 1))))) @@ -2387,7 +2387,7 @@ Optional third arg SHIFT is an offset to apply based on previous corrections." (substring output 2)) ; return root word ((equal 0 (string-match "[\ra-zA-Z]" output)) (ding) ; error message from ispell! - (message (concat "Ispell error: " output)) + (message "Ispell error: %s" output) (sit-for 5) nil) (t ; need to process &, ?, and #'s |