This is the mail archive of the glibc-cvs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

GNU C Library master sources branch master updated. glibc-2.19-319-gfff763a


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 "GNU C Library master sources".

The branch, master has been updated
       via  fff763a512d574881c51dd273824e8457f413fc7 (commit)
      from  f7ed60c252627aec9c327ec870101c907b22070c (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://sourceware.org/git/gitweb.cgi?p=glibc.git;a=commitdiff;h=fff763a512d574881c51dd273824e8457f413fc7

commit fff763a512d574881c51dd273824e8457f413fc7
Author: OndÅ?ej Bílka <neleai@seznam.cz>
Date:   Mon Apr 28 18:50:22 2014 +0200

    Fix types of stream hook functions in manual.

diff --git a/ChangeLog b/ChangeLog
index 808ea10..c62798e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2014-04-28  OndÅ?ej Bílka  <neleai@seznam.cz>
 
+	[BZ #16754]
+	* manual/stdio.texi (Hook functions): Fix types of stream hook
+	functions.
 	[BZ #16854]
 	* socket/sys/socket.h: Fix typo in comment.
 
diff --git a/NEWS b/NEWS
index 48498df..018e787 100644
--- a/NEWS
+++ b/NEWS
@@ -14,8 +14,8 @@ Version 2.20
   16609, 16610, 16611, 16613, 16619, 16623, 16629, 16632, 16634, 16639,
   16642, 16648, 16649, 16670, 16674, 16677, 16680, 16683, 16689, 16695,
   16701, 16706, 16707, 16712, 16713, 16714, 16731, 16739, 16740, 16743,
-  16758, 16759, 16760, 16770, 16786, 16789, 16799, 16800, 16815, 16824,
-  16831, 16838, 16854.
+  16754, 16758, 16759, 16760, 16770, 16786, 16789, 16799, 16800, 16815,
+  16824, 16831, 16838, 16854.
 
 * Running the testsuite no longer terminates as soon as a test fails.
   Instead, a file tests.sum (xtests.sum from "make xcheck") is generated,
diff --git a/manual/stdio.texi b/manual/stdio.texi
index efdaaad..e407170 100644
--- a/manual/stdio.texi
+++ b/manual/stdio.texi
@@ -5305,26 +5305,26 @@ otherwise.
 
 @comment stdio.h
 @comment GNU
-@deftp {Data Type} cookie_read_function
+@deftp {Data Type} cookie_read_function_t
 This is the data type that the read function for a custom stream should have.
 If you declare the function as shown above, this is the type it will have.
 @end deftp
 
 @comment stdio.h
 @comment GNU
-@deftp {Data Type} cookie_write_function
+@deftp {Data Type} cookie_write_function_t
 The data type of the write function for a custom stream.
 @end deftp
 
 @comment stdio.h
 @comment GNU
-@deftp {Data Type} cookie_seek_function
+@deftp {Data Type} cookie_seek_function_t
 The data type of the seek function for a custom stream.
 @end deftp
 
 @comment stdio.h
 @comment GNU
-@deftp {Data Type} cookie_close_function
+@deftp {Data Type} cookie_close_function_t
 The data type of the close function for a custom stream.
 @end deftp
 

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         |    3 +++
 NEWS              |    4 ++--
 manual/stdio.texi |    8 ++++----
 3 files changed, 9 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
GNU C Library master sources


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]