aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJan D2010-08-18 10:06:45 +0200
committerJan D2010-08-18 10:06:45 +0200
commit9cb728a58c53b9acb712d80988dc41ae37408ae1 (patch)
tree1bdddce77003359f22aa8f39ce0908e8eaaa1c68 /src
parent1075cd6169a81e8865714b26f7691cb9e1bc28db (diff)
downloademacs-9cb728a58c53b9acb712d80988dc41ae37408ae1.tar.gz
emacs-9cb728a58c53b9acb712d80988dc41ae37408ae1.zip
* nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/nsterm.m3
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 060b8fb739f..576966dfba3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,9 @@
12010-08-18 Jan Djärv <jan.h.d@swipnet.se> 12010-08-18 Jan Djärv <jan.h.d@swipnet.se>
2 2
3 * nsterm.m (ns_define_frame_cursor): Call x_update_cursor (Bug#6868).
4
52010-08-18 Jan Djärv <jan.h.d@swipnet.se>
6
3 * gtkutil.c (update_frame_tool_bar): Literal stings are const char*. 7 * gtkutil.c (update_frame_tool_bar): Literal stings are const char*.
4 8
52010-08-18 David De La Harpe Golden <david@harpegolden.net> 92010-08-18 David De La Harpe Golden <david@harpegolden.net>
diff --git a/src/nsterm.m b/src/nsterm.m
index 88d47d41972..2eb84607562 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -1792,6 +1792,9 @@ ns_define_frame_cursor (struct frame *f, Cursor cursor)
1792 EmacsView *view = FRAME_NS_VIEW (f); 1792 EmacsView *view = FRAME_NS_VIEW (f);
1793 FRAME_POINTER_TYPE (f) = cursor; 1793 FRAME_POINTER_TYPE (f) = cursor;
1794 [[view window] invalidateCursorRectsForView: view]; 1794 [[view window] invalidateCursorRectsForView: view];
1795 /* Redisplay assumes this function also draws the changed frame
1796 cursor, but this function doesn't, so do it explicitly. */
1797 x_update_cursor (f, 1);
1795 } 1798 }
1796} 1799}
1797 1800