about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBart Schaefer <barts@users.sourceforge.net>2002-04-27 16:59:54 +0000
committerBart Schaefer <barts@users.sourceforge.net>2002-04-27 16:59:54 +0000
commit52e1483e81a7754e6904080124dc24bfd5649fd1 (patch)
treea9b50800617e82c486a266644b3a4ac8ae2a51d7
parent8bfa024da9d56e884ea1dbb5fa4b6ecca6b80317 (diff)
downloadzsh-52e1483e81a7754e6904080124dc24bfd5649fd1.tar.gz
zsh-52e1483e81a7754e6904080124dc24bfd5649fd1.tar.xz
zsh-52e1483e81a7754e6904080124dc24bfd5649fd1.zip
Remove references to "zsh 2.7", change "Generic" to "Example".
-rw-r--r--ChangeLog5
-rw-r--r--StartupFiles/zlogin5
-rw-r--r--StartupFiles/zshenv5
3 files changed, 13 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f3de0702..d18408a0d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-27  Bart Schaefer  <schaefer@zsh.org>
+
+	* unposted: StartupFiles/zshenv, StartupFiles/zlogin: remove
+	references to "zsh 2.7", change "Generic" to "Example".
+
 2002-04-25  Peter Stephenson  <pws@csr.com>
 
 	* 17046: Src/math.c: OCTAL_ZEROES with a `0' on its own was
diff --git a/StartupFiles/zlogin b/StartupFiles/zlogin
index f510fd825..a4015f349 100644
--- a/StartupFiles/zlogin
+++ b/StartupFiles/zlogin
@@ -1,5 +1,5 @@
 #
-# Generic .zlogin file for zsh 2.7
+# Example .zlogin file for zsh 4.0
 #
 # .zlogin is sourced in login shells.  It should
 # contain commands that should be executed only in
@@ -8,6 +8,9 @@
 # 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
 stty dec new cr0 -tabs
 ttyctl -f  # freeze the terminal modes... can't change without a ttyctl -u
diff --git a/StartupFiles/zshenv b/StartupFiles/zshenv
index 2214b8e59..5feedf902 100644
--- a/StartupFiles/zshenv
+++ b/StartupFiles/zshenv
@@ -1,5 +1,5 @@
 #
-# Generic .zshenv file for zsh 2.7
+# Example .zshenv file for zsh 4.0
 #
 # .zshenv is sourced on all invocations of the
 # shell, unless the -f option is set.  It should
@@ -9,6 +9,9 @@
 # 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
 
 path=($X11HOME/bin)