diff options
| author | Glenn Morris | 2007-09-12 07:24:31 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-09-12 07:24:31 +0000 |
| commit | ca7af97ab35eb266bb9320208c6c27721e32d12a (patch) | |
| tree | ad6381de21bd918d7022856153eb3f1f3ea1cd30 | |
| parent | 839cc4d4f4446d77925b7b95177671e1ba55b0b7 (diff) | |
| download | emacs-ca7af97ab35eb266bb9320208c6c27721e32d12a.tar.gz emacs-ca7af97ab35eb266bb9320208c6c27721e32d12a.zip | |
(cnt): Rename to x_reply_selection_request_cnt for clarity.
(x_reply_selection_request): All uses changed.
| -rw-r--r-- | src/ChangeLog | 17 | ||||
| -rw-r--r-- | src/xselect.c | 4 |
2 files changed, 16 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 2dde5beff2c..5cd4a5e8b66 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,11 +1,22 @@ | |||
| 1 | 2007-09-12 Glenn Morris <rgm@gnu.org> | 1 | 2007-09-12 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * Makefile.in (alloca): Do not undef. | ||
| 4 | (allocaobj, alloca.o): Remove. | ||
| 5 | (otherobj): Remove allocaobj. | ||
| 6 | * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block. | ||
| 7 | * regex.c (C_ALLOCA): Remove all references and code that was only | ||
| 8 | used when this was defined. | ||
| 9 | * search.c (boyer_moore): Remove #ifdef C_ALLOCA block. | ||
| 10 | * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block. | ||
| 3 | * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this. | 11 | * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this. |
| 4 | 12 | ||
| 5 | * Makefile.in (SOURCES, unlock, relock): Delete. | 13 | * Makefile.in (SOURCES, unlock, relock): Delete. |
| 6 | (alloca): Do not undef. | 14 | |
| 7 | (allocaobj, alloca.o): Remove. | 15 | * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity. |
| 8 | (otherobj): Remove allocaobj. | 16 | (menu_grab_callback): All uses changed. |
| 17 | |||
| 18 | * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity. | ||
| 19 | (x_reply_selection_request): All uses changed. | ||
| 9 | 20 | ||
| 10 | 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca> | 21 | 2007-09-11 Stefan Monnier <monnier@iro.umontreal.ca> |
| 11 | 22 | ||
diff --git a/src/xselect.c b/src/xselect.c index cd1ad05fe26..d71ac42aa7c 100644 --- a/src/xselect.c +++ b/src/xselect.c | |||
| @@ -692,7 +692,7 @@ some_frame_on_display (dpyinfo) | |||
| 692 | FORMAT is the unit-size (in bits) of the data to be transmitted. */ | 692 | FORMAT is the unit-size (in bits) of the data to be transmitted. */ |
| 693 | 693 | ||
| 694 | #ifdef TRACE_SELECTION | 694 | #ifdef TRACE_SELECTION |
| 695 | static int cnt; | 695 | static int x_reply_selection_request_cnt; |
| 696 | #endif /* TRACE_SELECTION */ | 696 | #endif /* TRACE_SELECTION */ |
| 697 | 697 | ||
| 698 | static void | 698 | static void |
| @@ -735,7 +735,7 @@ x_reply_selection_request (event, format, data, size, type) | |||
| 735 | { | 735 | { |
| 736 | char *sel = XGetAtomName (display, reply.selection); | 736 | char *sel = XGetAtomName (display, reply.selection); |
| 737 | char *tgt = XGetAtomName (display, reply.target); | 737 | char *tgt = XGetAtomName (display, reply.target); |
| 738 | TRACE3 ("%s, target %s (%d)", sel, tgt, ++cnt); | 738 | TRACE3 ("%s, target %s (%d)", sel, tgt, ++x_reply_selection_request_cnt); |
| 739 | if (sel) XFree (sel); | 739 | if (sel) XFree (sel); |
| 740 | if (tgt) XFree (tgt); | 740 | if (tgt) XFree (tgt); |
| 741 | } | 741 | } |