User: james
Date: 06/03/14 20:31:46
Modified: xemacs/src ChangeLog profile.h
Log:
Add a missing do to a do { ... } while(0) macro. See message ID
<1141930812.4329.8.camel(a)jerrypc.cs.usu.edu> on the xemacs-patches list.
Revision Changes Path
1.927 +4 -0 XEmacs/xemacs/src/ChangeLog
Index: ChangeLog
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/ChangeLog,v
retrieving revision 1.926
retrieving revision 1.927
diff -u -p -r1.926 -r1.927
--- ChangeLog 2006/03/02 17:11:45 1.926
+++ ChangeLog 2006/03/14 19:31:41 1.927
@@ -1,3 +1,7 @@
+2006-03-09 Jerry James <james(a)xemacs.org>
+
+ * profile.h (RETURN_UNGCPRO_EXIT_PROFILING): Add missing do.
+
2006-03-02 Marcus Crestani <crestani(a)xemacs.org>
* gc.c (show_gc_cursor_and_message): New.
1.4 +1 -0 XEmacs/xemacs/src/profile.h
Index: profile.h
===================================================================
RCS file: /pack/xemacscvs/XEmacs/xemacs/src/profile.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- profile.h 2005/10/25 11:16:27 1.3
+++ profile.h 2006/03/14 19:31:43 1.4
@@ -113,6 +113,7 @@ do \
RETURN_EXIT_PROFILING (tag, Lisp_Object, expr)
#define RETURN_UNGCPRO_EXIT_PROFILING(tag, expr) \
+do \
{ \
Lisp_Object ret_ungc_val = (expr); \
UNGCPRO; \