(vhdl-loop, vhdl-while-loop): Add backslash.

This commit is contained in:
Karl Heuer 1998-04-10 09:28:12 +00:00
parent 5f1aa82686
commit 23cec91f9a

View file

@ -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))
)))