commit | 8cc96a35e532ef999e5a3739deeb44f51a80744b | [log] [tgz] |
---|---|---|
author | Damien George <damien.p.george@gmail.com> | Mon Dec 30 18:23:50 2013 +0000 |
committer | Damien George <damien.p.george@gmail.com> | Mon Dec 30 18:23:50 2013 +0000 |
tree | 7169f3ad0a43d36bdc67793bd46491d081805db2 | |
parent | 212c296c0b24dddd19099f9188176a14ade42d86 [diff] [blame] |
Put unicode functions in unicode.c, and tidy their names.
diff --git a/py/repl.c b/py/repl.c index ecf6e2d..4241ef0 100644 --- a/py/repl.c +++ b/py/repl.c
@@ -8,7 +8,7 @@ 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) {