From: Karl Heuer Date: Mon, 29 Jan 1996 23:20:08 +0000 (+0000) Subject: (vip-brac-function): Fix error format string. X-Git-Tag: emacs-19.34~1426 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f8fbe212ecc4276ad451e9f37395f055d5904591;p=emacs.git (vip-brac-function): Fix error format string. --- 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))