]> git.eshelyaron.com Git - emacs.git/commitdiff
(vip-brac-function): Fix error format string.
authorKarl Heuer <kwzh@gnu.org>
Mon, 29 Jan 1996 23:20:08 +0000 (23:20 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 29 Jan 1996 23:20:08 +0000 (23:20 +0000)
lisp/emulation/viper.el

index a0384aa72dce37e88edbcd0bd9f5c6a2700ecff4..6209391fed463bd1a33e8a6c5f322357a181cbb0 100644 (file)
@@ -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))