aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ksh/kshrc.d/prompt.ksh6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksh/kshrc.d/prompt.ksh b/ksh/kshrc.d/prompt.ksh
index 09c7de6e..1dcbd864 100644
--- a/ksh/kshrc.d/prompt.ksh
+++ b/ksh/kshrc.d/prompt.ksh
@@ -81,11 +81,11 @@ function prompt {
# Play ball with ksh's way of escaping non-printing characters
typeset es nl
- es=$(printf '\00')
- nl=$(printf '\n')
+ es=$(printf '\01')
+ cr=$(printf '\r')
# String it all together
- PS1="${es}${nl}${es}${format}${es}${PS1}${es}${reset}${es}"' '
+ PS1="${es}${cr}${es}${format}${es}${PS1}${es}${reset}${es}"' '
PS2='> '
PS3='? '
PS4='+<$?> $LINENO:'