~ chicken-core (chicken-5) b4ba7c6d6708b9af6c2bfbbb16118158dd3e9265
commit b4ba7c6d6708b9af6c2bfbbb16118158dd3e9265
Author: megane <meganeka@gmail.com>
AuthorDate: Sun Dec 8 08:13:25 2019 +0200
Commit: Peter Bex <peter@more-magic.net>
CommitDate: Sun Dec 8 10:55:41 2019 +0100
Add help info to csi banner
Signed-off-by: Peter Bex <peter@more-magic.net>
diff --git a/csi.scm b/csi.scm
index 20769369..0aef9c02 100644
--- a/csi.scm
+++ b/csi.scm
@@ -1080,7 +1080,8 @@ EOF
(eval `(import ,@default-imports))
(unless quiet
(load-verbose #t)
- (print-banner))
+ (print-banner)
+ (print "Type ,? for help."))
(unless (or (member* '("-n" "-no-init") args) script eval?)
(loadinit))
(when batch
diff --git a/manual/Getting started b/manual/Getting started
index 85569770..579e27cb 100644
--- a/manual/Getting started
+++ b/manual/Getting started
@@ -242,6 +242,7 @@ To invoke the CHICKEN interpreter, you use the {{csi}} command.
Version 5.0.0 (rev 6653dce)
linux-unix-gnu-x86-64 [ 64bit dload ptables ]
+ Type ,? for help.
#;1>
This brings up a brief banner, and then the prompt. You can use this
Trap