diff options
author | Marius Vollmer <mvo@zagadka.de> | 2004-08-12 17:35:53 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2004-08-12 17:35:53 +0000 |
commit | 0d189573e59f2e5e15bf1287d08dc2af2a47e07d (patch) | |
tree | 12887763f90e76cbdbf482dd085bf5ddcef60f31 | |
parent | 3eb1e2aa881a7da9de2336c6b421707d3627eacb (diff) | |
download | guile-0d189573e59f2e5e15bf1287d08dc2af2a47e07d.tar.gz |
Convert version to locale string before printing it.
-rw-r--r-- | libguile/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/script.c b/libguile/script.c index 8b47633db..a8a84185f 100644 --- a/libguile/script.c +++ b/libguile/script.c @@ -584,7 +584,7 @@ scm_compile_shell_switches (int argc, char **argv) "certain other uses are permitted as well. For details, see the file\n" "`COPYING', which is included in the Guile distribution.\n" "There is no warranty, to the extent permitted by law.\n", - SCM_STRING_CHARS (scm_version ())); + scm_to_locale_string (scm_version ())); exit (0); } |