diff options
author | Alan Modra <amodra@gmail.com> | 2000-07-08 12:00:26 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2000-07-08 12:00:26 +0000 |
commit | 181866dcc78f58b2c46d54eaf0db70f010256770 (patch) | |
tree | 4e5391cf912f0a54a50fcc32c181e4f7db205ae0 /bfd/doc | |
parent | bd79f7577d8373d52ff0f23c5b410338fc9cfb67 (diff) | |
download | gdb-181866dcc78f58b2c46d54eaf0db70f010256770.zip gdb-181866dcc78f58b2c46d54eaf0db70f010256770.tar.gz gdb-181866dcc78f58b2c46d54eaf0db70f010256770.tar.bz2 |
Don't add a space before `/*' when processing comments.
Diffstat (limited to 'bfd/doc')
-rw-r--r-- | bfd/doc/ChangeLog | 5 | ||||
-rw-r--r-- | bfd/doc/chew.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/bfd/doc/ChangeLog b/bfd/doc/ChangeLog index 39c7265..3a739b7 100644 --- a/bfd/doc/ChangeLog +++ b/bfd/doc/ChangeLog @@ -1,3 +1,8 @@ +2000-07-08 Alan Modra <alan@linuxcare.com.au> + + * chew.c (outputdots): Don't add a space before `/*'. + (courierize): Likewise. + Wed May 24 12:03:25 2000 Hans-Peter Nilsson <hp@axis.com> * bfdint.texi (BFD ELF processor required): Add paragraph about diff --git a/bfd/doc/chew.c b/bfd/doc/chew.c index eba69c2..4f5036c 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) =='}') |