From: Alan Mackenzie <acm@muc.de>
To: 35600@debbugs.gnu.org
Subject: bug#35600: [Patch]: Re: bug#35600: 27.0.50; uncomment-region fails correctly to reverse the action of comment-region.
Date: Tue, 7 May 2019 08:59:53 +0000 [thread overview]
Message-ID: <20190507085953.GA4671@ACM> (raw)
In-Reply-To: <20190506101100.GA4300@ACM>
Hello, Emacs.
On Mon, May 06, 2019 at 10:11:00 +0000, Alan Mackenzie wrote:
> In the master branch:
> With indent-tabs-mode t, and tab-width (say) 8, start off with the
> following two line of Emacs lisp:
> (if (null bs-state)
> (ignore)
> ^
> <tab>
> (the first of these lines being indented by four spaces, the second by a
> <tab>).
> Mark the two lines, and execute M-x comment-region. We get this:
> ;; (if (null bs-state)
> ;; (ignore)
> ^
> <tab>
> (where all the space is space characters except for the <tab> just
> before "(ignore)").
> Now execute M-x uncomment-region. This should restore the region to
> what it started as. Instead one gets:
> (if (null bs-state)
> (ignore)
> ^^^^ ^
> SPCs <tab>
> , there now being four spurious spaces before the <tab> preceding
> "(ignore)". This is a bug.
> ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
> In uncomment-region-default-1, the variable `spt' gets set to the result
> of comment-search-forward, the ";" at the beginning of the comment on
> the current line. The function then narrows to between `spt' and BO
> next line.
> In this narrowed region, the function removes the comment starter.
> Because of the narrowing, it cannot take any account of the spaces at
> the start of the line.
> Possibly, uncomment-region needs to be amended so that that narrowing
> includes any space preceding the comment starter, and that space gets
> properly handled.
Here is a patch which fixes the bug a little differently. After removing
a comment starter, if there are obtrusive spaces left before a <tab>,
they get removed:
diff --git a/lisp/newcomment.el b/lisp/newcomment.el
index 9d919ccbbe..ab2be080a3 100644
--- a/lisp/newcomment.el
+++ b/lisp/newcomment.el
@@ -1001,7 +1001,15 @@ uncomment-region-default-1
(re-search-forward sre (line-end-position) t))
(replace-match "" t t nil (if (match-end 2) 2 1)))))
;; Go to the end for the next comment.
- (goto-char (point-max))))))
+ (goto-char (point-max)))
+ ;; Remove any obtrusive spaces left preceding a tab at `spt'.
+ (when (and (eq (char-after spt) ?\t) (eq (char-before spt) ? )
+ (> tab-width 0))
+ (save-excursion
+ (goto-char spt)
+ (let* ((fcol (current-column))
+ (slim (- (point) (mod fcol tab-width))))
+ (delete-char (- (skip-chars-backward " " slim)))))))))
(set-marker end nil))
(defun uncomment-region-default (beg end &optional arg)
--
Alan Mackenzie (Nuremberg, Germany).
next prev parent reply other threads:[~2019-05-07 8:59 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-06 10:11 bug#35600: 27.0.50; uncomment-region fails correctly to reverse the action of comment-region Alan Mackenzie
2019-05-07 8:59 ` Alan Mackenzie [this message]
[not found] ` <handler.35600.B.155713747728843.ack@debbugs.gnu.org>
2019-05-10 7:36 ` Alan Mackenzie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190507085953.GA4671@ACM \
--to=acm@muc.de \
--cc=35600@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).