diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-04-09 23:15:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-04-09 23:15:45 +0000 |
commit | f66d7d4f0d88285568cdf09e9d3586961227a8ef (patch) | |
tree | 687d455171d7053fe2b735d08e7dda4f953fbe02 | |
parent | 7119ea6d26c7170af721db7eabdcbf1057cb205b (diff) | |
download | glibc-f66d7d4f0d88285568cdf09e9d3586961227a8ef.tar.gz glibc-f66d7d4f0d88285568cdf09e9d3586961227a8ef.tar.xz glibc-f66d7d4f0d88285568cdf09e9d3586961227a8ef.zip |
Recognize documentation of obsolete functions.
-rw-r--r-- | scripts/documented.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/documented.sh b/scripts/documented.sh index 85fb8687c1..a0399872b7 100644 --- a/scripts/documented.sh +++ b/scripts/documented.sh @@ -3,8 +3,8 @@ bindir=$1 VERSION=1.0 -egrep -h @deftypefunx? *.texi ../linuxthreads/*.texi | -sed -e 's/@deftypefunx*[[:space:]]*\({[^{]*}\|[[:alnum:]_]*\)[[:space:]]*\([[:alnum:]_]*\).*/\2/' -e '/^@/d' | +egrep -h @deftypefu?nx? *.texi ../linuxthreads/*.texi | +sed -e 's/@deftypefunx*[[:space:]]*\({[^{]*}\|[[:alnum:]_]*\)[[:space:]]*\([[:alnum:]_]*\).*/\2/' -e 's/@deftypefn {[^}]*function}*[[:space:]]*\({[^{]*}\|[[:alnum:]_]*\)[[:space:]]*\([[:alnum:]_]*\).*/\2/' -e '/^@/d' | sed -e '/^obstack_/d' -e '/^\([lf]\|\)stat\(\|64\)$/d' -e '/^mknod$/d' | sed -e '/^signbit$/d' -e '/^sigsetjmp$/d' | sed -e '/^pthread_cleanup/d' -e '/^IFTODT$/d' -e '/^DTTOIF$/d' | |