summaryrefslogtreecommitdiff
path: root/manual
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-11-12 00:50:03 +0000
committerRoland McGrath <roland@gnu.org>2003-11-12 00:50:03 +0000
commit2c9a14889ce72ce247410a380f111a21599ba955 (patch)
tree473fd21591a29e10597802c6417b4aa5fdc98987 /manual
parenteca5076b9efee765f91ad0ed5994304714710ca0 (diff)
* manual/xtract-typefun.awk: Swallow [(){}*] from function names.
Diffstat (limited to 'manual')
-rw-r--r--manual/xtract-typefun.awk2
1 files changed, 2 insertions, 0 deletions
diff --git a/manual/xtract-typefun.awk b/manual/xtract-typefun.awk
index 3fccd8000e..d39ceef188 100644
--- 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);
}