~ chicken-core (chicken-5) ef5ebf95e01479c1bca667d7307e3f56cd7763f8


commit ef5ebf95e01479c1bca667d7307e3f56cd7763f8
Author:     unknown <felix@.(none)>
AuthorDate: Mon Oct 26 08:50:50 2009 +0100
Commit:     Felix <bunny351@gmail.com>
CommitDate: Sun Nov 8 00:25:23 2009 +0100

    -debug S instead of -debug C

diff --git a/batch-driver.scm b/batch-driver.scm
index f4f65010..eaf460d9 100644
--- a/batch-driver.scm
+++ b/batch-driver.scm
@@ -449,7 +449,7 @@
 			 '((##core#undefined))) ] )
 
 	     (when (and (pair? compiler-syntax-statistics)
-			(debugging 'C "applied compiler syntax:"))
+			(debugging 'S "applied compiler syntax:"))
 	       (for-each 
 		(lambda (cs) (printf "  ~a\t\t~a~%" (car cs) (cdr cs)))
 		compiler-syntax-statistics))
diff --git a/manual/Using the compiler b/manual/Using the compiler
index a40536db..89dad9bb 100644
--- a/manual/Using the compiler	
+++ b/manual/Using the compiler	
@@ -41,7 +41,6 @@ Possible options are:
      t          show time needed for compilation
      b          show breakdown of time needed for each compiler pass
      o          show performed optimizations
-     C          show applications of compiler syntax
      r          show invocation parameters
      s          show program-size information and other statistics
      a          show node-matching during simplification
@@ -56,6 +55,7 @@ Possible options are:
      D          when printing nodes, use node-tree output
      N          show the real-name mapping table
      0          show database before lambda-lifting pass
+     S          show applications of compiler syntax
      T          show expressions after converting to node tree
      L          show expressions after lambda-lifting
      M          show syntax-/runtime-requirements
Trap