diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | manual/maint.texi | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog index 72cf61f336..811160d77a 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 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 |