aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2007-09-12 17:19:45 +0000
committerGlenn Morris2007-09-12 17:19:45 +0000
commit5fc76febc8acfbd0f844cc93d96ccb9caf0a2771 (patch)
treedc227c5c7d27ec5ad41f599ca02b456d0716f2d0 /src
parentc29ec096c7d43dc6449bc9cc12e100737eae031b (diff)
downloademacs-5fc76febc8acfbd0f844cc93d96ccb9caf0a2771.tar.gz
emacs-5fc76febc8acfbd0f844cc93d96ccb9caf0a2771.zip
(cnt): Rename to x_reply_selection_request_cnt for clarity.
(x_reply_selection_request): All uses changed.
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 }