From 538cfb08721e3bc9c6d3f8050ef514b23378f7ff Mon Sep 17 00:00:00 2001 From: cvsdist Date: Sep 09 2004 15:19:24 +0000 Subject: auto-import changelog data from zsh-4.0.2-2.src.rpm Mon Jul 30 2001 Trond Eivind Glomsr�d - Fix typo in comment in zshrc (#50214) - Don't set environment variables in /etc/zshrc (#50308) --- diff --git a/zprofile.rhs b/zprofile.rhs index 0bd6d3a..288cec1 100644 --- a/zprofile.rhs +++ b/zprofile.rhs @@ -4,4 +4,3 @@ # all bourne shells should source /etc/profile source /etc/profile - diff --git a/zsh.spec b/zsh.spec index 9ce202a..c9e09be 100644 --- a/zsh.spec +++ b/zsh.spec @@ -1,7 +1,7 @@ Summary: A shell similar to ksh, but with improvements. Name: zsh Version: 4.0.2 -Release: 1 +Release: 2 License: BSD Group: System Environment/Shells Source0: ftp://ftp.zsh.org/pub/zsh-%{version}.tar.bz2 @@ -21,9 +21,7 @@ shell and as a shell script command processor. Zsh resembles the ksh shell (the Korn shell), but includes many enhancements. Zsh supports command line editing, built-in spelling correction, programmable command completion, shell functions (with autoloading), a history -mechanism and more. - -Install the zsh package if you'd like to try out a different shell. +mechanism, and more. %prep @@ -97,6 +95,10 @@ fi %config(noreplace) /etc/* %changelog +* Mon Jul 30 2001 Trond Eivind Glomsr�d +- Fix typo in comment in zshrc (#50214) +- Don't set environment variables in /etc/zshrc (#50308) + * Tue Jun 26 2001 Trond Eivind Glomsr�d - 4.0.2 - Run the testsuite during build diff --git a/zshrc.rhs b/zshrc.rhs index b6ce50b..eb673b3 100644 --- a/zshrc.rhs +++ b/zshrc.rhs @@ -4,11 +4,6 @@ # options, key bindings, etc. # -# Set up aliases -alias mv='nocorrect mv' # no spelling correction on mv -alias cp='nocorrect cp' # no spelling correction on cp -alias mkdir='nocorrect mkdir' # no spelling correction on mkdir - # Shell functions setenv() { export $1=$2 } # csh compatibility @@ -16,12 +11,6 @@ setenv() { export $1=$2 } # csh compatibility PROMPT='%m%# ' # default prompt #RPROMPT=' %~' # prompt for right side of screen -# Some environment variables -export HOSTNAME=`/bin/hostname` -export MAIL=/var/spool/mail/$USER - -path=($path $HOME/bin) - # bindkey -v # vi key bindings bindkey -e # emacs key bindings -bindkey ' ' magic-space # also do history expansino on space +bindkey ' ' magic-space # also do history expansion on space