emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/src/xterm.c


From: Pavel Janík
Subject: [Emacs-diffs] Changes to emacs/src/xterm.c
Date: Wed, 03 Apr 2002 03:39:51 -0500

Index: emacs/src/xterm.c
diff -c emacs/src/xterm.c:1.719 emacs/src/xterm.c:1.720
*** emacs/src/xterm.c:1.719     Mon Apr  1 14:49:39 2002
--- emacs/src/xterm.c   Wed Apr  3 03:39:50 2002
***************
*** 255,263 ****
  
  /* Non-zero means autoselect window with the mouse cursor.  */
  
! int autoselect_window_p;
  
! /* Last window where we saw the mouse.  Used by autoselect-window.  */
  static Lisp_Object last_window;
  
  /* Non-zero means draw block and hollow cursor as wide as the glyph
--- 255,263 ----
  
  /* Non-zero means autoselect window with the mouse cursor.  */
  
! int mouse_autoselect_window;
  
! /* Last window where we saw the mouse.  Used by mouse-autoselect-window.  */
  static Lisp_Object last_window;
  
  /* Non-zero means draw block and hollow cursor as wide as the glyph
***************
*** 10878,10884 ****
                  {
  
                    /* Generate SELECT_WINDOW_EVENTs when needed.  */
!                   if (autoselect_window_p)
                      {
                        Lisp_Object window;
                        int area;
--- 10878,10884 ----
                  {
  
                    /* Generate SELECT_WINDOW_EVENTs when needed.  */
!                   if (mouse_autoselect_window)
                      {
                        Lisp_Object window;
                        int area;
***************
*** 15117,15125 ****
    staticpro (&previous_help_echo);
    help_echo_pos = -1;
  
!   DEFVAR_BOOL ("autoselect-window", &autoselect_window_p,
      doc: /* *Non-nil means autoselect window with mouse pointer.  */);
!   autoselect_window_p = 0;
  
    DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
      doc: /* *Non-nil means draw block cursor as wide as the glyph under it.
--- 15117,15125 ----
    staticpro (&previous_help_echo);
    help_echo_pos = -1;
  
!   DEFVAR_BOOL ("mouse-autoselect-window", &mouse_autoselect_window,
      doc: /* *Non-nil means autoselect window with mouse pointer.  */);
!   mouse_autoselect_window = 0;
  
    DEFVAR_BOOL ("x-stretch-cursor", &x_stretch_cursor_p,
      doc: /* *Non-nil means draw block cursor as wide as the glyph under it.



reply via email to

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