diff --git a/Changes b/Changes index 3af472777..fb28d39f1 100644 --- a/Changes +++ b/Changes @@ -11,6 +11,7 @@ been incorporated in changes in this release: Andi Kleen Andrew Josey +Maxime Vaudequin 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.