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: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/src/xterm.c
Date: Tue, 27 Aug 2002 14:42:48 -0400

Index: emacs/src/xterm.c
diff -c emacs/src/xterm.c:1.750 emacs/src/xterm.c:1.751
*** emacs/src/xterm.c:1.750     Tue Aug 13 20:59:01 2002
--- emacs/src/xterm.c   Tue Aug 27 14:42:48 2002
***************
*** 11894,11902 ****
                                                   &new_cursor_width);
      }
  
!   /* Dim out or hollow out the cursor,
!      if it has blinked off or for nonselected windows.  */
!   if (w->cursor_off_p || cursor_off_state)
      {
        if (new_cursor_type == FILLED_BOX_CURSOR)
        new_cursor_type = HOLLOW_BOX_CURSOR;
--- 11894,11907 ----
                                                   &new_cursor_width);
      }
  
!   /* If cursor has blinked off, use the other specified state.  */
!   if (w->cursor_off_p)
!     {
!       new_cursor_type = FRAME_BLINK_OFF_CURSOR (f);
!       new_cursor_width = FRAME_BLINK_OFF_CURSOR_WIDTH (f);
!     }
!   /* Dim out or hollow out the cursor for nonselected windows.  */
!   if (cursor_off_state)
      {
        if (new_cursor_type == FILLED_BOX_CURSOR)
        new_cursor_type = HOLLOW_BOX_CURSOR;




reply via email to

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