about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-10-17 23:10:00 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-17 23:10:00 -0700
commit1fc218bf9d274d739d37284a58fec61c283ee33f (patch)
tree5d9e1132d59a6b45b489fc0a11fac848d3e4c921
parent26bfae3d5e11ba62e0cd8aefa7dcc9fc0f6157f4 (diff)
downloadmu-1fc218bf9d274d739d37284a58fec61c283ee33f.tar.gz
7052
-rwxr-xr-xapps/mubin421899 -> 421929 bytes
-rw-r--r--apps/mu.subx8
2 files changed, 4 insertions, 4 deletions
diff --git a/apps/mu b/apps/mu
index ea95659e..6c1e8057 100755
--- a/apps/mu
+++ b/apps/mu
Binary files differdiff --git a/apps/mu.subx b/apps/mu.subx
index 075e3b7a..1103de23 100644
--- a/apps/mu.subx
+++ b/apps/mu.subx
@@ -1279,7 +1279,7 @@ test-initializer-in-hex:
 #?     # }}}
     # check output
     (check-stream-equal _test-output-stream  ""  "F - test-initializer-in-hex: output should be empty")
-    (check-next-stream-line-equal _test-error-stream  "literal integers are always hex in Mu; either start '10' with a '0x' to be unambiguous, or convert it to decimal."  "F - test-initializer-in-hex: error message")
+    (check-next-stream-line-equal _test-error-stream  "literal integers are always hex in Mu; start '10' with a '0x' to be unambiguous, converting it to hexadecimal as necessary."  "F - test-initializer-in-hex: error message")
     # check that stop(1) was called
     (check-ints-equal *(edx+4) 2 "F - test-initializer-in-hex: exit status")
     # don't restore from ebp
@@ -4193,7 +4193,7 @@ test-array-size-in-hex:
 #?     # }}}
     # check output
     (check-stream-equal _test-output-stream  ""  "F - test-array-size-in-hex: output should be empty")
-    (check-next-stream-line-equal _test-error-stream  "literal integers are always hex in Mu; either start '10' with a '0x' to be unambiguous, or convert it to decimal."  "F - test-array-size-in-hex: error message")
+    (check-next-stream-line-equal _test-error-stream  "literal integers are always hex in Mu; start '10' with a '0x' to be unambiguous, converting it to hexadecimal as necessary."  "F - test-array-size-in-hex: error message")
     # check that stop(1) was called
     (check-ints-equal *(edx+4) 2 "F - test-array-size-in-hex: exit status")
     # don't restore from ebp
@@ -11678,9 +11678,9 @@ $check-mu-hex-int:length->-1:
     75/jump-if-!= $check-mu-hex-int:end/disp8
 $check-mu-hex-int:abort:
     # otherwise abort
-    (write-buffered *(ebp+0xc) "literal integers are always hex in Mu; either start '")
+    (write-buffered *(ebp+0xc) "literal integers are always hex in Mu; start '")
     (write-slice-buffered *(ebp+0xc) *(ebp+8))
-    (write-buffered *(ebp+0xc) "' with a '0x' to be unambiguous, or convert it to decimal.\n")
+    (write-buffered *(ebp+0xc) "' with a '0x' to be unambiguous, converting it to hexadecimal as necessary.\n")
     (flush *(ebp+0xc))
     (stop *(ebp+0x10) 1)
 $check-mu-hex-int:end: