[1468] in Athena Bugs
Aesthetic bug fix for sed
daemon@ATHENA.MIT.EDU (epeisach@ATHENA.MIT.EDU)
Mon Dec 5 13:28:43 1988
From: <epeisach@ATHENA.MIT.EDU>
Date: Mon, 5 Dec 88 13:28:23 EST
To: bugs@ATHENA.MIT.EDU
A while back I complained that sed, when given too few {'s in it's
command file would exit with a message missing a newline.
There is only one change. I looked through the program for any other
blatant errors, but couldn't find any.
It's a rather blah bug, but it's nice to have consistant conventions
within a program. The fix is the same on RT and vax sides.
Ezra
------------------------------------------------------------------------------
E40-342-18% diff ~/Src/vax/sed0.c /aeneas/release/vax/source/4.3/bin/sed/sed0.c
110c110
< fprintf(stderr, "Too many {'s\n");
---
> fprintf(stderr, "Too many {'s");
E40-342-18% diff ~/Src/vax/sed0.c /aeneas/release/rt/source/4.3/bin/sed/sed0.c
110c110
< fprintf(stderr, "Too many {'s\n");
---
> fprintf(stderr, "Too many {'s");