aboutsummaryrefslogtreecommitdiff
path: root/src/unicode.c
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-03-03 11:09:37 +0000
committerGinger Bill <bill@gingerbill.org>2017-03-03 11:09:37 +0000
commitfb2d611dcd955833bf47b5b97a762ee8fb2dd1a6 (patch)
tree75b3fc840fd317fe7b041c1b6123f941a882df7d /src/unicode.c
parent9e8c9be1ea825c2b5c66e62724519ae9ab8ab8f6 (diff)
Update llvm binaries to latest version; Update utf8proc;
Diffstat (limited to 'src/unicode.c')
-rw-r--r--src/unicode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/unicode.c b/src/unicode.c
index d65f2f2ae..c1277c4da 100644
--- a/src/unicode.c
+++ b/src/unicode.c
@@ -6,6 +6,7 @@
#pragma warning(pop)
+
bool rune_is_letter(Rune r) {
if ((r < 0x80 && gb_char_is_alpha(cast(char)r)) ||
r == '_') {