1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-23 18:47:57 +00:00

(vip-brac-function): Fix error format string.

This commit is contained in:
Karl Heuer 1996-01-29 23:20:08 +00:00
parent 21c78bce61
commit f8fbe212ec

View 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))