emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/w32term.c
Date: Sat, 11 Jan 2003 19:38:24 -0500

Index: emacs/src/w32term.c
diff -c emacs/src/w32term.c:1.174 emacs/src/w32term.c:1.175
*** emacs/src/w32term.c:1.174   Thu Dec 12 14:55:43 2002
--- emacs/src/w32term.c Wed Dec 18 01:16:28 2002
***************
*** 603,610 ****
    struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
  
    /* Hide the system caret during an update.  */
!   if (w32_use_visible_system_caret)
!     SendMessage (w32_system_caret_hwnd, WM_EMACS_HIDE_CARET, 0, 0);
  
    updated_window = w;
    set_output_cursor (&w->cursor);
--- 603,612 ----
    struct w32_display_info *display_info = FRAME_W32_DISPLAY_INFO (f);
  
    /* Hide the system caret during an update.  */
!   if (w32_use_visible_system_caret && w32_system_caret_hwnd)
!     {
!       SendMessage (w32_system_caret_hwnd, WM_EMACS_HIDE_CARET, 0, 0);
!     }
  
    updated_window = w;
    set_output_cursor (&w->cursor);
***************
*** 730,737 ****
    /* Unhide the caret.  This won't actually show the cursor, unless it
       was visible before the corresponding call to HideCaret in
       x_update_window_begin.  */
!   if (w32_use_visible_system_caret)
!     SendMessage (w32_system_caret_hwnd, WM_EMACS_SHOW_CARET, 0, 0);
  
    updated_window = NULL;
  }
--- 732,741 ----
    /* Unhide the caret.  This won't actually show the cursor, unless it
       was visible before the corresponding call to HideCaret in
       x_update_window_begin.  */
!   if (w32_use_visible_system_caret && w32_system_caret_hwnd)
!     {
!       SendMessage (w32_system_caret_hwnd, WM_EMACS_SHOW_CARET, 0, 0);
!     }
  
    updated_window = NULL;
  }




reply via email to

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