summaryrefslogtreecommitdiff
path: root/module/system/repl/command.scm
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2011-12-04 21:56:13 +0100
committerAndy Wingo <wingo@pobox.com>2011-12-04 21:56:13 +0100
commit2aef6c2ba990c5829004c28cd410ba26a74c0597 (patch)
tree471f4f2f0ba7524417a035904329f32847678156 /module/system/repl/command.scm
parentd88f5323d10a09533a5b66bb8031a4e2b8e44313 (diff)
downloadguile-2aef6c2ba990c5829004c28cd410ba26a74c0597.tar.gz
,language at REPL sets current-language
* module/system/repl/command.scm (language): Set the *current-language*. * module/system/repl/repl.scm (start-repl): Create a new dynamic scope for *current-language*.
Diffstat (limited to 'module/system/repl/command.scm')
-rw-r--r--module/system/repl/command.scm1
1 files changed, 1 insertions, 0 deletions
diff --git a/module/system/repl/command.scm b/module/system/repl/command.scm
index 3fead7cac..a709c8dd6 100644
--- a/module/system/repl/command.scm
+++ b/module/system/repl/command.scm
@@ -441,6 +441,7 @@ Change languages."
(cur (repl-language repl)))
(format #t "Happy hacking with ~a! To switch back, type `,L ~a'.\n"
(language-title lang) (language-name cur))
+ (fluid-set! *current-language* lang)
(set! (repl-language repl) lang)))