summaryrefslogtreecommitdiff
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
parenteca5076b9efee765f91ad0ed5994304714710ca0 (diff)
* manual/xtract-typefun.awk: Swallow [(){}*] from function names.
-rw-r--r--ChangeLog2
-rw-r--r--manual/xtract-typefun.awk2
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 13f55c7578..afaf7d2958 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 ...
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);
}