GNU bug report logs - #20070
24.3; have commands such as downcase-region act on a rectangle region

Previous Next

Package: emacs;

Reported by: Pål Grønås Drange <paal.drange <at> gmail.com>

Date: Tue, 10 Mar 2015 02:20:02 UTC

Severity: normal

Merged with 19829, 20626

Found in versions 24.3, 25.0.50

Done: Juri Linkov <juri <at> linkov.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 20070 in the body.
You can then email your comments to 20070 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Tue, 10 Mar 2015 02:20:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Pål Grønås Drange <paal.drange <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Tue, 10 Mar 2015 02:20:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Pål Grønås Drange <paal.drange <at> gmail.com>
To: bug-gnu-emacs <at> gnu.org
Subject: 24.3; have commands such as downcase-region act on a rectangle region
Date: Tue, 10 Mar 2015 12:06:29 +1100
[Message part 1 (text/plain, inline)]
downcase-region in marked rectangle does not downcase entire rectangle
and downcases things not marked:

On the following content in my buffer (*scratch*), upon marking the
inner rectangle consisting of "FG" and "JK" using C-return (cua-mode
enabled)

    ABCD
    EFGH
    IJKL
    MNOP

Applying `downcase-region` yields the following unexpected result:

    ABCD
    Efgh
    ijKL
    MNOP

I would expect "fg" and "jk" to be downcased, and not "fgh" and "ij".

Original report at http://emacs.stackexchange.com/q/9913/5154
[Message part 2 (text/html, inline)]

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Wed, 11 Mar 2015 20:29:02 GMT) Full text and rfc822 format available.

Message #8 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Pål Grønås Drange <paal.drange <at> gmail.com>
Cc: 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Wed, 11 Mar 2015 16:28:03 -0400
While this is not the same bug as bug#19829, it's fundamentally the same
issue, and they should be fixed in the same way.


        Stefan


>>>>> "Pål" == Pål Grønås Drange <paal.drange <at> gmail.com> writes:

> downcase-region in marked rectangle does not downcase entire rectangle
> and downcases things not marked:

> On the following content in my buffer (*scratch*), upon marking the
> inner rectangle consisting of "FG" and "JK" using C-return (cua-mode
> enabled)

>     ABCD
>     EFGH
>     IJKL
>     MNOP

> Applying `downcase-region` yields the following unexpected result:

>     ABCD
>     Efgh
>     ijKL
>     MNOP

> I would expect "fg" and "jk" to be downcased, and not "fgh" and "ij".

> Original report at http://emacs.stackexchange.com/q/9913/5154




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Thu, 12 Mar 2015 19:30:05 GMT) Full text and rfc822 format available.

Message #11 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Stefan Monnier <monnier <at> iro.umontreal.ca>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Thu, 12 Mar 2015 21:23:58 +0200
> While this is not the same bug as bug#19829, it's fundamentally the same
> issue, and they should be fixed in the same way.

Currently, `downcase-region' is defined with the interactive spec 'r'
that calls the function with point and mark as 2 args.

For backward-compatibility reasons this can't be changed.  So maybe
a new interactive spec e.g. 'R' should call the function with 2 lists
where the first list will contain a list of beginnings of all intervals
in the rectangular region, and the second list of endings of intervals?

Then a command using it will need to add another outermost loop to pop
interval boundaries from both list arguments `begs' and `ends' to process
intervals using the same logic like it processes a single region now.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Sat, 14 Mar 2015 16:32:02 GMT) Full text and rfc822 format available.

Message #14 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Juri Linkov <juri <at> linkov.net>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Sat, 14 Mar 2015 12:31:08 -0400
> Currently, `downcase-region' is defined with the interactive spec 'r'
> that calls the function with point and mark as 2 args.

Indeed, same problem as kill-region, to which I had to add a `region'
argument (which basically says "we're called interactively so use
whatever is the region rather than BEG and END").

> For backward-compatibility reasons this can't be changed.  So maybe
> a new interactive spec e.g. 'R' should call the function with 2 lists
> where the first list will contain a list of beginnings of all intervals
> in the rectangular region, and the second list of endings of intervals?

Obviously, there will be many more commands that need to be adjusted to
the extended notion of "region" which can now be composed of various extents.
I'm not sure we need/want a new "R", because I think all cases of "r"
are currently broken when the region is non contiguous (i.e. they all
need to use "the new system").

One way to handle it generically, is to change call-interactively such
that when the argument is "r", the command is called once for each
"extent".  Obviously, this won't work correctly for all cases, tho.

Another option is to make "r" behave along the lines of your "R" (tho
I much prefer a list of pairs than a pair of lists, so one of the two
args would end up "useless").

> Then a command using it will need to add another outermost loop to pop
> interval boundaries from both list arguments `begs' and `ends' to process
> intervals using the same logic like it processes a single region now.

Indeed.  Maybe such a loop would be common enough that it'd be
worthwhile adding some ad-hoc handling (e.g. make call-interactively do
the looping as suggested above, tho maybe only after checking some
special property of the command).


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Sun, 15 Mar 2015 20:37:01 GMT) Full text and rfc822 format available.

