summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1996-01-29 23:20:08 +0000
committerKarl Heuer <kwzh@gnu.org>1996-01-29 23:20:08 +0000
commitfcda942883d2771c811ce026af9288c3dc292836 (patch)
tree672d396308e6ba8b446338a5b675e0a905acb30a
parentddccf0094b3b0dabf36a9cf19a5fba30ac0d9b9b (diff)
downloademacs-fcda942883d2771c811ce026af9288c3dc292836.tar.gz
(vip-brac-function): Fix error format string.
-rw-r--r--lisp/emulation/viper.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/emulation/viper.el b/lisp/emulation/viper.el
index a0384aa72dc..6209391fed4 100644
--- a/lisp/emulation/viper.el
+++ b/lisp/emulation/viper.el
@@ -4831,8 +4831,7 @@ One can use `` and '' to temporarily jump 1 step back."
((vip-valid-register reg '(letter))
(let* ((val (get-register (1+ (- reg ?a))))
(buf (if (not val)
- (error
- (format vip-EmptyTextmarker reg))
+ (error vip-EmptyTextmarker reg)
(marker-buffer val)))
(pos (marker-position val))
line-no text (s pos) (e pos))