summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))