# HG changeset patch # User Kim F. Storm # Date 1062575446 0 # Node ID cb455e3c260389491040d7ab9af191fbdac0ec3c # Parent d5c29bea553c28e5f10b9c2398b668c4b639f9d8 (get_window_cursor_type): Partially undo 2002-03-01 change (superseded by 2002-08-30 change); the default blink-off cursor is now again "no cursor". diff -r d5c29bea553c -r cb455e3c2603 src/xdisp.c --- a/src/xdisp.c Wed Sep 03 07:50:16 2003 +0000 +++ b/src/xdisp.c Wed Sep 03 07:50:46 2003 +0000 @@ -18706,6 +18706,11 @@ 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 @@ *width = 1; return cursor_type; } +#endif return NO_CURSOR; }