about summary refs log tree commit diff
path: root/scripts/documented.sh
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-04-09 23:15:45 +0000
committerUlrich Drepper <drepper@redhat.com>2001-04-09 23:15:45 +0000
commitf66d7d4f0d88285568cdf09e9d3586961227a8ef (patch)
tree687d455171d7053fe2b735d08e7dda4f953fbe02 /scripts/documented.sh
parent7119ea6d26c7170af721db7eabdcbf1057cb205b (diff)
downloadglibc-f66d7d4f0d88285568cdf09e9d3586961227a8ef.tar.gz
glibc-f66d7d4f0d88285568cdf09e9d3586961227a8ef.tar.xz
glibc-f66d7d4f0d88285568cdf09e9d3586961227a8ef.zip
Recognize documentation of obsolete functions.
Diffstat (limited to 'scripts/documented.sh')
-rw-r--r--scripts/documented.sh4
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' |