diff options
author | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:39:40 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2005-09-18 12:39:40 +0000 |
commit | 7b8a295e799d7b957da2ac68cedb3fef1aa3dfef (patch) | |
tree | f6bf1f40824b58b2d7e40b136df6d958954e61a6 /lisp/emulation/viper-ex.el | |
parent | d8ea53f999a0b53278b9dd59f7902d325edbd45b (diff) | |
download | emacs-7b8a295e799d7b957da2ac68cedb3fef1aa3dfef.tar.gz |
message format spec fixes, commit # 8
Diffstat (limited to 'lisp/emulation/viper-ex.el')
-rw-r--r-- | lisp/emulation/viper-ex.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emulation/viper-ex.el b/lisp/emulation/viper-ex.el index 87d2d7f5d5a..5321228fe29 100644 --- a/lisp/emulation/viper-ex.el +++ b/lisp/emulation/viper-ex.el @@ -1590,7 +1590,7 @@ reversed." ;; Ex print working directory (defun ex-pwd () - (message default-directory)) + (message "%s" default-directory)) ;; Ex quit command (defun ex-quit () @@ -2230,7 +2230,7 @@ Type 'mak ' (including the space) to run make with no args." (if (buffer-modified-p) "[Modified]" "[Unchanged]"))) (if (< (+ 1 (length info) (length file)) (window-width (minibuffer-window))) - (message (concat file " " info)) + (message "%s" (concat file " " info)) (save-window-excursion (with-output-to-temp-buffer " *viper-info*" (princ (concat "\n" file "\n\n\t" info "\n\n"))) |