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

yamaken at freedesktop.org yamaken at freedesktop.org
Wed Sep 28 08:06:23 PDT 2005


Author: yamaken
Date: 2005-09-28 08:06:19 -0700 (Wed, 28 Sep 2005)
New Revision: 1665

Modified:
   branches/r5rs/sigscheme/error.c
Log:
* sigscheme/error.c
  - (SigScm_Error, SigScm_ErrorObj):
    * Add a FIXME comment about backtrace
    * Rewrite TODO about exception handling with FIXME


Modified: branches/r5rs/sigscheme/error.c
===================================================================
--- branches/r5rs/sigscheme/error.c	2005-09-28 15:04:33 UTC (rev 1664)
+++ branches/r5rs/sigscheme/error.c	2005-09-28 15:06:19 UTC (rev 1665)
@@ -97,10 +97,11 @@
         SigScm_ErrorNewline();
     }
 
+    /* FIXME: backtrace should be printed by outermost exception handler */
     if (SigScm_DebugCategories() & SCM_DBG_BACKTRACE)
         SigScm_ShowBacktrace();
 
-    /* TODO: throw an exception instead of exiting */
+    /* FIXME: throw an exception instead of exiting */
     exit(EXIT_FAILURE);
 }
 
@@ -113,10 +114,11 @@
         SigScm_ErrorNewline();
     }
    
+    /* FIXME: backtrace should be printed by outermost exception handler */
     if (SigScm_DebugCategories() & SCM_DBG_BACKTRACE)
         SigScm_ShowBacktrace();
  
-    /* TODO: throw an exception instead of exiting */
+    /* FIXME: throw an exception instead of exiting */
     exit(EXIT_FAILURE);
 }
 



More information about the uim-commit mailing list