diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:25:02 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:25:02 +0000 |
commit | 8a26c16552f49f7a61e1e338952110b59e5b2664 (patch) | |
tree | 573b8698befa710db88672563a1714bbed3e0f0a /lisp/dired-aux.el | |
parent | be9bb408d2f2e063cc4606cbaa04912a45719efe (diff) | |
download | emacs-8a26c16552f49f7a61e1e338952110b59e5b2664.tar.gz |
Message format spec fixes (1)
Diffstat (limited to 'lisp/dired-aux.el')
-rw-r--r-- | lisp/dired-aux.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index 0d3f6fe125b..17e61792d33 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -845,7 +845,7 @@ Otherwise, the rule is a compression rule, and compression is done with gzip.") (apply 'message qprompt qs-args) (setq char (set qs-var (read-char)))) ;; Display the question with the answer. - (message (concat (apply 'format qprompt qs-args) + (message "%s" (concat (apply 'format qprompt qs-args) (char-to-string char))) (memq (cdr elt) '(t y yes))))))) |