]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_display_and_set_cursor): If cursor_in_echo_area,
authorGerd Moellmann <gerd@gnu.org>
Mon, 29 Oct 2001 14:02:09 +0000 (14:02 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 29 Oct 2001 14:02:09 +0000 (14:02 +0000)
use NO_CURSOR if cursor_in_non_selected_windows is false.

src/ChangeLog
src/xterm.c

index 7615e4edb6cb189ddb3c44245bfefbc76ba31990..1694209175484b82fe5923677d3fd9e9dd508eeb 100644 (file)
@@ -1,5 +1,8 @@
 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
 
+       * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
+       use NO_CURSOR if cursor_in_non_selected_windows is false.
+
        * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
        the slant attribute if FRAME is t.
        
index 983eb229bb2983bc3b73caeb5ba1e165020d63ae..31241eac7f5cfa91c532d36d6721713c47966e1a 100644 (file)
@@ -11485,8 +11485,10 @@ x_display_and_set_cursor (w, on, hpos, vpos, x, y)
     {
       if (w == XWINDOW (echo_area_window))
        new_cursor_type = FRAME_DESIRED_CURSOR (f);
-      else
+      else if (cursor_in_non_selected_windows)
        new_cursor_type = HOLLOW_BOX_CURSOR;
+      else
+       new_cursor_type = NO_CURSOR;
     }
   else
     {