diff options
author | Andy Wingo <wingo@pobox.com> | 2010-04-07 00:09:53 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-04-07 00:09:53 +0200 |
commit | 4d75554d0a2ed446c1fd7a75f5b69355c5109bcc (patch) | |
tree | aa478b35130cfa516d43fbf3cc835298a7f5a4be | |
parent | d53e5a7edb091255c5026d6e194f4885a32e769d (diff) | |
download | guile-4d75554d0a2ed446c1fd7a75f5b69355c5109bcc.tar.gz |
very important fix to (system repl command)
* module/system/repl/command.scm (language): s/Have fun/Happy hacking/.
Heh.
-rw-r--r-- | module/system/repl/command.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/system/repl/command.scm b/module/system/repl/command.scm index e5e77cb5a..f3b0d1bbf 100644 --- a/module/system/repl/command.scm +++ b/module/system/repl/command.scm @@ -324,7 +324,7 @@ List current bindings." Change languages." (let ((lang (lookup-language name)) (cur (repl-language repl))) - (format #t "Have fun with ~a! To switch back, type `,L ~a'.\n" + (format #t "Happy hacking with ~a! To switch back, type `,L ~a'.\n" (language-title lang) (language-name cur)) (set! (repl-language repl) lang))) |