mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
* manual/xtract-typefun.awk: Swallow [(){}*] from function names.
This commit is contained in:
parent
eca5076b9e
commit
2c9a14889c
@ -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 ...
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user