]> git.eshelyaron.com Git - emacs.git/commitdiff
(get_window_cursor_type): Partially undo 2002-03-01 change (superseded
authorKim F. Storm <storm@cua.dk>
Wed, 3 Sep 2003 07:50:46 +0000 (07:50 +0000)
committerKim F. Storm <storm@cua.dk>
Wed, 3 Sep 2003 07:50:46 +0000 (07:50 +0000)
by 2002-08-30 change); the default blink-off cursor is now again "no
cursor".

src/xdisp.c

index ce6abb63d546fe3c58752263f9f67c22c56aa176..6a1cba06a52acf1d24dc134202a85fb5cba32ef7 100644 (file)
@@ -18706,6 +18706,11 @@ get_window_cursor_type (w, width, active_cursor)
       return FRAME_BLINK_OFF_CURSOR (f);
     }
 
+#if 0
+  /* Some people liked having a permanently visible blinking cursor,
+     while others had very strong opinions against it.  So it was
+     decided to remove it.  KFS 2003-09-03 */
+
   /* Finally perform built-in cursor blinking:
        filled box      <->   hollow box
        wide [h]bar     <->   narrow [h]bar
@@ -18720,6 +18725,7 @@ get_window_cursor_type (w, width, active_cursor)
       *width = 1;
       return cursor_type;
     }
+#endif
 
   return NO_CURSOR;
 }