diff options
author | Francesco Potortì <pot@gnu.org> | 2003-03-04 14:43:03 +0000 |
---|---|---|
committer | Francesco Potortì <pot@gnu.org> | 2003-03-04 14:43:03 +0000 |
commit | e3c46ed6472a0a41bbe9a1cf478299dfca83bd7b (patch) | |
tree | fd44a7f5a9c22181f24a8a65fc2c045211ff719f /lisp/progmodes/vhdl-mode.el | |
parent | 6be3383e2abb375167ff3df416233aa9b4aae96e (diff) | |
download | emacs-e3c46ed6472a0a41bbe9a1cf478299dfca83bd7b.tar.gz |
(vhdl-comment-uncomment-region): Remove two comment characters at start
of line instead of one.
Diffstat (limited to 'lisp/progmodes/vhdl-mode.el')
-rw-r--r-- | lisp/progmodes/vhdl-mode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/vhdl-mode.el b/lisp/progmodes/vhdl-mode.el index 9827ad3696e..f11b04d8fe5 100644 --- a/lisp/progmodes/vhdl-mode.el +++ b/lisp/progmodes/vhdl-mode.el @@ -7568,7 +7568,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) |