Replace @[r|l]bracechar with @{ and @} in the manual

Message ID 20181219210211.16753-1-tuliom@linux.ibm.com
State Dropped
Delegated to: Florian Weimer
Headers

Commit Message

Tulio Magno Quites Machado Filho Dec. 19, 2018, 9:02 p.m. UTC
  The support for @lbracechar and @rbracechar was added in GNU Texinfo
5.0, but glibc still supports GNU Texinfo 4.7.

2018-12-19  Tulio Magno Quites Machado Filho  <tuliom@linux.ibm.com>

	* manual/maint.texi(64-bit time symbol handling): Replace
	@[r|l]bracechar with @{ and @}.

Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
---
 manual/maint.texi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
  

Comments

Florian Weimer Dec. 19, 2018, 9:23 p.m. UTC | #1
* Tulio Magno Quites Machado Filho:

> The support for @lbracechar and @rbracechar was added in GNU Texinfo
> 5.0, but glibc still supports GNU Texinfo 4.7.
>
> 2018-12-19  Tulio Magno Quites Machado Filho  <tuliom@linux.ibm.com>
>
> 	* manual/maint.texi(64-bit time symbol handling): Replace
> 	@[r|l]bracechar with @{ and @}.

Looks fine to me.

Thanks,
Florian
  

Patch

diff --git a/manual/maint.texi b/manual/maint.texi
index a1b8f62d14..ec234e15d7 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