summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2010-06-03 09:16:51 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-06-03 09:16:51 -0700
commitf1a4618e99b26a588e15e8c467b21b3a1df74f64 (patch)
tree4c34f9ff955d32f46b5f3e740f941d75654b0a58
parent7bea36bdeb9829a9d7ca4bce18b85c2125668817 (diff)
parent324a98f1901fb84ec4c88196e01c3e14c2b5a4a4 (diff)
downloadsystem_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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/input.c b/sh/input.c
index 9377bd0..bfb80f4 100644
--- a/sh/input.c
+++ b/sh/input.c
@@ -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';
}