[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. b5c796b43307c74a21ebcd1
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. b5c796b43307c74a21ebcd1b95303ff79f48819f |
Date: |
Sun, 01 May 2011 16:40:32 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, master has been updated
via b5c796b43307c74a21ebcd1b95303ff79f48819f (commit)
from 526e360640bb3beddc963d3a4b2982081d548753 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=b5c796b43307c74a21ebcd1b95303ff79f48819f
commit b5c796b43307c74a21ebcd1b95303ff79f48819f
Author: Arnold D. Robbins <address@hidden>
Date: Sun May 1 19:40:15 2011 +0300
Compile fix for VMS.
diff --git a/vms/ChangeLog b/vms/ChangeLog
index 3a3b74a..39381a8 100644
--- a/vms/ChangeLog
+++ b/vms/ChangeLog
@@ -1,3 +1,7 @@
+Fri Apr 29 18:10:49 2011 Pat Rankin <address@hidden>
+
+ * gawkmisc.vms (os_isatty): New routine.
+
Sat Feb 26 18:35:01 2011 Pat Rankin <address@hidden>
* vms_gawk.c, gawk.cld: Add support for new command qualifiers:
diff --git a/vms/gawkmisc.vms b/vms/gawkmisc.vms
index afff3b8..346a1e8 100644
--- a/vms/gawkmisc.vms
+++ b/vms/gawkmisc.vms
@@ -188,3 +188,9 @@ files_are_same(char *newfile, SRCFILE *oldfile)
&& f1->st_ino[1] == f2->st_ino[1]
&& f1->st_ino[2] == f2->st_ino[2]);
}
+
+int
+os_isatty(int fd)
+{
+ return (isatty(fd) > 0);
+}
-----------------------------------------------------------------------
Summary of changes:
vms/ChangeLog | 4 ++++
vms/gawkmisc.vms | 6 ++++++
2 files changed, 10 insertions(+), 0 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. b5c796b43307c74a21ebcd1b95303ff79f48819f,
Arnold Robbins <=