diff src/gui-gtk.c @ 2552:166ed8151e62

[xemacs-hg @ 2005-02-03 16:30:33 by james] Don't define this to c_this, and rename variables currently named this. See xemacs-patches message with ID <psbrb1ehjl.fsf@diannao.ittc.ku.edu>.
author james
date Thu, 03 Feb 2005 16:30:38 +0000
parents 95fee4a1420e
children 308d34e9f07d
line wrap: on
line diff
--- a/src/gui-gtk.c	Thu Feb 03 16:14:08 2005 +0000
+++ b/src/gui-gtk.c	Thu Feb 03 16:30:38 2005 +0000
@@ -57,19 +57,19 @@
 ungcpro_popup_callbacks (GUI_ID id)
 {
   Lisp_Object lid = make_int (id);
-  Lisp_Object this = assq_no_quit (lid, Vpopup_callbacks);
-  Vpopup_callbacks = delq_no_quit (this, Vpopup_callbacks);
+  Lisp_Object this_callback = assq_no_quit (lid, Vpopup_callbacks);
+  Vpopup_callbacks = delq_no_quit (this_callback, Vpopup_callbacks);
 }
 
 Lisp_Object
 get_gcpro_popup_callbacks (GUI_ID id)
 {
   Lisp_Object lid = make_int (id);
-  Lisp_Object this = assq_no_quit (lid, Vpopup_callbacks);
+  Lisp_Object this_callback = assq_no_quit (lid, Vpopup_callbacks);
 
-  if (!NILP (this))
+  if (!NILP (this_callback))
     {
-      return (XCDR (this));
+      return (XCDR (this_callback));
     }
   return (Qnil);
 }