diff options
| author | Karl Heuer | 1998-04-10 09:28:12 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-04-10 09:28:12 +0000 |
| commit | 23cec91f9aa5f5b0f073c12a3104b227f1d02178 (patch) | |
| tree | 9911620c741e72a107b6e4e23fa9590d98472a6d | |
| parent | 5f1aa8268614a53e143c01af7e8fb1ecb847c4d1 (diff) | |
| download | emacs-23cec91f9aa5f5b0f073c12a3104b227f1d02178.tar.gz 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." | |||
| 4522 | (insert "\n\n") | 4522 | (insert "\n\n") |
| 4523 | (indent-to margin) | 4523 | (indent-to margin) |
| 4524 | (vhdl-insert-keyword "END LOOP") | 4524 | (vhdl-insert-keyword "END LOOP") |
| 4525 | (insert (if named (concat " " name ";") ?;)) | 4525 | (insert (if named (concat " " name ";") ?\;)) |
| 4526 | (forward-line -1) | 4526 | (forward-line -1) |
| 4527 | (indent-to (+ margin vhdl-basic-offset)) | 4527 | (indent-to (+ margin vhdl-basic-offset)) |
| 4528 | )) | 4528 | )) |
| @@ -4882,7 +4882,7 @@ declaration, a for loop otherwise." | |||
| 4882 | (vhdl-insert-keyword " LOOP\n\n") | 4882 | (vhdl-insert-keyword " LOOP\n\n") |
| 4883 | (indent-to margin) | 4883 | (indent-to margin) |
| 4884 | (vhdl-insert-keyword "END LOOP") | 4884 | (vhdl-insert-keyword "END LOOP") |
| 4885 | (insert (if named (concat " " name ";") ?;)) | 4885 | (insert (if named (concat " " name ";") ?\;)) |
| 4886 | (forward-line -1) | 4886 | (forward-line -1) |
| 4887 | (indent-to (+ margin vhdl-basic-offset)) | 4887 | (indent-to (+ margin vhdl-basic-offset)) |
| 4888 | ))) | 4888 | ))) |