diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-04-10 23:01:58 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-04-10 23:01:58 +0300 |
commit | d35ac956d1710cb688c4ee4d56e19a3ec1c34bbc (patch) | |
tree | 050b1287989081af56b403ef0127102a0f02abec /unix/input.c | |
parent | 91bc32dc169560d0faf7cba177c3c9cd6b1f88b7 (diff) | |
download | micropython-d35ac956d1710cb688c4ee4d56e19a3ec1c34bbc.tar.gz micropython-d35ac956d1710cb688c4ee4d56e19a3ec1c34bbc.zip |
input.c: Fix line-endings after recent changes.
Diffstat (limited to 'unix/input.c')
-rw-r--r-- | unix/input.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/input.c b/unix/input.c index 8fd5cba080..0a02483f70 100644 --- a/unix/input.c +++ b/unix/input.c @@ -36,9 +36,9 @@ #include <readline/readline.h> #include <readline/history.h> #include <readline/tilde.h> -#else
-#undef MICROPY_USE_READLINE_HISTORY
-#define MICROPY_USE_READLINE_HISTORY (0)
+#else +#undef MICROPY_USE_READLINE_HISTORY +#define MICROPY_USE_READLINE_HISTORY (0) #endif char *prompt(char *p) { |