aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2003-09-03 07:50:46 +0000
committerKim F. Storm2003-09-03 07:50:46 +0000
commita57dd8b1571521a65a244a1cc990594bb3eb3c8c (patch)
treeedebd67a1facbbc7969d12f391543b09eee7535f /src
parented159bbf70b4a8d77a65d290ec812e87ca55c42e (diff)
downloademacs-a57dd8b1571521a65a244a1cc990594bb3eb3c8c.tar.gz
emacs-a57dd8b1571521a65a244a1cc990594bb3eb3c8c.zip
(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".
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index ce6abb63d54..6a1cba06a52 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -18706,6 +18706,11 @@ get_window_cursor_type (w, width, active_cursor)
18706 return FRAME_BLINK_OFF_CURSOR (f); 18706 return FRAME_BLINK_OFF_CURSOR (f);
18707 } 18707 }
18708 18708
18709#if 0
18710 /* Some people liked having a permanently visible blinking cursor,
18711 while others had very strong opinions against it. So it was
18712 decided to remove it. KFS 2003-09-03 */
18713
18709 /* Finally perform built-in cursor blinking: 18714 /* Finally perform built-in cursor blinking:
18710 filled box <-> hollow box 18715 filled box <-> hollow box
18711 wide [h]bar <-> narrow [h]bar 18716 wide [h]bar <-> narrow [h]bar
@@ -18720,6 +18725,7 @@ get_window_cursor_type (w, width, active_cursor)
18720 *width = 1; 18725 *width = 1;
18721 return cursor_type; 18726 return cursor_type;
18722 } 18727 }
18728#endif
18723 18729
18724 return NO_CURSOR; 18730 return NO_CURSOR;
18725} 18731}