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/vc.el | |
parent | be9bb408d2f2e063cc4606cbaa04912a45719efe (diff) | |
download | emacs-8a26c16552f49f7a61e1e338952110b59e5b2664.tar.gz |
Message format spec fixes (1)
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 8e87cb50eb4..665bb3d31e7 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -2333,10 +2333,10 @@ allowed and simply skipped)." (format "Updating %s... " (abbreviate-file-name dir)) (format "Retrieving snapshot into %s... " (abbreviate-file-name dir))))) - (message msg) + (message "%s" msg) (vc-call-backend (vc-responsible-backend dir) 'retrieve-snapshot dir name update) - (message (concat msg "done")))) + (message "%s" (concat msg "done")))) (defun vc-default-retrieve-snapshot (backend dir name update) (if (string= name "") |