]> git.eshelyaron.com Git - emacs.git/commitdiff
(cnt): Rename to x_reply_selection_request_cnt for clarity.
authorGlenn Morris <rgm@gnu.org>
Wed, 12 Sep 2007 07:24:31 +0000 (07:24 +0000)
committerGlenn Morris <rgm@gnu.org>
Wed, 12 Sep 2007 07:24:31 +0000 (07:24 +0000)
(x_reply_selection_request): All uses changed.

src/ChangeLog
src/xselect.c

index 2dde5beff2c1edbc0dfc0fb212d7b34568dd9db6..5cd4a5e8b6692333e20165dd1dda0bc50ce76982 100644 (file)
@@ -1,11 +1,22 @@
 2007-09-12  Glenn Morris  <rgm@gnu.org>
 
+       * Makefile.in (alloca): Do not undef.
+       (allocaobj, alloca.o): Remove.
+       (otherobj): Remove allocaobj.
+       * keyboard.c (command_loop_1): Remove #ifdef C_ALLOCA block.
+       * regex.c (C_ALLOCA): Remove all references and code that was only
+       used when this was defined.
+       * search.c (boyer_moore): Remove #ifdef C_ALLOCA block.
+       * xmenu.c (xmenu_show): Remove #ifdef C_ALLOCA block.
        * m/ibms390x.h, m/sh3el.h (C_ALLOCA): Remove references to this.
 
        * Makefile.in (SOURCES, unlock, relock): Delete.
-       (alloca): Do not undef.
-       (allocaobj, alloca.o): Remove.
-       (otherobj): Remove allocaobj.
+
+       * gtkutil.c (cnt): Rename to menu_grab_callback_cnt for clarity.
+       (menu_grab_callback): All uses changed.
+
+       * xselect.c (cnt): Rename to x_reply_selection_request_cnt for clarity.
+       (x_reply_selection_request): All uses changed.
 
 2007-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
 
index cd1ad05fe2669fa8df0a69fce7b254ddda95ef6b..d71ac42aa7c6b5d15d10232aaee77d10e6145807 100644 (file)
@@ -692,7 +692,7 @@ some_frame_on_display (dpyinfo)
    FORMAT is the unit-size (in bits) of the data to be transmitted.  */
 
 #ifdef TRACE_SELECTION
-static int cnt;
+static int x_reply_selection_request_cnt;
 #endif  /* TRACE_SELECTION */
 
 static void
@@ -735,7 +735,7 @@ x_reply_selection_request (event, format, data, size, type)
   {
     char *sel = XGetAtomName (display, reply.selection);
     char *tgt = XGetAtomName (display, reply.target);
-    TRACE3 ("%s, target %s (%d)", sel, tgt, ++cnt);
+    TRACE3 ("%s, target %s (%d)", sel, tgt, ++x_reply_selection_request_cnt);
     if (sel) XFree (sel);
     if (tgt) XFree (tgt);
   }