1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-01 05:16:05 +01:00

Discourage use of sample startup files as /etc/z*.

This commit is contained in:
Bart Schaefer 2001-03-25 23:41:02 +00:00
parent 60227908e1
commit d3eca43623
4 changed files with 15 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2001-03-25 Bart Schaefer <schaefer@zsh.org>
* 13757: StartupFiles/zlogin, StartupFiles/zshenv,
StartupFiles/zshrc: Strongly discourage use of these files as
/etc/z* drop-ins.
2001-03-25 Peter Stephenson <pws@pwstephenson.fsnet.co.uk> 2001-03-25 Peter Stephenson <pws@pwstephenson.fsnet.co.uk>
* 13751: Completion/User/_cpio: added. * 13751: Completion/User/_cpio: added.

View file

@ -8,6 +8,9 @@
# msgs, from, etc). # msgs, from, etc).
# #
# THIS FILE IS NOT INTENDED TO BE USED AS /etc/zlogin, NOR WITHOUT EDITING
return 0 # Remove this line after editing this file as appropriate
clear clear
stty dec new cr0 -tabs stty dec new cr0 -tabs
ttyctl -f # freeze the terminal modes... can't change without a ttyctl -u ttyctl -f # freeze the terminal modes... can't change without a ttyctl -u

View file

@ -9,6 +9,9 @@
# output or assume the shell is attached to a tty. # output or assume the shell is attached to a tty.
# #
# THIS FILE IS NOT INTENDED TO BE USED AS /etc/zshenv, NOR WITHOUT EDITING
return 0 # Remove this line after editing this file as appropriate
export X11HOME=/usr/X11 export X11HOME=/usr/X11
path=($X11HOME/bin) path=($X11HOME/bin)

View file

@ -6,6 +6,9 @@
# options, key bindings, etc. # options, key bindings, etc.
# #
# THIS FILE IS NOT INTENDED TO BE USED AS /etc/zshrc, NOR WITHOUT EDITING
return 0 # Remove this line after editing this file as appropriate
# Search path for the cd command # Search path for the cd command
cdpath=(.. ~ ~/src ~/zsh) cdpath=(.. ~ ~/src ~/zsh)