*** empty log message ***
This commit is contained in:
parent
2c873c4bd5
commit
b9b263874c
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2007-03-02 Stuart D. Herring <herring@lanl.gov>
|
||||
|
||||
* keymap.c (Fkey_binding): Don't consider two-element lists as
|
||||
events.
|
||||
|
||||
2007-03-01 Kenichi Handa <handa@m17n.org>
|
||||
|
||||
* process.c (send_process_object): Check the process status and
|
||||
|
|
|
@ -1612,10 +1612,10 @@ specified buffer position instead of point are used.
|
|||
|
||||
/* We are not interested in locations without event data */
|
||||
|
||||
if (EVENT_HAS_PARAMETERS (event))
|
||||
if (EVENT_HAS_PARAMETERS (event) && CONSP (XCDR (event)))
|
||||
{
|
||||
Lisp_Object kind = EVENT_HEAD_KIND (EVENT_HEAD (event));
|
||||
if (CONSP (XCDR (event)) && EQ (kind, Qmouse_click))
|
||||
if (EQ (kind, Qmouse_click))
|
||||
position = EVENT_START (event);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue