projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
636d70d
)
2003-11-11 Roland McGrath <roland@redhat.com>
author
roland
<roland>
Wed, 12 Nov 2003 00:49:55 +0000
(
00:49
+0000)
committer
roland
<roland>
Wed, 12 Nov 2003 00:49:55 +0000
(
00:49
+0000)
* manual/xtract-typefun.awk: Swallow [(){}*] from function names.
manual/xtract-typefun.awk
patch
|
blob
|
history
diff --git
a/manual/xtract-typefun.awk
b/manual/xtract-typefun.awk
index
3fccd80
..
d39ceef
100644
(file)
--- a/
manual/xtract-typefun.awk
+++ b/
manual/xtract-typefun.awk
@@
-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);
}