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 | 972ab4517e976c5ed80374bb45cc192c7dc7926e (patch) | |
tree | b4cf1961a264669893d4704637c4fa828b3d721f /lisp/emulation/viper-ex.el | |
parent | f7d2b34cb591dc1f02fc1d2fcac09d14db4eefe7 (diff) | |
download | emacs-972ab4517e976c5ed80374bb45cc192c7dc7926e.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"))) |