diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-04-10 09:28:12 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-04-10 09:28:12 +0000 |
commit | 23cec91f9aa5f5b0f073c12a3104b227f1d02178 (patch) | |
tree | 9911620c741e72a107b6e4e23fa9590d98472a6d | |
parent | 5f1aa8268614a53e143c01af7e8fb1ecb847c4d1 (diff) | |
download | emacs-23cec91f9aa5f5b0f073c12a3104b227f1d02178.tar.gz emacs-23cec91f9aa5f5b0f073c12a3104b227f1d02178.tar.bz2 emacs-23cec91f9aa5f5b0f073c12a3104b227f1d02178.zip |
(vhdl-loop, vhdl-while-loop): Add backslash.
-rw-r--r-- | lisp/progmodes/vhdl-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 61a2e21da94..be31fe900b9 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -4522,7 +4522,7 @@ declaration, a for loop otherwise." (insert "\n\n") (indent-to margin) (vhdl-insert-keyword "END LOOP") - (insert (if named (concat " " name ";") ?;)) + (insert (if named (concat " " name ";") ?\;)) (forward-line -1) (indent-to (+ margin vhdl-basic-offset)) )) @@ -4882,7 +4882,7 @@ declaration, a for loop otherwise." (vhdl-insert-keyword " LOOP\n\n") (indent-to margin) (vhdl-insert-keyword "END LOOP") - (insert (if named (concat " " name ";") ?;)) + (insert (if named (concat " " name ";") ?\;)) (forward-line -1) (indent-to (+ margin vhdl-basic-offset)) ))) |