changeset 21466:98b189f8975f

(vhdl-loop, vhdl-while-loop): Add backslash.
author Karl Heuer <kwzh@gnu.org>
date Fri, 10 Apr 1998 09:28:12 +0000
parents 6b9a783d0eed
children 8ff5c2a5ee26
files lisp/progmodes/vhdl-mode.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/vhdl-mode.el	Fri Apr 10 08:36:34 1998 +0000
+++ b/lisp/progmodes/vhdl-mode.el	Fri Apr 10 09:28:12 1998 +0000
@@ -4522,7 +4522,7 @@
     (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 @@
       (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))
       )))