(vhdl-loop, vhdl-while-loop): Add backslash.
authorKarl Heuer <kwzh@gnu.org>
Fri, 10 Apr 1998 09:28:12 +0000 (09:28 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 10 Apr 1998 09:28:12 +0000 (09:28 +0000)
lisp/progmodes/vhdl-mode.el

index 61a2e21..be31fe9 100644 (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))
       )))