diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2010-06-03 09:16:51 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-06-03 09:16:51 -0700 |
commit | f1a4618e99b26a588e15e8c467b21b3a1df74f64 (patch) | |
tree | 4c34f9ff955d32f46b5f3e740f941d75654b0a58 | |
parent | 7bea36bdeb9829a9d7ca4bce18b85c2125668817 (diff) | |
parent | 324a98f1901fb84ec4c88196e01c3e14c2b5a4a4 (diff) | |
download | system_core-f1a4618e99b26a588e15e8c467b21b3a1df74f64.zip system_core-f1a4618e99b26a588e15e8c467b21b3a1df74f64.tar.gz system_core-f1a4618e99b26a588e15e8c467b21b3a1df74f64.tar.bz2 |
am 324a98f1: merge from open-source master
Merge commit '324a98f1901fb84ec4c88196e01c3e14c2b5a4a4' into kraken
* commit '324a98f1901fb84ec4c88196e01c3e14c2b5a4a4':
sh: Fix problem with stray '\r' character that was introduced in previous change
-rw-r--r-- | sh/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -221,7 +221,7 @@ retry: /* Add non-blank lines to history. */ linenoiseHistoryAdd(rl_start); } - out2str("\r\n"); + out2str("\n"); /* Client expects a newline at end of input, doesn't expect null */ rl_start[el_len++] = '\n'; } |