aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKarl Heuer <[email protected]>1998-04-10 09:28:12 +0000
committerKarl Heuer <[email protected]>1998-04-10 09:28:12 +0000
commit23cec91f9aa5f5b0f073c12a3104b227f1d02178 (patch)
tree9911620c741e72a107b6e4e23fa9590d98472a6d /lisp
parent5f1aa8268614a53e143c01af7e8fb1ecb847c4d1 (diff)
(vhdl-loop, vhdl-while-loop): Add backslash.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/progmodes/vhdl-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el
index 61a2e21da9..be31fe900b 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))
)))