From f8fbe212ecc4276ad451e9f37395f055d5904591 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 29 Jan 1996 23:20:08 +0000 Subject: [PATCH] (vip-brac-function): Fix error format string. --- lisp/emulation/viper.el | 3 +-- 1 file changed, 1 insertion(+), 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)) -- 2.39.2