# HG changeset patch # User Oleksandr Gavenko # Date 1318879859 -10800 # Node ID b5a57a7abe40caa73a3d9f77e94cd45f6fc6dd4b # Parent 1ce3922d21e66ee6b6a889cb7bb9b3308643c061 Fix PS1 which cause of http://code.google.com/p/mintty/issues/detail?id=296 (unescaped non-printable chars). diff -r 1ce3922d21e6 -r b5a57a7abe40 .bashrc --- a/.bashrc Fri Oct 07 18:28:32 2011 +0300 +++ b/.bashrc Mon Oct 17 22:30:59 2011 +0300 @@ -14,7 +14,7 @@ PS1='bash# ' # Set magenta bold font. case "$TERM" in - xterm*) PS1='\[\033[31m\033[1m\]\h\033[35m\]+bash# \[\033[0m\]' + xterm*) PS1='\[\033[31m\033[1m\]\h\[\033[35m\]+bash# \[\033[0m\]' ;; esac