diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-01-29 23:19:49 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-01-29 23:19:49 +0000 |
commit | ddccf0094b3b0dabf36a9cf19a5fba30ac0d9b9b (patch) | |
tree | f6f80ffbfa0e7a411a487077401269e1e9af9405 /lisp | |
parent | f29cb86d3d395e93381a7dd8b42dc10cd506f5ce (diff) | |
download | emacs-ddccf0094b3b0dabf36a9cf19a5fba30ac0d9b9b.tar.gz |
(vip-register-macro): Fix error format string.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/emulation/viper-macs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emulation/viper-macs.el b/lisp/emulation/viper-macs.el index 3554aba8666..f1a78d39578 100644 --- a/lisp/emulation/viper-macs.el +++ b/lisp/emulation/viper-macs.el @@ -903,7 +903,7 @@ there." (setq vip-last-macro-reg reg) (vip-set-register-macro reg)))) (t - (error (format "`%c': Unknown register" reg)))))) + (error "`%c': Unknown register" reg))))) (defun vip-global-execute () |