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.28.9000-545-g8b18d41


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  8b18d418bd0ef1d2b1093e5b956bf176f41f4828 (commit)
      from  4392898d8c348625681581728aa558733e578f07 (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=8b18d418bd0ef1d2b1093e5b956bf176f41f4828

commit 8b18d418bd0ef1d2b1093e5b956bf176f41f4828
Author: Szabolcs Nagy <szabolcs.nagy@arm.com>
Date:   Fri Jan 4 11:06:04 2019 +0000

    Fix the manual for old texinfo
    
    Installing the manual fails with texinfo 4.13:
    
    /S/manual/maint.texi:288: Unknown command `lbracechar'.
    /S/manual/maint.texi:288: Misplaced {.
    /S/manual/maint.texi:288: Misplaced }.
    /S/manual/maint.texi:290: Unknown command `rbracechar'.
    /S/manual/maint.texi:290: Misplaced {.
    /S/manual/maint.texi:290: Misplaced }.
    /S/manual/maint.texi:302: Unknown command `lbracechar'.
    /S/manual/maint.texi:302: Misplaced {.
    /S/manual/maint.texi:302: Misplaced }.
    /S/manual/maint.texi:305: Unknown command `rbracechar'.
    /S/manual/maint.texi:305: Misplaced {.
    /S/manual/maint.texi:305: Misplaced }.
    makeinfo: Removing output file `/B/manual/libc.info' due to errors; use --force to preserve.
    make[2]: *** [Makefile:142: /B/manual/libc.info] Error 1
    
    	* manual/maint.texi: Use @{ and @}.

diff --git a/ChangeLog b/ChangeLog
index 72cf61f..811160d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2019-01-04  Szabolcs Nagy  <szabolcs.nagy@arm.com>
+
+	* manual/maint.texi: Use @{ and @}.
+
 2019-01-04  Florian Weimer  <fweimer@redhat.com>
 
 	* sysdeps/unix/sysv/linux/tst-ttyname.c (adjust_file_limit): New
diff --git a/manual/maint.texi b/manual/maint.texi
index a1b8f62..ec234e1 100644
--- a/manual/maint.texi
+++ b/manual/maint.texi
@@ -285,9 +285,9 @@ and is compiled for both dual-time and single-time configuration classes.
 @smallexample
 struct tm *
 __localtime64 (const __time64_t *t)
-@lbracechar{}
+@{
   return __tz_convert (*t, 1, &_tmbuf);
-@rbracechar{}
+@}
 libc_hidden_def (__localtime64)
 @end smallexample
 
@@ -299,10 +299,10 @@ dual-time configurations:
 
 struct tm *
 localtime (const time_t *t)
-@lbracechar{}
+@{
   __time64_t t64 = *t;
   return __localtime64 (&t64);
-@rbracechar{}
+@}
 libc_hidden_def (localtime)
 
 #endif

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

Summary of changes:
 ChangeLog         |    4 ++++
 manual/maint.texi |    8 ++++----
 2 files changed, 8 insertions(+), 4 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]