For 21.5.
Reply-to set to xemacs-beta.
>>>> "Adam" == Adam Duck
<duck(a)informatik.uni-frankfurt.de> writes:
Adam> alloc.c: In function `mark_with_description':
Adam> alloc.c:3216: `obj' undeclared (first use in this function)
Hate C macro syntax. Hate, hate, hate.
Thanks for the report. Apply this:
Index: src/ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.535
diff -u -U0 -r1.535 ChangeLog
--- src/ChangeLog 23 Jan 2003 02:16:42 -0000 1.535
+++ src/ChangeLog 31 Jan 2003 03:32:43 -0000
@@ -0,0 +1,5 @@
+2003-01-31 Stephen J. Turnbull <stephen(a)xemacs.org>
+
+ * alloc.c (mark_object_maybe_checking_free): C macro syntax
+ requires paren to immediately follow definiendum.
+
Index: src/alloc.c
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/alloc.c,v
retrieving revision 1.80
diff -u -r1.80 alloc.c
--- src/alloc.c 12 Jan 2003 11:08:07 -0000 1.80
+++ src/alloc.c 31 Jan 2003 03:32:51 -0000
@@ -3149,7 +3149,7 @@
mark_object (obj);
}
#else
-#define mark_object_maybe_checking_free (obj, allow_free) mark_object (obj)
+#define mark_object_maybe_checking_free(obj, allow_free) mark_object (obj)
#endif /* ERROR_CHECK_GC */
/* This function is called to mark the elements of an object. It processes
--
Institute of Policy and Planning Sciences
http://turnbull.sk.tsukuba.ac.jp
University of Tsukuba Tennodai 1-1-1 Tsukuba 305-8573 JAPAN
Ask not how you can "do" free software business;
ask what your business can "do for" free software.