Message #17 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Stefan Monnier <monnier <at> iro.umontreal.ca>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Sun, 15 Mar 2015 22:34:02 +0200
> Indeed, same problem as kill-region, to which I had to add a `region'
> argument (which basically says "we're called interactively so use
> whatever is the region rather than BEG and END").

Then maybe support for the rectangular region should be introduced
to every command by adding a new argument `region' with a list of pairs
((BEG1 . END1) (BEG2 . END2) ...) and keeping the existing arguments
BEG and END unchanged?

> Obviously, there will be many more commands that need to be adjusted to
> the extended notion of "region" which can now be composed of various extents.
> I'm not sure we need/want a new "R", because I think all cases of "r"
> are currently broken when the region is non contiguous (i.e. they all
> need to use "the new system").
>
> One way to handle it generically, is to change call-interactively such
> that when the argument is "r", the command is called once for each
> "extent".  Obviously, this won't work correctly for all cases, tho.

Also this won't work for commands that use region-beginning/region-end
in the interactive spec (like query-replace for bug#13178/bug#19829).

So while fixing the commands one by one, after fixing every command
it needs to be marked as "supporting the rectangular region".  If the
command used region-beginning and region-end, this means changing them to
e.g. plural region-beginnings and region-ends.

> Another option is to make "r" behave along the lines of your "R" (tho
> I much prefer a list of pairs than a pair of lists, so one of the two
> args would end up "useless").

Yes, the worst part of this feature is that commands should keep
two existing arguments BEG and END, and either add a new meaning to them,
(while supporting their current values as numbers for backward-compatibility),
or add a new optional argument.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Sun, 15 Mar 2015 20:43:02 GMT) Full text and rfc822 format available.

Message #20 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Juri Linkov <juri <at> linkov.net>
Cc: paal.drange <at> gmail.com, 20070 <at> debbugs.gnu.org, monnier <at> iro.umontreal.ca
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Sun, 15 Mar 2015 22:41:55 +0200
> From: Juri Linkov <juri <at> linkov.net>
> Date: Sun, 15 Mar 2015 22:34:02 +0200
> Cc: Pål Grønås Drange
> 	<paal.drange <at> gmail.com>, 20070 <at> debbugs.gnu.org
> 
> > Indeed, same problem as kill-region, to which I had to add a `region'
> > argument (which basically says "we're called interactively so use
> > whatever is the region rather than BEG and END").
> 
> Then maybe support for the rectangular region should be introduced
> to every command by adding a new argument `region' with a list of pairs
> ((BEG1 . END1) (BEG2 . END2) ...) and keeping the existing arguments
> BEG and END unchanged?

What are BEG1, END1, BEG2, END2, etc. values here?  In what units are
they measured?  Are they pixels, are they columns, something else?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Mon, 16 Mar 2015 11:49:02 GMT) Full text and rfc822 format available.

Message #23 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Nicolas Richard <theonewiththeevillook <at> yahoo.fr>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: paal.drange <at> gmail.com, 20070 <at> debbugs.gnu.org, Juri Linkov <juri <at> linkov.net>
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Mon, 16 Mar 2015 12:49:17 +0100
Eli Zaretskii <eliz <at> gnu.org> writes:
> What are BEG1, END1, BEG2, END2, etc. values here?  In what units are
> they measured?  Are they pixels, are they columns, something else?

Couldn't they be markers ? I think it's the easiest to work with, in the
case the text changes.

-- 
Nico




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Mon, 16 Mar 2015 13:15:02 GMT) Full text and rfc822 format available.

Message #26 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: paal.drange <at> gmail.com, 20070 <at> debbugs.gnu.org, Juri Linkov <juri <at> linkov.net>
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Mon, 16 Mar 2015 09:14:31 -0400
> What are BEG1, END1, BEG2, END2, etc. values here?

Buffer positions.  These are needed for the new non-contiguous notion of
region introduced by rectangles (and which could be used for other
notions of selections, e.g. the recently mentioned "inverse region").


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Mon, 16 Mar 2015 13:20:02 GMT) Full text and rfc822 format available.

