1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-15 17:00:26 +00:00

(vip-ex): Don't use format' on error' arguments.

This commit is contained in:
Juanma Barranquero 2005-06-16 14:38:12 +00:00
parent 376166e6e6
commit 2ae2e81e9b

View File

@ -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))))