GNU bug report logs - #11304
mouse-autoselect-window causes loss of messages from echo area

Previous Next

Package: emacs;

Reported by: Kelly Dean <kellydeanch <at> yahoo.com>

Date: Sat, 21 Apr 2012 17:50:03 UTC

Severity: normal

Merged with 12920

Fixed in version 24.3

Done: martin rudalics <rudalics <at> gmx.at>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Stefan Monnier <monnier <at> iro.umontreal.ca>
To: martin rudalics <rudalics <at> gmx.at>
Cc: Kelly Dean <kellydeanch <at> yahoo.com>, 11304 <at> debbugs.gnu.org
Subject: bug#11304: mouse-autoselect-window causes loss of messages from echo	area
Date: Mon, 23 Apr 2012 21:41:06 -0400
> --- src/keyboard.c	2012-04-20 21:26:18 +0000
> +++ src/keyboard.c	2012-04-22 12:19:03 +0000
> @@ -2984,7 +2984,10 @@
>       own stuff with the echo area.  */
>    if (!CONSP (c)
>        || (!(EQ (Qhelp_echo, XCAR (c)))
> -	  && !(EQ (Qswitch_frame, XCAR (c)))))
> +	  && !(EQ (Qswitch_frame, XCAR (c)))
> +	  /* Don't wipe echo area for select window events: These might
> +	     get delayed via `mouse-autoselect-window' (Bug#11304).  */
> +	  && !(EQ (Qselect_window, XCAR (c)))))
>      {
>        if (!NILP (echo_area_buffer[0]))
>  	safe_run_hooks (Qecho_area_clear_hook);

This looks right, thank you,


        Stefan




This bug report was last modified 12 years and 184 days ago.

Previous Next


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