diff options
| author | gingerBill <bill@gingerbill.org> | 2017-11-26 23:54:23 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2017-11-26 23:54:23 +0000 |
| commit | 3e1ff0ec67806f73c09f02dfbb3ce7f252ea6738 (patch) | |
| tree | b38d5ac3a86e81e2640b270e14e2301ad339c3f9 /core/fmt.odin | |
| parent | 65945dac099aff7d8d86468f4100a363b9b4ad1b (diff) | |
Update fmt for runes; Add `strings.contains_rune`
Diffstat (limited to 'core/fmt.odin')
| -rw-r--r-- | core/fmt.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fmt.odin b/core/fmt.odin index b68dacf12..39ddfa851 100644 --- a/core/fmt.odin +++ b/core/fmt.odin @@ -503,7 +503,7 @@ fmt_rune :: proc(fi: ^Fmt_Info, r: rune, verb: rune) { case 'c', 'r', 'v': write_rune(fi.buf, r); case: - fmt_bad_verb(fi, verb); + fmt_int(fi, u128(r), false, 32, verb); } } |