diff src/eval.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 9f70af3ac939
children 578c6447aa28
line wrap: on
line diff
--- a/src/eval.c	Thu Feb 03 16:14:08 2005 +0000
+++ b/src/eval.c	Thu Feb 03 16:30:38 2005 +0000
@@ -587,10 +587,10 @@
 
   while (CONSP (conditions))
     {
-      Lisp_Object this, tail;
-      this = XCAR (conditions);
+      Lisp_Object curr, tail;
+      curr = XCAR (conditions);
       for (tail = list; CONSP (tail); tail = XCDR (tail))
-	if (EQ (XCAR (tail), this))
+	if (EQ (XCAR (tail), curr))
 	  return 1;
       conditions = XCDR (conditions);
     }