emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/keyboard.h


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/keyboard.h
Date: Thu, 27 Nov 2003 16:16:36 -0500

Index: emacs/src/keyboard.h
diff -c emacs/src/keyboard.h:1.59 emacs/src/keyboard.h:1.60
*** emacs/src/keyboard.h:1.59   Mon Sep  1 11:45:56 2003
--- emacs/src/keyboard.h        Thu Nov 27 16:16:36 2003
***************
*** 250,256 ****
  #define EVENT_END(event) (XCAR (XCDR (XCDR (event))))
  
  /* Extract the click count from a multi-click event.  */
! #define EVENT_CLICK_COUNT(event) (Fnth ((event), make_number (2)))
  
  /* Extract the fields of a position.  */
  #define POSN_WINDOW(posn) (XCAR (posn))
--- 250,256 ----
  #define EVENT_END(event) (XCAR (XCDR (XCDR (event))))
  
  /* Extract the click count from a multi-click event.  */
! #define EVENT_CLICK_COUNT(event) (Fnth (make_number (2), (event)))
  
  /* Extract the fields of a position.  */
  #define POSN_WINDOW(posn) (XCAR (posn))
***************
*** 259,265 ****
  #define POSN_WINDOW_POSN(posn) (XCAR (XCDR (XCDR (posn))))
  #define POSN_TIMESTAMP(posn) \
    (XCAR (XCDR (XCDR (XCDR (posn)))))
! #define POSN_SCROLLBAR_PART(posn)     (Fnth ((posn), make_number (4)))
  
  /* A cons (STRING . STRING-CHARPOS), or nil in mouse-click events.
     It's a cons if the click is over a string in the mode line.  */
--- 259,265 ----
  #define POSN_WINDOW_POSN(posn) (XCAR (XCDR (XCDR (posn))))
  #define POSN_TIMESTAMP(posn) \
    (XCAR (XCDR (XCDR (XCDR (posn)))))
! #define POSN_SCROLLBAR_PART(posn)     (Fnth (make_number (4), (posn)))
  
  /* A cons (STRING . STRING-CHARPOS), or nil in mouse-click events.
     It's a cons if the click is over a string in the mode line.  */




reply via email to

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