X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fterminal%2Fterminal-opts.c;h=db81e6b7de2301c962744fd9b6e5b9109cced427;hb=ab7933960a09a9e1d3ca9a119e11b92a7cff6769;hp=121d89d5712a5bb127ff73f1778d5e498bb7a234;hpb=9ade26c8349b4434008c46cf09bc7473ec743972;p=pspp diff --git a/src/ui/terminal/terminal-opts.c b/src/ui/terminal/terminal-opts.c index 121d89d571..db81e6b7de 100644 --- a/src/ui/terminal/terminal-opts.c +++ b/src/ui/terminal/terminal-opts.c @@ -20,9 +20,10 @@ #include #include +#include + #include "data/settings.h" -#include "data/file-name.h" #include "language/lexer/include-path.h" #include "libpspp/argv-parser.h" #include "libpspp/assertion.h" @@ -39,6 +40,7 @@ #include "output/msglog.h" #include "gl/error.h" +#include "gl/localcharset.h" #include "gl/progname.h" #include "gl/version-etc.h" #include "gl/xmemdup0.h" @@ -169,7 +171,7 @@ usage (void) char *inc_path = string_array_join (include_path_default (), " "); printf (_("\ -PSPP, a program for statistical analysis of sample data.\n\ +PSPP, a program for statistical analysis of sampled data.\n\ Usage: %s [OPTION]... FILE...\n\ \n\ Arguments to long options also apply to equivalent short options.\n\ @@ -299,12 +301,33 @@ terminal_opts_init (struct argv_parser *ap, return to; } +/* Return true iff the terminal appears to be an xterm with + UTF-8 capabilities */ +static bool +term_is_utf8_xterm (void) +{ + char *s = NULL; + + if ( (s = getenv ("TERM")) && (0 == strcmp ("xterm", s)) ) + if ( (s = getenv ("XTERM_LOCALE")) ) + return strcasestr (s, "utf8") || strcasestr (s, "utf-8"); + + return false; +} + void terminal_opts_done (struct terminal_opts *to, int argc, char *argv[]) { register_output_driver (to); if (!to->has_output_driver) { + if ((0 == strcmp (locale_charset (), "UTF-8")) + || + (term_is_utf8_xterm ()) ) + { + string_map_insert (&to->options, "box", "unicode"); + } + string_map_insert (&to->options, "output-file", "-"); string_map_insert (&to->options, "format", "txt"); register_output_driver (to);