commit | d674bd59890b8f63e6f67415a2107900562a645b | [log] [tgz] |
---|---|---|
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Sat Jan 04 19:38:19 2014 +0200 |
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | Sat Jan 04 19:38:19 2014 +0200 |
tree | 048a8162822d2d1ab62a4d51e5cf91cbccd56081 | |
parent | 9464cde3c94b1c69a9cf433d8b0ac8a7c78f8bf1 [diff] [blame] |
Convert USE_READLINE config option to be consistent with others.
diff --git a/unix/main.c b/unix/main.c index e73f69e..ecb2fa3 100644 --- a/unix/main.c +++ b/unix/main.c
@@ -15,7 +15,7 @@ #include "runtime.h" #include "repl.h" -#ifdef USE_READLINE +#if MICROPY_USE_READLINE #include <readline/readline.h> #include <readline/history.h> #endif @@ -35,7 +35,7 @@ } static char *prompt(char *p) { -#ifdef USE_READLINE +#if MICROPY_USE_READLINE char *line = readline(p); if (line) { add_history(line);