diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2011-04-01 11:52:37 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2011-04-01 11:52:37 +0300 |
commit | 6aed27e0a553cb31800bbaeee1bf8e96a98abb12 (patch) | |
tree | 6da50e73f4ef581b3e66dbcec614d39a3dbf23db /main.c | |
parent | b1746329b7749a8f760bab04c12e5127a23e46ed (diff) | |
download | egawk-6aed27e0a553cb31800bbaeee1bf8e96a98abb12.tar.gz egawk-6aed27e0a553cb31800bbaeee1bf8e96a98abb12.tar.bz2 egawk-6aed27e0a553cb31800bbaeee1bf8e96a98abb12.zip |
Change ISATTY macro to os_isatty function.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -621,7 +621,7 @@ out: #ifdef GAWKDEBUG setbuf(stdout, (char *) NULL); /* make debugging easier */ #endif - if (ISATTY(fileno(stdout))) + if (os_isatty(fileno(stdout))) output_is_tty = TRUE; /* No -f or --source options, use next arg */ if (srcfiles->next == srcfiles) { |