unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#24864: 26.0.50; bracketed paste regression
@ 2016-11-03  3:10 Mark Oteiza
  2016-11-03  4:18 ` Daniel Colascione
  2019-09-29  3:55 ` Stefan Kangas
  0 siblings, 2 replies; 4+ messages in thread
From: Mark Oteiza @ 2016-11-03  3:10 UTC (permalink / raw)
  To: 24864


Regression in master. I imagine this is a consequence of bug#24639 and
cf566b46

1. xterm
2. emacs -Q in said xterm
3. Shift-Insert a block of text into scratch buffer
4. C-/

I expect the entire paste operation to be considered a single insertion,
and for entire insertion to be undone.  However, only 20ish characters
at a time are being undone.  The behavior introduced by bracketed paste
is broken.

In the buffer, xterm-inhibit-bracketed-paste-mode is indeed nil.

In GNU Emacs 26.0.50.3 (x86_64-unknown-linux-gnu, X toolkit, Xaw scroll bars)
 of 2016-11-01 built on logos
Repository revision: c3640fcc96ed80368209c73d7ac9a0f0d1833d93

Configured using:
 'configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib
 --localstatedir=/var --without-gconf --with-modules
 --with-x-toolkit=lucid 'CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe
 -fstack-protector-strong --param=ssp-buffer-size=4 -g
 -fvar-tracking-assignments -g -fvar-tracking-assignments'
 CPPFLAGS=-D_FORTIFY_SOURCE=2
 LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro'

Configured features:
XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND GPM DBUS GSETTINGS NOTIFY
ACL GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS
LUCID X11 MODULES LIBSYSTEMD






^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#24864: 26.0.50; bracketed paste regression
  2016-11-03  3:10 bug#24864: 26.0.50; bracketed paste regression Mark Oteiza
@ 2016-11-03  4:18 ` Daniel Colascione
  2016-11-03 17:41   ` Eli Zaretskii
  2019-09-29  3:55 ` Stefan Kangas
  1 sibling, 1 reply; 4+ messages in thread
From: Daniel Colascione @ 2016-11-03  4:18 UTC (permalink / raw)
  To: Mark Oteiza, 24864

I've reverted cf566b46 on master. Let's fix the original bug another way.

On 11/02/2016 08:10 PM, Mark Oteiza wrote:
>
> Regression in master. I imagine this is a consequence of bug#24639 and
> cf566b46
>
> 1. xterm
> 2. emacs -Q in said xterm
> 3. Shift-Insert a block of text into scratch buffer
> 4. C-/
>
> I expect the entire paste operation to be considered a single insertion,
> and for entire insertion to be undone.  However, only 20ish characters
> at a time are being undone.  The behavior introduced by bracketed paste
> is broken.
>
> In the buffer, xterm-inhibit-bracketed-paste-mode is indeed nil.
>
> In GNU Emacs 26.0.50.3 (x86_64-unknown-linux-gnu, X toolkit, Xaw scroll bars)
>  of 2016-11-01 built on logos
> Repository revision: c3640fcc96ed80368209c73d7ac9a0f0d1833d93
>
> Configured using:
>  'configure --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib
>  --localstatedir=/var --without-gconf --with-modules
>  --with-x-toolkit=lucid 'CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe
>  -fstack-protector-strong --param=ssp-buffer-size=4 -g
>  -fvar-tracking-assignments -g -fvar-tracking-assignments'
>  CPPFLAGS=-D_FORTIFY_SOURCE=2
>  LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro'
>
> Configured features:
> XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND GPM DBUS GSETTINGS NOTIFY
> ACL GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS
> LUCID X11 MODULES LIBSYSTEMD
>
>
>
>
>





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#24864: 26.0.50; bracketed paste regression
  2016-11-03  4:18 ` Daniel Colascione
@ 2016-11-03 17:41   ` Eli Zaretskii
  0 siblings, 0 replies; 4+ messages in thread
From: Eli Zaretskii @ 2016-11-03 17:41 UTC (permalink / raw)
  To: Daniel Colascione; +Cc: mvoteiza, 24864

> From: Daniel Colascione <dancol@dancol.org>
> Date: Wed, 2 Nov 2016 21:18:46 -0700
> 
> I've reverted cf566b46 on master. Let's fix the original bug another way.

If someone is going to work on bug#24639, please note that ideally it
should be fixed on the emacs-25 branch, since the problem was
introduced in Emacs 25.1.





^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#24864: 26.0.50; bracketed paste regression
  2016-11-03  3:10 bug#24864: 26.0.50; bracketed paste regression Mark Oteiza
  2016-11-03  4:18 ` Daniel Colascione
@ 2019-09-29  3:55 ` Stefan Kangas
  1 sibling, 0 replies; 4+ messages in thread
From: Stefan Kangas @ 2019-09-29  3:55 UTC (permalink / raw)
  To: Daniel Colascione; +Cc: Mark Oteiza, 24864-done

Daniel Colascione <dancol@dancol.org> writes:

> I've reverted cf566b46 on master. Let's fix the original bug another way.
>
> On 11/02/2016 08:10 PM, Mark Oteiza wrote:
>>
>> Regression in master. I imagine this is a consequence of bug#24639 and
>> cf566b46
>>
>> 1. xterm
>> 2. emacs -Q in said xterm
>> 3. Shift-Insert a block of text into scratch buffer
>> 4. C-/
>>
>> I expect the entire paste operation to be considered a single insertion,
>> and for entire insertion to be undone.  However, only 20ish characters
>> at a time are being undone.  The behavior introduced by bracketed paste
>> is broken.
>>
>> In the buffer, xterm-inhibit-bracketed-paste-mode is indeed nil.

No further information in 3 years, so I'm assuming that reverting
cf566b46 fixed the problem.  (The mentioned Bug#24639 has also been
fixed since.)  I'm consequently closing this bug report.

Best regards,
Stefan Kangas





^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-09-29  3:55 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-03  3:10 bug#24864: 26.0.50; bracketed paste regression Mark Oteiza
2016-11-03  4:18 ` Daniel Colascione
2016-11-03 17:41   ` Eli Zaretskii
2019-09-29  3:55 ` Stefan Kangas

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