[uim-commit] r1656 - branches/r5rs/sigscheme

yamaken at freedesktop.org yamaken at freedesktop.org
Wed Sep 28 06:00:40 PDT 2005


Author: yamaken
Date: 2005-09-28 06:00:38 -0700 (Wed, 28 Sep 2005)
New Revision: 1656

Modified:
   branches/r5rs/sigscheme/debug.c
Log:
* sigscheme/debug.c
  - (SigScm_CategorizedDebug): Move the position in the flie
    appropriately. No other changes are appied


Modified: branches/r5rs/sigscheme/debug.c
===================================================================
--- branches/r5rs/sigscheme/debug.c	2005-09-28 12:59:02 UTC (rev 1655)
+++ branches/r5rs/sigscheme/debug.c	2005-09-28 13:00:38 UTC (rev 1656)
@@ -130,18 +130,6 @@
     debug_mask = categories;
 }
 
-void SigScm_CategorizedDebug(int category, const char *msg, ...)
-{
-    va_list va;
-
-    va_start(va, msg);
-    if (debug_mask & category) {
-        SigScm_VErrorPrintf(msg, va);
-        SigScm_ErrorNewline();
-    }
-    va_end(va);
-}
-
 int SigScm_PredefinedDebugCategories(void)
 {
 #if SCM_DEBUG
@@ -158,6 +146,18 @@
 #endif /* SCM_DEBUG */
 }
 
+void SigScm_CategorizedDebug(int category, const char *msg, ...)
+{
+    va_list va;
+
+    va_start(va, msg);
+    if (debug_mask & category) {
+        SigScm_VErrorPrintf(msg, va);
+        SigScm_ErrorNewline();
+    }
+    va_end(va);
+}
+
 void SigScm_Debug(const char *msg, ...)
 {
     va_list va;



More information about the uim-commit mailing list