With your old compile flags, and this patch applied to the current CVS
sources, does bootstrap still fail?
*** emacs/src/keymap.c.~1.340.~ 2006-10-11 23:33:12.000000000 -0400
--- emacs/src/keymap.c 2006-10-11 23:42:26.000000000 -0400
***************
*** 1610,1622 ****
/* We are not interested in locations without event data */
! if (EVENT_HAS_PARAMETERS (event)) {
! Lisp_Object kind;
! kind = EVENT_HEAD_KIND (EVENT_HEAD (event));
! if (EQ (kind, Qmouse_click))
! position = EVENT_START (event);
! }
}
/* Key sequences beginning with mouse clicks
--- 1610,1623 ----
/* We are not interested in locations without event data */
! if (EVENT_HAS_PARAMETERS (event))
! {
! Lisp_Object kind;
! kind = EVENT_HEAD_KIND (EVENT_HEAD (event));
! if (CONSP (XCDR (event)) && EQ (kind, Qmouse_click))
! position = EVENT_START (event);
! }
}
/* Key sequences beginning with mouse clicks
***************
*** 1709,1715 ****
pos = XCDR (string);
string = XCAR (string);
! if (XINT (pos) >= 0
&& XINT (pos) < SCHARS (string))
{
map = Fget_text_property (pos, Qlocal_map, string);
--- 1710,1717 ----
pos = XCDR (string);
string = XCAR (string);
! if (INTEGERP (pos)
! && XINT (pos) >= 0
&& XINT (pos) < SCHARS (string))
{
map = Fget_text_property (pos, Qlocal_map, string);
_______________________________________________
emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug