unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#27040: 25.2: fringe click event bug
@ 2017-05-23 18:13 Charles A. Roelli
  2017-05-27 13:00 ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Charles A. Roelli @ 2017-05-23 18:13 UTC (permalink / raw)
  To: 27040

In Emacs 25.1/25.2:

   - emacs -q
   - C-h k
   - Click somewhere in the fringe:

     => Args out of range: "Describe key (or click or menu item): 
mouse-1", 0, 64

Same recipe in Emacs 24.5 pops up a description of the binding as expected:

=========
<mouse-1> (translated from <down-mouse-1> <mouse-1>) at that spot runs
the command mouse-set-point, which is an interactive compiled Lisp
function in `mouse.el'.

It is bound to <triple-mouse-1>, <double-mouse-1>, <mouse-1>.

(mouse-set-point EVENT)

Move point to the position clicked on with the mouse.
This should be bound to a mouse click event type.
=========

As a side note, while you click and hold the mouse in the fringe in an 
emacs-lisp mode
buffer in Emacs 25.2, the echo area indicates the current mode name. 
(This does not
happen in Emacs 24.5).  Not sure if this is related (or intentional).






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

* bug#27040: 25.2: fringe click event bug
  2017-05-23 18:13 bug#27040: 25.2: fringe click event bug Charles A. Roelli
@ 2017-05-27 13:00 ` Eli Zaretskii
  2017-05-27 13:30   ` Charles A. Roelli
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2017-05-27 13:00 UTC (permalink / raw)
  To: Charles A. Roelli; +Cc: 27040-done

> From: "Charles A. Roelli" <charles@aurox.ch>
> Date: Tue, 23 May 2017 20:13:20 +0200
> 
> In Emacs 25.1/25.2:
> 
>    - emacs -q
>    - C-h k
>    - Click somewhere in the fringe:
> 
>      => Args out of range: "Describe key (or click or menu item): 
> mouse-1", 0, 64

Thanks, fixed.

> As a side note, while you click and hold the mouse in the fringe in an 
> emacs-lisp mode
> buffer in Emacs 25.2, the echo area indicates the current mode name. 
> (This does not
> happen in Emacs 24.5).  Not sure if this is related (or intentional).

I have no idea where this comes from.  Looks like some subtle bug.
Please submit a separate bug report.





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

* bug#27040: 25.2: fringe click event bug
  2017-05-27 13:00 ` Eli Zaretskii
@ 2017-05-27 13:30   ` Charles A. Roelli
  2017-05-27 13:50     ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Charles A. Roelli @ 2017-05-27 13:30 UTC (permalink / raw)
  To: 27040

On 27/05/2017 15:00, Eli Zaretskii wrote:
>> From: "Charles A. Roelli" <charles@aurox.ch>
>> Date: Tue, 23 May 2017 20:13:20 +0200
>>
>> In Emacs 25.1/25.2:
>>
>>    - emacs -q
>>    - C-h k
>>    - Click somewhere in the fringe:
>>
>>      => Args out of range: "Describe key (or click or menu item):
>> mouse-1", 0, 64
>
> Thanks, fixed.

Thank you.  Can I ask how you found the source of the error?
M-x toggle-debug-on-error doesn't help much in this case.

>
>> As a side note, while you click and hold the mouse in the fringe in an
>> emacs-lisp mode
>> buffer in Emacs 25.2, the echo area indicates the current mode name.
>> (This does not
>> happen in Emacs 24.5).  Not sure if this is related (or intentional).
>
> I have no idea where this comes from.  Looks like some subtle bug.
> Please submit a separate bug report.

Will do.






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

* bug#27040: 25.2: fringe click event bug
  2017-05-27 13:30   ` Charles A. Roelli
@ 2017-05-27 13:50     ` Eli Zaretskii
  2017-05-28  9:30       ` Charles A. Roelli
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2017-05-27 13:50 UTC (permalink / raw)
  To: Charles A. Roelli; +Cc: 27040

> From: "Charles A. Roelli" <charles@aurox.ch>
> Date: Sat, 27 May 2017 15:30:00 +0200
> 
> >>    - emacs -q
> >>    - C-h k
> >>    - Click somewhere in the fringe:
> >>
> >>      => Args out of range: "Describe key (or click or menu item):
> >> mouse-1", 0, 64
> >
> > Thanks, fixed.
> 
> Thank you.  Can I ask how you found the source of the error?

By running Emacs under GDB and setting a C-level breakpoint on the
function 'xsignal', through which all the errors are signaled.  That
showed me that Emacs was calling 'substring' on a string shorter than
the 3rd argument of the function.





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

* bug#27040: 25.2: fringe click event bug
  2017-05-27 13:50     ` Eli Zaretskii
@ 2017-05-28  9:30       ` Charles A. Roelli
  0 siblings, 0 replies; 5+ messages in thread
From: Charles A. Roelli @ 2017-05-28  9:30 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: 27040

Thanks!  I need to get more familiar with GDB...


On 27/05/2017 15:50, Eli Zaretskii wrote:
>> From: "Charles A. Roelli" <charles@aurox.ch>
>> Date: Sat, 27 May 2017 15:30:00 +0200
>>
>>>>     - emacs -q
>>>>     - C-h k
>>>>     - Click somewhere in the fringe:
>>>>
>>>>       => Args out of range: "Describe key (or click or menu item):
>>>> mouse-1", 0, 64
>>> Thanks, fixed.
>> Thank you.  Can I ask how you found the source of the error?
> By running Emacs under GDB and setting a C-level breakpoint on the
> function 'xsignal', through which all the errors are signaled.  That
> showed me that Emacs was calling 'substring' on a string shorter than
> the 3rd argument of the function.






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

end of thread, other threads:[~2017-05-28  9:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-05-23 18:13 bug#27040: 25.2: fringe click event bug Charles A. Roelli
2017-05-27 13:00 ` Eli Zaretskii
2017-05-27 13:30   ` Charles A. Roelli
2017-05-27 13:50     ` Eli Zaretskii
2017-05-28  9:30       ` Charles A. Roelli

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