summaryrefslogtreecommitdiff
path: root/lisp/emulation/vip.el
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2005-06-16 14:38:12 +0000
committerJuanma Barranquero <lekktu@gmail.com>2005-06-16 14:38:12 +0000
commit2ae2e81e9b38bd414fd902e2bdeac1de877d0c22 (patch)
treeec01ffe076a3cf9fb87c1dc5f7bccb1d1e48f155 /lisp/emulation/vip.el
parent376166e6e670031b0d2d98436cc5f1e8626e02ea (diff)
(vip-ex): Don't use `format' on `error' arguments.
Diffstat (limited to 'lisp/emulation/vip.el')
-rw-r--r--lisp/emulation/vip.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/vip.el b/lisp/emulation/vip.el
index dace12d4c8..7584436e20 100644
--- a/lisp/emulation/vip.el
+++ b/lisp/emulation/vip.el
@@ -2292,7 +2292,7 @@ a token has type \(command, address, end-mark\) and value."
(setq cont nil))
(t (error "Extra character at end of a command")))))))
((string= ex-token-type "non-command")
- (error (format "%s: Not an editor command" ex-token)))
+ (error "%s: Not an editor command" ex-token))
((string= ex-token-type "whole")
(setq ex-addresses
(cons (point-max) (cons (point-min) ex-addresses))))