* manual/xtract-typefun.awk: Swallow [(){}*] from function names.

This commit is contained in:
Roland McGrath 2003-11-12 00:50:03 +00:00
parent eca5076b9e
commit 2c9a14889c
2 changed files with 4 additions and 0 deletions

View file

@ -1,5 +1,7 @@
2003-11-11 Roland McGrath <roland@redhat.com>
* manual/xtract-typefun.awk: Swallow [(){}*] from function names.
* manual/Makefile (info): Don't depend on dir-add.info.
(libc.dvi libc.pdf libc.info): Depend on dir-add.texi.
(dir-add.info): Target removed, replaced with ...

View file

@ -23,6 +23,7 @@ BEGIN {
check++;
}
gsub(/[(){}*]/, "", $id);
printf ("* %s: (libc)%s.\n", $id, last_node);
}
@ -37,5 +38,6 @@ BEGIN {
check++;
}
gsub(/[(){}*]/, "", $id);
printf ("* %s: (libc)%s.\n", $id, last_node);
}