summaryrefslogtreecommitdiff
path: root/py/repl.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2013-12-30 18:23:50 +0000
committerDamien George <damien.p.george@gmail.com>2013-12-30 18:23:50 +0000
commit8cc96a35e532ef999e5a3739deeb44f51a80744b (patch)
tree7169f3ad0a43d36bdc67793bd46491d081805db2 /py/repl.c
parent212c296c0b24dddd19099f9188176a14ade42d86 (diff)
Put unicode functions in unicode.c, and tidy their names.
Diffstat (limited to 'py/repl.c')
-rw-r--r--py/repl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/py/repl.c b/py/repl.c
index ecf6e2d20..4241ef0e4 100644
--- a/py/repl.c
+++ b/py/repl.c
@@ -8,7 +8,7 @@ bool str_startswith_word(const char *str, const char *head) {
return false;
}
}
- return head[i] == '\0' && (str[i] == '\0' || !g_unichar_isalpha(str[i]));
+ return head[i] == '\0' && (str[i] == '\0' || !unichar_isalpha(str[i]));
}
bool mp_repl_is_compound_stmt(const char *line) {