aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog17
-rw-r--r--src/nsterm.m2
2 files changed, 15 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d3b3f4cf765..f2768dcc310 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,15 +1,26 @@
12010-11-05 Adrian Robert <Adrian.B.Robert@gmail.com>
2
3 * nsterm.m (EmacsView-mouseExited:): Correct error in conditional
4 logic pointed out by Eli Zaretskii.
5
12010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org> 62010-11-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
2 7
3 * coding.c (coding-category-list): Refer to set-coding-system-priority 8 * coding.c (coding-category-list): Refer to set-coding-system-priority
4 instead of the obsolete set-coding-priority in the doc string. 9 instead of the obsolete set-coding-priority in the doc string.
5 10
11
62010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com> 122010-11-04 Adrian Robert <Adrian.B.Robert@gmail.com>
7 Ismail Donmez <ismail@namtrac.org> (tiny change) 13
14 * nsfont.m (nsfont_draw): Correct previous patch to return
15 correct value.
16 * nsimage.m (EmacsImage-setXBMColor:): Correct previous patch:
17 don't change the method signature, change the return.
18
192010-11-04 Ismail Donmez <ismail@namtrac.org> (tiny change)
8 20
9 * nsfont.m (nsfont_draw) 21 * nsfont.m (nsfont_draw)
10 * nsimage.m (EmacsImage-setXBMColor:) 22 * nsimage.m (EmacsImage-setXBMColor:)
11 * nsterm.m (EmacsView-performDragOperation:): Correct empty return 23 * nsterm.m (EmacsView-performDragOperation:): Correct empty return.
12 statements.
13 24
142010-11-03 Julien Danjou <julien@danjou.info> 252010-11-03 Julien Danjou <julien@danjou.info>
15 26
diff --git a/src/nsterm.m b/src/nsterm.m
index 2fd82a0cf9b..bdca33efed5 100644
--- a/src/nsterm.m
+++ b/src/nsterm.m
@@ -5313,7 +5313,7 @@ ns_term_shutdown (int sig)
5313 5313
5314 NSTRACE (mouseExited); 5314 NSTRACE (mouseExited);
5315 5315
5316 if (dpyinfo || !emacsframe) 5316 if (!dpyinfo)
5317 return; 5317 return;
5318 5318
5319 last_mouse_movement_time = EV_TIMESTAMP (theEvent); 5319 last_mouse_movement_time = EV_TIMESTAMP (theEvent);