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


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/src/keyboard.c
Date: Mon, 04 Mar 2002 18:41:02 -0500

Index: emacs/src/keyboard.c
diff -c emacs/src/keyboard.c:1.659 emacs/src/keyboard.c:1.660
*** emacs/src/keyboard.c:1.659  Sat Feb 23 17:02:18 2002
--- emacs/src/keyboard.c        Mon Mar  4 18:40:59 2002
***************
*** 298,304 ****
  int command_loop_level;
  
  /* Total number of times command_loop has read a key sequence.  */
! int num_input_keys;
  
  /* Last input character read as a command.  */
  Lisp_Object last_command_char;
--- 298,304 ----
  int command_loop_level;
  
  /* Total number of times command_loop has read a key sequence.  */
! EMACS_INT num_input_keys;
  
  /* Last input character read as a command.  */
  Lisp_Object last_command_char;
***************
*** 322,328 ****
  Lisp_Object Vunread_post_input_method_events;
  
  /* If not -1, an event to be read as subsequent command input.  */
! int unread_command_char;
  
  /* If not Qnil, this is a switch-frame event which we decided to put
     off until the end of a key sequence.  This should be read as the
--- 322,328 ----
  Lisp_Object Vunread_post_input_method_events;
  
  /* If not -1, an event to be read as subsequent command input.  */
! EMACS_INT unread_command_char;
  
  /* If not Qnil, this is a switch-frame event which we decided to put
     off until the end of a key sequence.  This should be read as the
***************
*** 334,340 ****
  Lisp_Object unread_switch_frame;
  
  /* A mask of extra modifier bits to put into every keyboard char.  */
! int extra_keyboard_modifiers;
  
  /* Char to use as prefix when a meta character is typed in.
     This is bound on entry to minibuffer in case ESC is changed there.  */
--- 334,340 ----
  Lisp_Object unread_switch_frame;
  
  /* A mask of extra modifier bits to put into every keyboard char.  */
! EMACS_INT extra_keyboard_modifiers;
  
  /* Char to use as prefix when a meta character is typed in.
     This is bound on entry to minibuffer in case ESC is changed there.  */
***************
*** 351,362 ****
  int num_input_events;
  
  /* Total number of times read_char has returned, outside of macros.  */
! int num_nonmacro_input_events;
  
  /* Auto-save automatically when this many characters have been typed
     since the last time.  */
  
! static int auto_save_interval;
  
  /* Value of num_nonmacro_input_events as of last auto save.  */
  
--- 351,362 ----
  int num_input_events;
  
  /* Total number of times read_char has returned, outside of macros.  */
! EMACS_INT num_nonmacro_input_events;
  
  /* Auto-save automatically when this many characters have been typed
     since the last time.  */
  
! static EMACS_INT auto_save_interval;
  
  /* Value of num_nonmacro_input_events as of last auto save.  */
  
***************
*** 448,454 ****
  Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
  
  /* Delay time in microseconds before running post-command-idle-hook.  */
! int post_command_idle_delay;
  
  /* List of deferred actions to be performed at a later time.
     The precise format isn't relevant here; we just check whether it is nil.  
*/
--- 448,454 ----
  Lisp_Object Qpost_command_idle_hook, Vpost_command_idle_hook;
  
  /* Delay time in microseconds before running post-command-idle-hook.  */
! EMACS_INT post_command_idle_delay;
  
  /* List of deferred actions to be performed at a later time.
     The precise format isn't relevant here; we just check whether it is nil.  
*/
***************
*** 1823,1829 ****
  /* Number of seconds between polling for input.  This is a Lisp
     variable that can be bound.  */
  
! int polling_period;
  
  /* Nonzero means polling for input is temporarily suppressed.  */
  
--- 1823,1829 ----
  /* Number of seconds between polling for input.  This is a Lisp
     variable that can be bound.  */
  
! EMACS_INT polling_period;
  
  /* Nonzero means polling for input is temporarily suppressed.  */
  
***************
*** 4664,4670 ****
  /* Maximum number of pixels the mouse may be moved between clicks
     to make a double-click.  */
  
! int double_click_fuzz;
  
  /* The number of clicks in this multiple-click. */
  
--- 4664,4670 ----
  /* Maximum number of pixels the mouse may be moved between clicks
     to make a double-click.  */
  
! EMACS_INT double_click_fuzz;
  
  /* The number of clicks in this multiple-click. */
  



reply via email to

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