all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#7462: 24.0.50; prefix arg breaks `last-command' for `mouse-save-then-kill'
@ 2010-11-21 20:28 Drew Adams
  2018-06-14 23:23 ` Noam Postavsky
  0 siblings, 1 reply; 2+ messages in thread
From: Drew Adams @ 2010-11-21 20:28 UTC (permalink / raw
  To: 7462

emacs -Q

Add a call to `message' at the end of `universal-argument-other-key' and
another at the beginning of `mouse-save-then-kill'.  Show the value of
`last-command' in these messages.

E.g.
(defun universal-argument-other-key (arg)
  ...
  (restore-overriding-map)
  (message "UAOK, last-command: %s" last-command)) ; @@@@@@

(defun mouse-save-then-kill (click)
  "..."
  (interactive "e")
  (message "MSTK, last-command: %s" last-command) ; @@@@@@
  ...)

1. Click `mouse-1' somewhere.
2. Click `mouse-3' at another location in the same buffer.
3. C-u
4. Click `mouse-3' at the same location as #2.

IOW, you've just used `C-u' for the second mouse-3 click.

The messages you see are these:

MSTK, last-command: mouse-set-point
UAOK, last-command: mouse-save-then-kill
MSTK, last-command: universal-argument-other-key

The bug is that `last-command' is set to `universal-argument-other-key'.
`last-command' should still be `mouse-save-then-kill'.

This happens somewhere between the end of the call to
`universal-argument-other-key' and entrance to `mouse-save-then-kill'
(more precisely, before the `message' call in `mouse-save-then-kill',
which happens after `interactive').

`mouse-save-then-kill' tests whether the `last-command' was
`mouse-save-then-kill', and this test fails if `C-u' is used before the
second mouse-3 click.

In GNU Emacs 24.0.50.1 (i386-mingw-nt5.1.2600)
 of 2010-11-16 on 3249CTO
Windowing system distributor `Microsoft Corp.', version 5.1.2600
configured using `configure --with-gcc (4.4) --no-opt --cflags
-Ic:/imagesupport/include'






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

* bug#7462: 24.0.50; prefix arg breaks `last-command' for `mouse-save-then-kill'
  2010-11-21 20:28 bug#7462: 24.0.50; prefix arg breaks `last-command' for `mouse-save-then-kill' Drew Adams
@ 2018-06-14 23:23 ` Noam Postavsky
  0 siblings, 0 replies; 2+ messages in thread
From: Noam Postavsky @ 2018-06-14 23:23 UTC (permalink / raw
  To: Drew Adams; +Cc: 7462

found 7462 24.3
tags 7462 fixed
close 7462 24.4
quit

"Drew Adams" <drew.adams@oracle.com> writes:

> 1. Click `mouse-1' somewhere.
> 2. Click `mouse-3' at another location in the same buffer.
> 3. C-u
> 4. Click `mouse-3' at the same location as #2.

Observed in 24.3: step #4 has no effect.
Expected and observed in 24.4+: step #4 kills the region selected in
step #2.





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

end of thread, other threads:[~2018-06-14 23:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-21 20:28 bug#7462: 24.0.50; prefix arg breaks `last-command' for `mouse-save-then-kill' Drew Adams
2018-06-14 23:23 ` Noam Postavsky

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.