diff --git a/LOG b/LOG index 1310ec7f7a..7bf36d6c91 100644 --- a/LOG +++ b/LOG @@ -168,8 +168,13 @@ pdhtml.ss 9.4.1 changes: - * updated version to 9.4.1 - bintar BUILDING NOTICE makefiles/Mf-install.in scheme.1.in - c/Makefile.i3nt c/Makefile.a6nt c/Makefile.ti3nt c/Makefile.ta6nt - mats/bldnt.bat workarea c/scheme.rc s/7.ss s/cmacros.ss - release_notes/release_notes.stex csug/csug.stex +- updated version to 9.4.1 + bintar BUILDING NOTICE makefiles/Mf-install.in scheme.1.in + c/Makefile.i3nt c/Makefile.a6nt c/Makefile.ti3nt c/Makefile.ta6nt + mats/bldnt.bat workarea c/scheme.rc s/7.ss s/cmacros.ss + release_notes/release_notes.stex csug/csug.stex +- updated newrelease to produce the correct log-entry format and + fixed the existing 9.4.1 log entry + newrelease, LOG +- replaced a couple of tabs + number.c diff --git a/c/number.c b/c/number.c index 22a00640ca..1ea57b29a2 100644 --- a/c/number.c +++ b/c/number.c @@ -1157,7 +1157,7 @@ static double floatify_normalize(p, e, sign, sticky) bigit *p; iptr e; IBOOL sig if (cutbit) { IBOOL round; /* cutbit = 1 => at least half way to next number. round up if odd or - if there are any bits set to the right of cutbit */ + if there are any bits set to the right of cutbit */ round = (mlow & 1) || sticky; while (!round && n-- > 0) round = *p++ != 0; if (round) { @@ -1165,7 +1165,7 @@ static double floatify_normalize(p, e, sign, sticky) bigit *p; iptr e; IBOOL sig if (e == 0 && mlow == hidden_bit) { e = 1; /* squeaking into lowest normalized spot */ } else if (mlow == hidden_bit * 2) { - /* don't bother with mlow = mlow >> 1 since hidden bit and up are ignored after this */ + /* don't bother with mlow = mlow >> 1 since hidden bit and up are ignored after this */ e += 1; } } diff --git a/newrelease b/newrelease index 554a416e79..3ced224dd0 100755 --- a/newrelease +++ b/newrelease @@ -141,7 +141,7 @@ set updatedfiles = ($updatedfiles csug/csug.stex) cat ../LOG > LOG echo "" >> LOG echo "$R changes:" >> LOG -echo " * updated version to $R" >> LOG -echo $updatedfiles | sed -e 's/^/ /' | fmt >> LOG +echo "- updated version to $R" >> LOG +echo $updatedfiles | sed -e 's/^/ /' | fmt >> LOG exit 0