From: Craig Small Date: Mon, 12 Sep 2005 22:50:28 +0000 (+0000) Subject: pstree doesnt use -G by default X-Git-Tag: v22.11~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b6ee1a811f189903e07636d211a056095f35b513;p=psmisc pstree doesnt use -G by default --- diff --git a/ChangeLog b/ChangeLog index 5a0daca..8270932 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,8 @@ Changes in 21.7 * pstree shows child threads with {commandname} Debian #230924 * better capitalisation with usage SF# 1150042 * Added warning about fuser and tcp/udp access Debian #327813 + * pstree defaults to ASCII not VT100 until problems with terminals + are fixed Debian #288856 * Applied psmisc-21.4-alt-progname to find pstrees name * configure.in checks for tinfo library diff --git a/src/pstree.c b/src/pstree.c index 830786f..7d7e7a5 100644 --- a/src/pstree.c +++ b/src/pstree.c @@ -824,7 +824,10 @@ main (int argc, char **argv) * Failing that, if TERM is defined, a non-null value, and the terminal * has the VT100 graphics charset, use it. */ - sym = &sym_vt100; + /* problems with VT100 on some terminals, making this ascci + * for now + */ + sym = &sym_ascii; } else { /* Otherwise, fall back to ASCII. */ sym = &sym_ascii;