summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrancesco Potortì <pot@gnu.org>2003-03-04 14:33:05 +0000
committerFrancesco Potortì <pot@gnu.org>2003-03-04 14:33:05 +0000
commitbcbeac8c54f8e87a30684b88a8c00beb061f6871 (patch)
tree9d44edd629abbb8090b9c18d3041af20a774fba7
parenta7406fa0507c58f3ac8e8fc0915456a40529691b (diff)
downloademacs-bcbeac8c54f8e87a30684b88a8c00beb061f6871.tar.gz
(vhdl-comment-uncomment-region): Remove two comment characters at start
of line instead of one.
-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 f60ff83fd15..873361e7337 100644
--- a/lisp/progmodes/vhdl-mode.el
+++ b/lisp/progmodes/vhdl-mode.el
@@ -605,7 +605,7 @@ begin -- process <label>
<cursor>
elsif <clock>'event and <clock> = '1' then -- rising clock edge
if <enable> = '1' then -- synchronous load
-
+
end if;
end if;
end process <label>;"
@@ -7567,7 +7567,7 @@ If starting after end-comment-column, start a new line."
(beginning-of-line)
(setq beg (point))
(if (looking-at comment-start)
- (comment-region beg end -1)
+ (comment-region beg end -2)
(comment-region beg end))))
(defun vhdl-comment-uncomment-line (&optional arg)