Skip to content

Commit

Permalink
- updated newrelease to produce the correct log-entry format and
Browse files Browse the repository at this point in the history
  fixed the existing 9.4.1 log entry
    newrelease, LOG
- replaced a couple of tabs
    number.c
  • Loading branch information
dybvig committed May 19, 2016
1 parent f0c9a4f commit 0f0468f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
15 changes: 10 additions & 5 deletions LOG
Expand Up @@ -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
4 changes: 2 additions & 2 deletions c/number.c
Expand Up @@ -1157,15 +1157,15 @@ 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) {
mlow += 1;
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;
}
}
Expand Down
4 changes: 2 additions & 2 deletions newrelease
Expand Up @@ -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

0 comments on commit 0f0468f

Please sign in to comment.