diff src/debug.c @ 380:8626e4521993 r21-2-5

Import from CVS: tag r21-2-5
author cvs
date Mon, 13 Aug 2007 11:07:10 +0200
parents 7df0dd720c89
children 74fd4e045ea6
line wrap: on
line diff
--- a/src/debug.c	Mon Aug 13 11:06:08 2007 +0200
+++ b/src/debug.c	Mon Aug 13 11:07:10 2007 +0200
@@ -59,10 +59,10 @@
 static Lisp_Object
 xemacs_debug_loop (enum debug_loop op, Lisp_Object class, Lisp_Object type)
 {
-  int flag = ((op == ADD) ? 1 : 0);
+  int flag = (op == ADD) ? 1 : 0;
   Lisp_Object retval = Qnil;
 
-#define FROB(item)\
+#define FROB(item)							\
   if (op == LIST || op == ACTIVE || op == INIT || EQ (class, Q##item))	\
     {									\
       if (op == ADD || op == DELETE || op == INIT)			\
@@ -75,7 +75,7 @@
       else if (op == SETTYPE)						\
         active_debug_classes.types_of_##item = XINT (type);		\
       else if (op == TYPE)						\
-        retval = make_int (active_debug_classes.types_of_##item), Qnil; \
+        retval = make_int (active_debug_classes.types_of_##item);	\
       if (op == INIT) active_debug_classes.types_of_##item = VALBITS;	\
     }