emacs-pretest-bug
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: emacs-current bootstrap fail on FreeBSD 6.2


From: Chong Yidong
Subject: Re: emacs-current bootstrap fail on FreeBSD 6.2
Date: Wed, 11 Oct 2006 23:43:54 -0400
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux)

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]