summaryrefslogtreecommitdiff
path: root/bfd/doc/chew.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@bigpond.net.au>2000-07-08 12:00:26 +0000
committerAlan Modra <amodra@bigpond.net.au>2000-07-08 12:00:26 +0000
commitc1d0790ee43fb2dd4900ab3a3ae3ef3f1df7a5b3 (patch)
tree49c67aa9479669bc07db130a72f20a8a10dbcc2f /bfd/doc/chew.c
parent57ee8befaf61e4a9c0916436f7c4ad05811e86f2 (diff)
downloadgdb-c1d0790ee43fb2dd4900ab3a3ae3ef3f1df7a5b3.tar.gz
Don't add a space before `/*' when processing comments.
Diffstat (limited to 'bfd/doc/chew.c')
-rw-r--r--bfd/doc/chew.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bfd/doc/chew.c b/bfd/doc/chew.c
index eba69c2bb1d..4f5036c09fe 100644
--- a/bfd/doc/chew.c
+++ b/bfd/doc/chew.c
@@ -1,5 +1,5 @@
/* chew
- Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1998
+ Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 1998, 2000
Free Software Foundation, Inc.
Contributed by steve chamberlain @cygnus
@@ -634,7 +634,7 @@ DEFUN_VOID(outputdots)
{
if (c == '{' && at(tos,idx+1) =='*')
{
- cattext(&out," /*");
+ cattext(&out,"/*");
idx+=2;
}
else if (c == '*' && at(tos,idx+1) =='}')
@@ -685,7 +685,7 @@ WORD(courierize)
{
if (at(tos,idx)=='{' && at(tos,idx+1) =='*')
{
- cattext(&out," /*");
+ cattext(&out,"/*");
idx+=2;
}
else if (at(tos,idx)=='*' && at(tos,idx+1) =='}')