mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Fix indentation
This commit is contained in:
@@ -144,10 +144,10 @@ is_combining :: proc(r: rune) -> bool {
|
|||||||
c := i32(r)
|
c := i32(r)
|
||||||
|
|
||||||
return c >= 0x0300 && (c <= 0x036f ||
|
return c >= 0x0300 && (c <= 0x036f ||
|
||||||
(c >= 0x1ab0 && c <= 0x1aff) ||
|
(c >= 0x1ab0 && c <= 0x1aff) ||
|
||||||
(c >= 0x1dc0 && c <= 0x1dff) ||
|
(c >= 0x1dc0 && c <= 0x1dff) ||
|
||||||
(c >= 0x20d0 && c <= 0x20ff) ||
|
(c >= 0x20d0 && c <= 0x20ff) ||
|
||||||
(c >= 0xfe20 && c <= 0xfe2f))
|
(c >= 0xfe20 && c <= 0xfe2f))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user