Message #29 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Juri Linkov <juri <at> linkov.net>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Mon, 16 Mar 2015 09:19:12 -0400
>> One way to handle it generically, is to change call-interactively such
>> that when the argument is "r", the command is called once for each
>> "extent".  Obviously, this won't work correctly for all cases, tho.
> Also this won't work for commands that use region-beginning/region-end
> in the interactive spec (like query-replace for bug#13178/bug#19829).

Of course, I don't think we can handle those commands without
manual changes.

> If the command used region-beginning and region-end, this means
> changing them to e.g. plural region-beginnings and region-ends.

Here again, I'd rather use a list of pairs than a pair of lists, so we
wouldn't want to have 2 functions (one to get the list of beginnings
and another to get the list of ends).


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Mon, 16 Mar 2015 21:05:02 GMT) Full text and rfc822 format available.

Message #32 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: paal.drange <at> gmail.com, 20070 <at> debbugs.gnu.org, monnier <at> iro.umontreal.ca
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Mon, 16 Mar 2015 22:55:36 +0200
> What are BEG1, END1, BEG2, END2, etc. values here?

They should have the same type as the return values of
region-beginning/region-end and the interactive space "r"
which are of the marker type.  So the patch in bug#19829 should be
improved by another patch (both will be installed after finishing
designing this feature):

diff --git a/lisp/emulation/cua-rect.el b/lisp/emulation/cua-rect.el
index 044939f..a314d33 100644
--- a/lisp/emulation/cua-rect.el
+++ b/lisp/emulation/cua-rect.el
@@ -676,9 +676,9 @@ (defun cua--extract-rectangle-positions ()
         (lambda (s e l r _v)
            (goto-char s)
            (move-to-column l)
-           (setq s (point))
+           (setq s (point-marker))
            (move-to-column r)
-           (setq e (point))
+           (setq e (point-marker))
            (setq rect (cons (cons s e) rect)))))
     (nreverse rect)))
 
diff --git a/lisp/rect.el b/lisp/rect.el
index 271f720..7a2c5a3 100644
--- a/lisp/rect.el
+++ b/lisp/rect.el
@@ -265,7 +265,8 @@ (defun extract-rectangle-positions (start end)
     (apply-on-rectangle
      (lambda (startcol endcol)
        (move-to-column startcol)
-       (push (cons (prog1 (point) (move-to-column endcol)) (point))
+       (push (cons (prog1 (point-marker) (move-to-column endcol))
+		   (point-marker))
 	     positions))
      start end)
     (nreverse positions)))




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Mon, 16 Mar 2015 21:05:03 GMT) Full text and rfc822 format available.

Message #35 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Stefan Monnier <monnier <at> iro.umontreal.ca>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Mon, 16 Mar 2015 22:58:56 +0200
>> If the command used region-beginning and region-end, this means
>> changing them to e.g. plural region-beginnings and region-ends.
>
> Here again, I'd rather use a list of pairs than a pair of lists, so we
> wouldn't want to have 2 functions (one to get the list of beginnings
> and another to get the list of ends).

A list of pairs would be much cleaner, indeed.  The problem is that
there are 2 arguments already in region-handling commands: BEG and END.
Using one of them for a list of pairs, and leaving another unused
is not a nice thing to do.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Mon, 16 Mar 2015 22:08:02 GMT) Full text and rfc822 format available.

Message #38 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Juri Linkov <juri <at> linkov.net>
Cc: paal.drange <at> gmail.com, Eli Zaretskii <eliz <at> gnu.org>, 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Mon, 16 Mar 2015 18:07:13 -0400
> -           (setq s (point))
> +           (setq s (point-marker))

