all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Stefan Monnier <monnier@iro.umontreal.ca>
To: Chong Yidong <cyd@stupidchicken.com>
Cc: 1586@debbugs.gnu.org,
	Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
Subject: bug#1586: prefix arg when mouse clicking on header line
Date: Mon, 04 Jul 2011 15:05:44 -0400	[thread overview]
Message-ID: <jwvfwml6fal.fsf-monnier+gnus-read-ephemeral-bug@gnu.org> (raw)
In-Reply-To: <87boxcl08i.fsf@stupidchicken.com> (Chong Yidong's message of "Sat, 02 Jul 2011 19:41:01 -0400")

>> If a command takes a mouse event and an (optional) prefix arg as its
>> arguments, the interactive specifications are
>> (interactive "e\nP")
>> or
>> (interactive (list last-input-event current-prefix-arg))
>> 
>> This works fine inside the main part of a window. For a command
>> that does the same thing in the header line, these interactive
>> specifications do not work.

> Thanks for the bug report.  I've committed a fix.

Does this actually fix the problem?  If so, I don't understand why:
a down event that's not bound to anything should be dropped entirely by
read-key-sequence.

So my guess at the problem is that [header-line down-mouse-1] is not
left unbound but instead is bound to something
(e.g. `mouse-drag-header-line' or `ignore'), so your code won't be
executed at all in that case.

Now, I'm not sure if we should preserve the prefix arg even if the down
event is bound, or rather just change `mouse-drag-header-line' and/or
`ignore' to propagate the current-prefix-arg to the next event; but
unless I'm missing something your fix should have no effect.


        Stefan


>>>>> "Chong" == Chong Yidong <cyd@stupidchicken.com> writes:

> ------------------------------------------------------------
> revno: 104891
> committer: Chong Yidong <cyd@stupidchicken.com>
> branch nick: trunk
> timestamp: Sat 2011-07-02 19:40:04 -0400
> message:
>   Fix corner case in prefix-arg handling for mouse events (Bug#1586).
  
>   * src/keyboard.c (command_loop_1): If a down-mouse event is unbound,
>   leave any prefix arg for the up event.
> modified:
>   src/ChangeLog
>   src/keyboard.c

> === modified file 'src/ChangeLog'
> --- a/src/ChangeLog	2011-07-02 16:18:24 +0000
> +++ b/src/ChangeLog	2011-07-02 23:40:04 +0000
> @@ -1,3 +1,8 @@
> +2011-07-02  Chong Yidong  <cyd@stupidchicken.com>
> +
> +	* keyboard.c (command_loop_1): If a down-mouse event is unbound,
> +	leave any prefix arg for the up event (Bug#1586).
> +
>  2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
>  	* lread.c (syms_of_lread): Mention single symbols defined by

> === modified file 'src/keyboard.c'
> --- a/src/keyboard.c	2011-07-02 04:27:41 +0000
> +++ b/src/keyboard.c	2011-07-02 23:40:04 +0000
> @@ -1539,7 +1539,18 @@
>  	  message_with_string ("%s is undefined", keys, 0);
>  	  KVAR (current_kboard, defining_kbd_macro) = Qnil;
>  	  update_mode_lines = 1;
> -	  KVAR (current_kboard, Vprefix_arg) = Qnil;
> +	  /* If this is a down-mouse event, don't reset prefix-arg;
> +	     pass it to the command run by the up event.  */
> +	  if (EVENT_HAS_PARAMETERS (last_command_event))
> +	    {
> +	      Lisp_Object breakdown
> +		= parse_modifiers (EVENT_HEAD (last_command_event));
> +	      int modifiers = XINT (XCAR (XCDR (breakdown)));
> +	      if (!(modifiers & down_modifier))
> +		KVAR (current_kboard, Vprefix_arg) = Qnil;
> +	    }
> +	  else
> +	    KVAR (current_kboard, Vprefix_arg) = Qnil;
>  	}
>        else
>  	{


> _______________________________________________
> Emacs-diffs mailing list
> Emacs-diffs@gnu.org
> https://lists.gnu.org/mailman/listinfo/emacs-diffs





  reply	other threads:[~2011-07-04 19:05 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-12-15 20:58 bug#1586: prefix arg when mouse clicking on header line Roland Winkler
2011-07-02 23:41 ` Chong Yidong
2011-07-04 19:05   ` Stefan Monnier [this message]
2011-07-04 20:50     ` Chong Yidong

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=jwvfwml6fal.fsf-monnier+gnus-read-ephemeral-bug@gnu.org \
    --to=monnier@iro.umontreal.ca \
    --cc=1586@debbugs.gnu.org \
    --cc=Roland.Winkler@physik.uni-erlangen.de \
    --cc=cyd@stupidchicken.com \
    /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 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.