auto-import changelog data from zsh-4.0.7-1.1.src.rpm

Fri Jun 20 2003 Jens Petersen <petersen@redhat.com> - 4.0.7-1
- update to 4.0.7 bugfix release
Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
- rebuilt
Thu May 01 2003 Jens Petersen <petersen@redhat.com> - 4.0.6-7
- don't set stty erase in a dumb terminal with tput kbs in /etc/zshrc
    (#89856) [reported by Ben Liblit]
- make default prompt more informative, like bash
This commit is contained in:
cvsdist 2004-09-09 15:21:01 +00:00
parent 2c8e3f3d9a
commit 373df78710
4 changed files with 20 additions and 6 deletions

View File

@ -1 +1 @@
zsh-4.0.6.tar.bz2
zsh-4.0.7.tar.bz2

View File

@ -1 +1 @@
ec841e1c92a44879c503ffb32a3e5326 zsh-4.0.6.tar.bz2
93a3a47b2419182408d5b31acd26528a zsh-4.0.7.tar.bz2

View File

@ -2,8 +2,8 @@
Summary: A shell similar to ksh, but with improvements.
Name: zsh
Version: 4.0.6
Release: 5
Version: 4.0.7
Release: 1.1
License: BSD
URL: http://www.zsh.org/
Group: System Environment/Shells
@ -116,6 +116,17 @@ fi
%config(noreplace) %{_sysconfdir}/*
%changelog
* Fri Jun 20 2003 Jens Petersen <petersen@redhat.com> - 4.0.7-1
- update to 4.0.7 bugfix release
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
- rebuilt
* Thu May 1 2003 Jens Petersen <petersen@redhat.com> - 4.0.6-7
- don't set stty erase in a dumb terminal with tput kbs in /etc/zshrc (#89856)
[reported by Ben Liblit]
- make default prompt more informative, like bash
* Mon Feb 10 2003 Jens Petersen <petersen@redhat.com> - 4.0.6-5
- skip completion tests on s390 and s390x since they hang

View File

@ -8,7 +8,7 @@
setenv() { export $1=$2 } # csh compatibility
# Set prompts
PROMPT='%m%# ' # default prompt
PROMPT='[%n@%m]%~%# ' # default prompt
#RPROMPT=' %~' # prompt for right side of screen
# bindkey -v # vi key bindings
@ -16,4 +16,7 @@ PROMPT='%m%# ' # default prompt
bindkey ' ' magic-space # also do history expansion on space
# setup backspace correctly
stty erase `tput kbs`
if [ -x /usr/bin/tput ]; then
# check we're not in a dumb terminal
[ -n "`tput kbs 2>/dev/null`" ] && stty erase `tput kbs`
fi