[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-901
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-901-g5e0f3eb |
Date: |
Mon, 30 May 2016 21:53:32 +0000 (UTC) |
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, gawk-4.1-stable has been updated
via 5e0f3ebb5f985a9ad8fa3d57ab8c1f0669056630 (commit)
from ce211fb7fcf1463619d2b2ef32b8f6c2f4f35459 (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=5e0f3ebb5f985a9ad8fa3d57ab8c1f0669056630
commit 5e0f3ebb5f985a9ad8fa3d57ab8c1f0669056630
Author: Arnold D. Robbins <address@hidden>
Date: Mon May 30 17:53:23 2016 -0400
Update getopt from GLIBC.
diff --git a/ChangeLog b/ChangeLog
index 77119e0..3e2d8d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,8 @@
* field.c (set_FS): Handle FS = "\0" if RS = "". Thanks to
Janis Papanagnou for the report.
+ * getopt.c, getopt.h, getopt1.c, getopt_int.h: Sync with GLIBC.
+
2016-05-26 Andrew J. Schorr <address@hidden>
* awk.h (get_actual_argument): Remove unused "optional" argument.
diff --git a/getopt.c b/getopt.c
index 4de0b9a..8bc5961 100644
--- a/getopt.c
+++ b/getopt.c
@@ -2,7 +2,7 @@
NOTE: getopt is part of the C library, so if you don't know what
"Keep this file name-space clean" means, talk to address@hidden
before changing it!
- Copyright (C) 1987-2015 Free Software Foundation, Inc.
+ Copyright (C) 1987-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -597,7 +597,7 @@ _getopt_internal_r (int argc, char *const *argv, const char
*optstring,
char *buf = NULL;
size_t buflen = 0;
- FILE *fp = open_memstream (&buf, &buflen);
+ FILE *fp = __open_memstream (&buf, &buflen);
if (fp != NULL)
{
fprintf (fp,
diff --git a/getopt.h b/getopt.h
index 75cd5e8..8393569 100644
--- a/getopt.h
+++ b/getopt.h
@@ -1,5 +1,5 @@
/* Declarations for getopt.
- Copyright (C) 1989-2015 Free Software Foundation, Inc.
+ Copyright (C) 1989-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
diff --git a/getopt1.c b/getopt1.c
index b61041d..438fe52 100644
--- a/getopt1.c
+++ b/getopt1.c
@@ -1,5 +1,5 @@
/* getopt_long and getopt_long_only entry points for GNU getopt.
- Copyright (C) 1987-2015 Free Software Foundation, Inc.
+ Copyright (C) 1987-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
diff --git a/getopt_int.h b/getopt_int.h
index 03d6227..514a1be 100644
--- a/getopt_int.h
+++ b/getopt_int.h
@@ -1,5 +1,5 @@
/* Internal declarations for getopt.
- Copyright (C) 1989-2015 Free Software Foundation, Inc.
+ Copyright (C) 1989-2016 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 2 ++
getopt.c | 4 ++--
getopt.h | 2 +-
getopt1.c | 2 +-
getopt_int.h | 2 +-
5 files changed, 7 insertions(+), 5 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-901-g5e0f3eb,
Arnold Robbins <=