From: Karl Heuer Date: Fri, 10 Apr 1998 09:28:12 +0000 (+0000) Subject: (vhdl-loop, vhdl-while-loop): Add backslash. X-Git-Tag: emacs-20.3~1608 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=23cec91f9aa5f5b0f073c12a3104b227f1d02178;p=emacs.git (vhdl-loop, vhdl-while-loop): Add backslash. --- 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." (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)) )))