diff options
author | David Thompson <dthompson2@worcester.edu> | 2015-07-26 23:07:39 -0400 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2015-07-26 23:15:09 -0400 |
commit | 8d027f025b7e8999c58cb7279448cd27aaae5ebb (patch) | |
tree | efe43346f6059be67fd0b450fc92d94792a6f8a5 /haunt/ui.scm | |
parent | 19a26608f2739f3744b8dc7254e8cfe5d24d3867 (diff) |
ui: Set default locale for all commands.
* haunt/ui.scm (haunt-main): Set LC_ALL.
Diffstat (limited to 'haunt/ui.scm')
-rw-r--r-- | haunt/ui.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/haunt/ui.scm b/haunt/ui.scm index f12e6d3..fd211e3 100644 --- a/haunt/ui.scm +++ b/haunt/ui.scm @@ -124,6 +124,7 @@ There is NO WARRANTY, to the extent permitted by law.~%" (apply command-main args)))) (define* (haunt-main arg0 . args) + (setlocale LC_ALL "") (match args (() (show-haunt-usage)) |