]> git.donarmstrong.com Git - lilypond.git/blobdiff - ly/scheme-sandbox.ly
Release: bump Welcome versions.
[lilypond.git] / ly / scheme-sandbox.ly
index eb38380256157866f19e14254a5f341a51cadffb..1f233c0cfa46ce064fcedca2a47bde87408849f3 100644 (file)
@@ -1,5 +1,20 @@
-\version "2.14.0"
-#(use-modules (ice-9 readline))
-#(activate-readline)
+\version "2.16.0"
+
+#(load-user-init)
+
+% This loads the user's .guile file for interactive sessions.
+% One typical thing you might want to put there is
+% (use-modules (ice-9 readline))
+% (activate-readline)
+% in order to activate command line editing for interactive sessions.
+% You need libreadline support and the respective Guile module to be
+% installed for that.  In Debian, for example, this is part of the
+% guile-1.8-libs package.  Depending on your system and version, the
+% requirements may be different.
+
 #(newline)
-#(scm-style-repl)
+#(if (guile-v2)
+     (begin
+       (use-modules (system repl repl))
+       (start-repl))
+     (scm-style-repl))