~ chicken-core (chicken-5) c8a25dc4445926eccfbc9343c78491e8d27381d6
commit c8a25dc4445926eccfbc9343c78491e8d27381d6 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Tue Dec 1 11:25:49 2009 +0100 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Tue Dec 1 11:25:49 2009 +0100 removed applyhook and tracing and breakpoint facilities; bumped version to 4.2.12 diff --git a/NEWS b/NEWS index e4b9bb5d..40044287 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +4.2.12 + +- removed tracing facility and apply-hook (see the "trace" egg + for a replacement for tracing and breakpoints) +- chicken-install(1): renamed `-host-extension' option to `-host' + 4.2.11 - added support for a make(1) configuration file ("config.make") diff --git a/README b/README index 91536fea..8ab792c3 100644 --- a/README +++ b/README @@ -3,7 +3,7 @@ (c) 2008-2009, The Chicken Team (c) 2000-2007, Felix L. Winkelmann - version 4.2.11 + version 4.2.12 1. Introduction: diff --git a/buildversion b/buildversion index 7cac8507..3fca9780 100644 --- a/buildversion +++ b/buildversion @@ -1 +1 @@ -4.2.11 +4.2.12 \ No newline at end of file diff --git a/expand.scm b/expand.scm index cca83fc1..d575f777 100644 --- a/expand.scm +++ b/expand.scm @@ -947,7 +947,6 @@ #t #t 'reexport) ) ) (define ##sys#initial-macro-environment (##sys#macro-environment)) -(define ##sys#toplevel-definition-expansion-hook #f) (##sys#extend-macro-environment 'define diff --git a/manual/The User's Manual b/manual/The User's Manual index f27b601f..da49db49 100644 --- a/manual/The User's Manual +++ b/manual/The User's Manual @@ -6,7 +6,7 @@ <img style="float:right; border-left:1px solid #ccc;border-bottom:1px solid #ccc;margin-left:1em;" src="http://www.call-with-current-continuation.org/chicken4.png" alt="Stylized picture of a chicken"/> </nowiki> -This is the manual for Chicken Scheme, version 4.2.11 +This is the manual for Chicken Scheme, version 4.2.12 ; [[Getting started]] : What is CHICKEN and how do I use it? diff --git a/version.scm b/version.scm index abdce27c..03b97c59 100644 --- a/version.scm +++ b/version.scm @@ -1 +1 @@ -(define-constant +build-version+ "4.2.11") +(define-constant +build-version+ "4.2.12")Trap