diff options
| author | Karl Heuer | 1996-01-29 23:20:08 +0000 |
|---|---|---|
| committer | Karl Heuer | 1996-01-29 23:20:08 +0000 |
| commit | f8fbe212ecc4276ad451e9f37395f055d5904591 (patch) | |
| tree | e982872c9a50d4914c2937517edde8c7a5f959b4 | |
| parent | 21c78bce61af38ead073e5d7324983db2773dd0e (diff) | |
| download | emacs-f8fbe212ecc4276ad451e9f37395f055d5904591.tar.gz emacs-f8fbe212ecc4276ad451e9f37395f055d5904591.zip | |
(vip-brac-function): Fix error format string.
| -rw-r--r-- | lisp/emulation/viper.el | 3 |
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." | |||
| 4831 | ((vip-valid-register reg '(letter)) | 4831 | ((vip-valid-register reg '(letter)) |
| 4832 | (let* ((val (get-register (1+ (- reg ?a)))) | 4832 | (let* ((val (get-register (1+ (- reg ?a)))) |
| 4833 | (buf (if (not val) | 4833 | (buf (if (not val) |
| 4834 | (error | 4834 | (error vip-EmptyTextmarker reg) |
| 4835 | (format vip-EmptyTextmarker reg)) | ||
| 4836 | (marker-buffer val))) | 4835 | (marker-buffer val))) |
| 4837 | (pos (marker-position val)) | 4836 | (pos (marker-position val)) |
| 4838 | line-no text (s pos) (e pos)) | 4837 | line-no text (s pos) (e pos)) |