~ chicken-core (chicken-5) d98606f75e083b2db68d75873600ce20d88a1b08
commit d98606f75e083b2db68d75873600ce20d88a1b08
Author: Peter Bex <peter@more-magic.net>
AuthorDate: Thu Oct 12 16:44:48 2017 +0200
Commit: Evan Hanson <evhan@foldling.org>
CommitDate: Mon Oct 16 09:40:47 2017 +1300
Remove deprecated -n option from csc
This has been deprecated a long time ago in 4.9.0, let's remove it.
Signed-off-by: Evan Hanson <evhan@foldling.org>
diff --git a/NEWS b/NEWS
index 9f945c4c..6828612f 100644
--- a/NEWS
+++ b/NEWS
@@ -25,6 +25,7 @@
- Tools
- The new "-link" option to csc allows linking with objects from extensions.
- The ambiguous "-l<libname>" option for csc has been removed (#1193).
+ - Removed deprecated "-n" shorthand for "-emit-inline-file" from csc.
- Core libraries
- Removed support for memory-mapped files (posix), queues
diff --git a/csc.scm b/csc.scm
index f1030c30..3b4fbf68 100644
--- a/csc.scm
+++ b/csc.scm
@@ -176,7 +176,6 @@
(-x "-explicit-use")
(-u "-unsafe")
(-j "-emit-import-library")
- (-n "-emit-inline-file") ; DEPRECATED
(-b "-block")
(-types "-consult-type-file")))
Trap