1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-15 09:47:20 +00:00

(vhdl-comment-uncomment-region): Remove two comment characters at start

of line instead of one.
This commit is contained in:
Francesco Potortì 2003-03-04 14:43:03 +00:00
parent 6be3383e2a
commit e3c46ed647

View File

@ -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)