summaryrefslogtreecommitdiffstats
path: root/Changes.old
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-09-20 18:15:23 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-09-20 18:15:23 +0000
commitb0aca9e98737ff278b1de4a44bb14d9ccda7a407 (patch)
tree15257f0eee636ad1834c436a29463c265c798318 /Changes.old
parent796476ae1987b2e85a922cb0fd0c1847d43251d6 (diff)
Start of 2.68
Diffstat (limited to 'Changes.old')
-rw-r--r--Changes.old69
1 files changed, 66 insertions, 3 deletions
diff --git a/Changes.old b/Changes.old
index d96d6f6e4..625ae309e 100644
--- a/Changes.old
+++ b/Changes.old
@@ -8040,9 +8040,9 @@ stat.2
syscalls.2
mtk
A fairly substantial rewrite of this page,
- bringining it up to date with the current
- kernel version, and listing all system calls
- in tabular form.
+ bringining it up to date with the current
+ kernel version, and listing all system calls
+ in tabular form.
uname.2
mtk
@@ -8928,3 +8928,66 @@ rpc.3
Mats Wichmann
Fix type definition for 'protocol' in prototypes of pmap_set()
and pmap_getport().
+
+
+==================== Changes in man-pages-2.67 ====================
+
+Released: 2007-10-08
+
+
+Contributors
+------------
+
+The following people contributed notes, ideas, or patches that have
+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!
+
+
+Global changes
+--------------
+
+*.1p
+*.3p
+ mtk, after a note by Andi Kleen and consultation with Andrew Josey.
+ Add a PROLOG section:
+ This manual page is part of the POSIX Programmer's Manual.
+ 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.
+
+*.0p
+*.1p
+*.3p
+ mtk
+ Some formatting fixes, mostly to get rid of unwanted
+ spaces before "," in formatted output.
+
+*
+*/*
+ 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'