diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | Functions/Prompts/prompt_redhat_setup | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index b3f02da6b..7c860050a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2012-02-13 Frank Terbeck <ft@bewatermyfriend.org> + + * 30214: Functions/Prompts/prompt_redhat_setup: Fix quoting in + `redhat' prompt. + 2012-02-12 Peter Stephenson <p.w.stephenson@ntlworld.com> * 30181 (plus rename PF_ flags to PREFORK_: Src/exec.c, @@ -15967,5 +15972,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5582 $ +* $Revision: 1.5583 $ ***************************************************** diff --git a/Functions/Prompts/prompt_redhat_setup b/Functions/Prompts/prompt_redhat_setup index 5bde7f9ab..e2b38d49e 100644 --- a/Functions/Prompts/prompt_redhat_setup +++ b/Functions/Prompts/prompt_redhat_setup @@ -3,7 +3,7 @@ # Styled like the default prompt in Red Hat 5.1 # prompt_redhat_setup () { - PS1="[%n@%m %1~]\\$ " + PS1='[%n@%m %1~]$ ' PS2="> " prompt_opts=( cr percent ) |