aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/xselect.c4
2 files changed, 10 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1d13b2955e4..2fc471131ae 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12007-09-12 Glenn Morris <rgm@gnu.org>
2
3 * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
4 (menu_grab_callback): All uses changed.
5
6 * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
7 (x_reply_selection_request): All uses changed.
8
12007-09-06 Pixel <pixel@mandriva.com> (tiny change) 92007-09-06 Pixel <pixel@mandriva.com> (tiny change)
2 10
3 * image.c (gif_load): Fix bug: Handle nonexistent colormap. 11 * image.c (gif_load): Fix bug: Handle nonexistent colormap.
diff --git a/src/xselect.c b/src/xselect.c
index 43fdc9001ac..073404cb522 100644
--- a/src/xselect.c
+++ b/src/xselect.c
@@ -684,7 +684,7 @@ some_frame_on_display (dpyinfo)
684 FORMAT is the unit-size (in bits) of the data to be transmitted. */ 684 FORMAT is the unit-size (in bits) of the data to be transmitted. */
685 685
686#ifdef TRACE_SELECTION 686#ifdef TRACE_SELECTION
687static int cnt; 687static int x_reply_selection_request_cnt;
688#endif /* TRACE_SELECTION */ 688#endif /* TRACE_SELECTION */
689 689
690static void 690static void
@@ -727,7 +727,7 @@ x_reply_selection_request (event, format, data, size, type)
727 { 727 {
728 char *sel = XGetAtomName (display, reply.selection); 728 char *sel = XGetAtomName (display, reply.selection);
729 char *tgt = XGetAtomName (display, reply.target); 729 char *tgt = XGetAtomName (display, reply.target);
730 TRACE3 ("%s, target %s (%d)", sel, tgt, ++cnt); 730 TRACE3 ("%s, target %s (%d)", sel, tgt, ++x_reply_selection_request_cnt);
731 if (sel) XFree (sel); 731 if (sel) XFree (sel);
732 if (tgt) XFree (tgt); 732 if (tgt) XFree (tgt);
733 } 733 }