From 8a8c42119282ef9bd62866c216cf00a99058ecc9 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Thu, 25 Apr 2019 03:23:25 -0700 Subject: [PATCH] 5125 --- html/subx/074print-int-decimal.subx.html | 9 +++++---- subx/074print-int-decimal.subx | 8 ++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/html/subx/074print-int-decimal.subx.html b/html/subx/074print-int-decimal.subx.html index 37c3f6df..9792c7d9 100644 --- a/html/subx/074print-int-decimal.subx.html +++ b/html/subx/074print-int-decimal.subx.html @@ -24,6 +24,7 @@ a { color:inherit; } .Folded { color: #080808; background-color: #949494; } .Normal { color: #000000; background-color: #c6c6c6; padding-bottom: 1px; } .subxS2Comment { color: #8a8a8a; } +.subxH1Comment { color: #005faf; text-decoration: underline; } --> @@ -198,7 +199,7 @@ if ('onhashchange' in window) { 137 # never gets here 138 139 test-print-int32-decimal: -140 # check that a single-digit number converts correctly +140 # - check that a single-digit number converts correctly 141 # setup 142 # . clear-stream(_test-stream) 143 # . . push args @@ -228,7 +229,7 @@ if ('onhashchange' in window) { 167 c3/return 168 169 test-print-int32-decimal-multiple-digits: -170 # check that a multi-digit number converts correctly +170 # - check that a multi-digit number converts correctly 171 # setup 172 # . clear-stream(_test-stream) 173 # . . push args @@ -258,7 +259,7 @@ if ('onhashchange' in window) { 197 c3/return 198 199 test-print-int32-decimal-negative: -200 # check that a negative single-digit number converts correctly +200 # - check that a negative single-digit number converts correctly 201 # setup 202 # . clear-stream(_test-stream) 203 # . . push args @@ -289,7 +290,7 @@ if ('onhashchange' in window) { 253 c3/return 254 255 test-print-int32-decimal-negative-multiple-digits: -256 # check that a multi-digit number converts correctly +256 # - check that a multi-digit number converts correctly 257 # setup 258 # . clear-stream(_test-stream) 259 # . . push args diff --git a/subx/074print-int-decimal.subx b/subx/074print-int-decimal.subx index d4617aba..86015a00 100644 --- a/subx/074print-int-decimal.subx +++ b/subx/074print-int-decimal.subx @@ -137,7 +137,7 @@ $print-int32-decimal:abort: # never gets here test-print-int32-decimal: - # check that a single-digit number converts correctly + # - check that a single-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -167,7 +167,7 @@ test-print-int32-decimal: c3/return test-print-int32-decimal-multiple-digits: - # check that a multi-digit number converts correctly + # - check that a multi-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -197,7 +197,7 @@ test-print-int32-decimal-multiple-digits: c3/return test-print-int32-decimal-negative: - # check that a negative single-digit number converts correctly + # - check that a negative single-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args @@ -253,7 +253,7 @@ test-print-int32-decimal-negative: c3/return test-print-int32-decimal-negative-multiple-digits: - # check that a multi-digit number converts correctly + # - check that a multi-digit number converts correctly # setup # . clear-stream(_test-stream) # . . push args