diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2000-06-05 20:54:46 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2000-06-05 20:54:46 +0000 |
| commit | c85e2c8e576f4244fffc47e0f37023ded1b637d7 (patch) | |
| tree | 7acd934ec2a1f0b0b353d06dc7f33ef47da4843d | |
| parent | ab08444f95b8a0f94b1db9371ff861d8ae2bfbeb (diff) | |
Notes
| -rw-r--r-- | bin/ls/print.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/bin/ls/print.c b/bin/ls/print.c index 1cdbf4f4d1cf..fc9bf93f4b6f 100644 --- a/bin/ls/print.c +++ b/bin/ls/print.c @@ -59,7 +59,6 @@ static const char rcsid[] = #ifdef COLORLS #include <ctype.h> #include <termcap.h> -#include <term.h> /* for tparm */ #include <signal.h> #endif @@ -371,14 +370,14 @@ printcolor(c) char *ansiseq; if (colors[c][0] != -1) { - ansiseq = tparm(ansi_fgcol, colors[c][0]); - if (ansiseq) + ansiseq = tgoto(ansi_fgcol, 0, colors[c][0]); + if (ansiseq && *ansiseq != 'O') /* "OOPS" */ tputs(ansiseq, 1, putch); } if (colors[c][1] != -1) { - ansiseq = tparm(ansi_bgcol, colors[c][1]); - if (ansiseq) + ansiseq = tgoto(ansi_bgcol, 0, colors[c][1]); + if (ansiseq && *ansiseq != 'O') /* "OOPS" */ tputs(ansiseq, 1, putch); } } |
