summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-25 01:13:01 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-25 01:13:01 +0000
commit4cea11ffadc5a3ea1f79bf6558572d21d51dbb9c (patch)
tree006247b7b36d15e7b4d420cf0936418b3cf4b978 /lisp
parent86fec582331280a585491cf3b1530a0db4ca93a2 (diff)
downloademacs-4cea11ffadc5a3ea1f79bf6558572d21d51dbb9c.tar.gz
emacs-4cea11ffadc5a3ea1f79bf6558572d21d51dbb9c.tar.bz2
emacs-4cea11ffadc5a3ea1f79bf6558572d21d51dbb9c.zip
(vip-replace-string, vip-search-forward, vip-search-backward): Delete format call inside message.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emulation/vip.el18
1 files changed, 9 insertions, 9 deletions
diff --git a/lisp/emulation/vip.el b/lisp/emulation/vip.el
index e9283fb30a2..8a7f0757b6d 100644
--- a/lisp/emulation/vip.el
+++ b/lisp/emulation/vip.el
@@ -939,9 +939,9 @@ the query replace mode will toggle between string replace and regexp replace."
(if (string= str "")
(progn
(setq vip-re-replace (not vip-re-replace))
- (message (format "Replace mode changed to %s."
- (if vip-re-replace "regexp replace"
- "string replace"))))
+ (message "Replace mode changed to %s."
+ (if vip-re-replace "regexp replace"
+ "string replace")))
(if vip-re-replace
;; (replace-regexp
;; str
@@ -1460,9 +1460,9 @@ giving null search string."
(if (string= vip-s-string "")
(progn
(setq vip-re-search (not vip-re-search))
- (message (format "Search mode changed to %s search."
- (if vip-re-search "regular expression"
- "vanilla"))))
+ (message "Search mode changed to %s search."
+ (if vip-re-search "regular expression"
+ "vanilla")))
(vip-search vip-s-string t val)
(if com
(progn
@@ -1480,9 +1480,9 @@ giving null search string."
(if (string= vip-s-string "")
(progn
(setq vip-re-search (not vip-re-search))
- (message (format "Search mode changed to %s search."
- (if vip-re-search "regular expression"
- "vanilla"))))
+ (message "Search mode changed to %s search."
+ (if vip-re-search "regular expression"
+ "vanilla")))
(vip-search vip-s-string nil val)
(if com
(progn