Why return markers rather than integers?
`region-beginning/region-end' return integers, not markers.
The function receiving these positions can easily turn them into markers
if it needs it.


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Mon, 16 Mar 2015 22:09:02 GMT) Full text and rfc822 format available.

Message #41 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Juri Linkov <juri <at> linkov.net>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Mon, 16 Mar 2015 18:08:28 -0400
> A list of pairs would be much cleaner, indeed.  The problem is that
> there are 2 arguments already in region-handling commands: BEG and END.
> Using one of them for a list of pairs, and leaving another unused
> is not a nice thing to do.

I think this "lack of niceness" is not strong enough to override the
advantage of using a list of pairs.


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Tue, 17 Mar 2015 07:11:02 GMT) Full text and rfc822 format available.

Message #44 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Juri Linkov <juri <at> linkov.net>
Cc: paal.drange <at> gmail.com, 20070 <at> debbugs.gnu.org, monnier <at> iro.umontreal.ca
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Tue, 17 Mar 2015 09:10:18 +0200
> From: Juri Linkov <juri <at> linkov.net>
> Date: Mon, 16 Mar 2015 22:58:56 +0200
> Cc: Pål Grønås Drange
> 	<paal.drange <at> gmail.com>, 20070 <at> debbugs.gnu.org
> 
> A list of pairs would be much cleaner, indeed.  The problem is that
> there are 2 arguments already in region-handling commands: BEG and END.
> Using one of them for a list of pairs, and leaving another unused
> is not a nice thing to do.

Why not?  AFAIK, we already have APIs where an argument could be
either a buffer position or a string.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Tue, 17 Mar 2015 19:41:01 GMT) Full text and rfc822 format available.

Message #47 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Stefan Monnier <monnier <at> iro.umontreal.ca>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Tue, 17 Mar 2015 21:38:06 +0200
>> A list of pairs would be much cleaner, indeed.  The problem is that
>> there are 2 arguments already in region-handling commands: BEG and END.
>> Using one of them for a list of pairs, and leaving another unused
>> is not a nice thing to do.
>
> I think this "lack of niceness" is not strong enough to override the
> advantage of using a list of pairs.

I still have doubts about the API, but anyway here is the implementation
that (ab)uses the first arg BEG:

diff --git a/src/casefiddle.c b/src/casefiddle.c
index 8755353..b77a0e6 100644
--- a/src/casefiddle.c
+++ b/src/casefiddle.c
@@ -306,14 +306,25 @@
   return Qnil;
 }
 
-DEFUN ("downcase-region", Fdowncase_region, Sdowncase_region, 2, 2, "r",
+DEFUN ("downcase-region", Fdowncase_region, Sdowncase_region, 2, 2,
+       "(list (funcall region-extract-function 'positions) nil)",
        doc: /* Convert the region to lower case.  In programs, wants two arguments.
 These arguments specify the starting and ending character numbers of
 the region to operate on.  When used as a command, the text between
 point and the mark is operated on.  */)
   (Lisp_Object beg, Lisp_Object end)
 {
-  casify_region (CASE_DOWN, beg, end);
+  if (CONSP (beg))
+    {
+      while (CONSP (beg))
+	{
+	  casify_region (CASE_DOWN, XCAR (XCAR (beg)), XCDR (XCAR (beg)));
+	  beg = XCDR (beg);
+	}
+    }
+  else
+    casify_region (CASE_DOWN, beg, end);
+
   return Qnil;
 }
 




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Wed, 25 Mar 2015 00:38:02 GMT) Full text and rfc822 format available.

Message #50 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: Juri Linkov <juri <at> linkov.net>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Tue, 24 Mar 2015 20:37:22 -0400
> I still have doubts about the API, but anyway here is the implementation
> that (ab)uses the first arg BEG:

That looks OK, thanks.

I'm tempted to say that "r" should do (funcall region-extract-function
'positions), and fallback to passing the result as 2 separate positions
if the result is a singleton list.  Also, if we change "r" then I think
it might make sense to pass a special value in the second arg to be more
explicit then just nil (e.g. pass :split-region).


        Stefan




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Wed, 25 Mar 2015 21:57:01 GMT) Full text and rfc822 format available.

Message #53 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Stefan Monnier <monnier <at> iro.umontreal.ca>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Wed, 25 Mar 2015 23:42:08 +0200
> I'm tempted to say that "r" should do (funcall region-extract-function
> 'positions), and fallback to passing the result as 2 separate positions
> if the result is a singleton list.

Then all unfixed commands will fail on the rectangular region,
but they do the wrong thing now anyway, so this is not a problem.

>                                     Also, if we change "r" then I think
> it might make sense to pass a special value in the second arg to be more
> explicit then just nil (e.g. pass :split-region).

Then the command signature could be changed from

  (downcase-region BEG END)

to e.g.

  (downcase-region REGION REGION-TYPE)

or maybe to signify their dual nature

  (downcase-region REGION-OR-BEG REGION-TYPE-OR-END)

and I see no better way to do this.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#20070; Package emacs. (Tue, 30 Jun 2015 20:46:03 GMT) Full text and rfc822 format available.

Message #56 received at 20070 <at> debbugs.gnu.org (full text, mbox):

From: Juri Linkov <juri <at> linkov.net>
To: Stefan Monnier <monnier <at> iro.umontreal.ca>
Cc: Pål Grønås Drange <paal.drange <at> gmail.com>,
 20070 <at> debbugs.gnu.org
Subject: Re: bug#20070: 24.3;
 have commands such as downcase-region act on a rectangle region
Date: Tue, 30 Jun 2015 23:44:08 +0300
forcemerge 19829 20070
thanks

> While this is not the same bug as bug#19829, it's fundamentally the same
> issue, and they should be fixed in the same way.

So I merged it with bug#19829 that provides a common patch.




Forcibly Merged 19829 20070. Request was from Juri Linkov <juri <at> linkov.net> to control <at> debbugs.gnu.org. (Tue, 30 Jun 2015 20:46:07 GMT) Full text and rfc822 format available.

Forcibly Merged 19829 20070 20626. Request was from Juri Linkov <juri <at> linkov.net> to control <at> debbugs.gnu.org. (Tue, 30 Jun 2015 20:46:10 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 12 Dec 2015 12:24:03 GMT) Full text and rfc822 format available.

This bug report was last modified 9 years and 195 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.