This commit is contained in:
Michael Kerrisk 2007-09-20 17:56:48 +00:00
parent 3fbc42c043
commit 22faf92a95
1 changed files with 22 additions and 2 deletions

24
Changes
View File

@ -11,6 +11,7 @@ been incorporated in changes in this release:
Andi Kleen <andi@firstfloor.org>
Andrew Josey <a.josey@opengroup.org>
Maxime Vaudequin <maxime.vaudequin@gmail.com>
Apologies if I missed anyone!
@ -26,8 +27,7 @@ Global changes
The Linux implementation of this interface may differ
(consult the corresponding Linux manual page for details
of Linux behavior), or the interface may not be implemented
on Linux. Typographical or grammatical errors have been
corrected in several places.
on Linux.
*.0p
*.1p
@ -40,3 +40,23 @@ Global changes
mtk
Change all occurrences of my email address:
s/mtk-manpages@gmx.net/mtk.manpages@gmail.com/
Many many pages
Maxime Vaudequin
I noticed useless use of macros with alternating formatting
(".IR" instead ".I" which suffices, ".BR" instead ".B", etc.)
because there is only one element. For example in ldconfig.8:
-.BR /sbin/ldconfig
+.B /sbin/ldconfig
This is not very important, it only makes the sources more tidy.
To find these I used:
egrep '^\.(B[RI]|R[IB]|I[RB]) ([^ ]+|\"[^\"]\+\")$'
And if you want to make these changes, you can use:
sed 's/^\(\.[BRI]\)[BRI]\( \([^ ]\+\|\"[^\"]\+\"\)\)$/\1\2/g'
Typographical or grammatical errors have been corrected in several places.