about summary refs log tree commit diff stats
path: root/400.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-20 13:42:13 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-20 13:42:13 -0700
commit022595a20a66d09a1e1a9e0c0a7d9eb07b4e863f (patch)
treee537c1abc68b75add44a68a3afcb5a1ebcf74ba0 /400.mu
parenta1ae40403df306a6bfd026493303ff2aac84d48b (diff)
downloadmu-022595a20a66d09a1e1a9e0c0a7d9eb07b4e863f.tar.gz
6821 - highlight words clobbered by the next word
Another suggestion from the Future of Software forum.
Diffstat (limited to '400.mu')
-rw-r--r--400.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/400.mu b/400.mu
index 3e98822b..b51d111f 100644
--- a/400.mu
+++ b/400.mu
@@ -109,8 +109,8 @@ sig skip-until-close-paren line: (addr stream byte)
 #sig skip-until-close-paren-in-slice curr: (addr byte), end: (addr byte) -> curr/eax: (addr byte)
 sig write-stream-data f: (addr buffered-file), s: (addr stream byte)
 sig write-int32-decimal out: (addr stream byte), n: int
-sig is-decimal-digit? c: byte -> result/eax: boolean
-sig to-decimal-digit in: byte -> out/eax: int
+sig is-decimal-digit? c: grapheme -> result/eax: boolean
+sig to-decimal-digit in: grapheme -> out/eax: int
 sig next-word line: (addr stream byte), out: (addr slice)
 sig has-metadata? word: (addr slice), s: (addr string) -> result/eax: boolean
 sig is-valid-name? in: (addr slice) -> result/eax: boolean