diff options
author | Deepak Goel <deego@gnufans.org> | 2007-12-06 18:36:46 +0000 |
---|---|---|
committer | Deepak Goel <deego@gnufans.org> | 2007-12-06 18:36:46 +0000 |
commit | 768b14f8a010ac4a86ae9d9d6a80f06d429f4372 (patch) | |
tree | cb2ff7d8c334abf6ddcd7b63cf9dc8a7407f5d64 /lisp/progmodes/vhdl-mode.el | |
parent | e9e4d61914ede6f19c75d1d6962c2977a1be213b (diff) | |
download | emacs-768b14f8a010ac4a86ae9d9d6a80f06d429f4372.tar.gz emacs-768b14f8a010ac4a86ae9d9d6a80f06d429f4372.tar.bz2 emacs-768b14f8a010ac4a86ae9d9d6a80f06d429f4372.zip |
Fix buggy `error' calls in progmodes/
Diffstat (limited to 'lisp/progmodes/vhdl-mode.el')
-rw-r--r-- | lisp/progmodes/vhdl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index df315e4f46e..5b14e6a857f 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -9095,7 +9095,7 @@ otherwise." (progn (delete-region (point) (progn (end-of-line) (point))) (vhdl-template-insert-date)) (unless noerror - (error (concat "ERROR: Modification date prefix string \"" + (error "%s" (concat "ERROR: Modification date prefix string \"" vhdl-modify-date-prefix-string "\" not found"))))))) (defun vhdl-template-modify-noerror () |