Mercurial > emacs
changeset 50020:2d1d71e9f8cd
(vhdl-comment-uncomment-region): Remove two comment characters at start
of line instead of one.
author | Francesco Potortì <pot@gnu.org> |
---|---|
date | Tue, 04 Mar 2003 14:43:03 +0000 |
parents | 67ab67b4b7b0 |
children | b5ec65424fcc |
files | lisp/progmodes/vhdl-mode.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/vhdl-mode.el Tue Mar 04 14:42:45 2003 +0000 +++ b/lisp/progmodes/vhdl-mode.el Tue Mar 04 14:43:03 2003 +0000 @@ -7568,7 +7568,7 @@ (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)