about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2001-03-25 00:24:25 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2001-03-25 00:24:25 +0000
commitaff2d638e6fbbd3da7e8eb196a3f96adbc0d92e5 (patch)
tree6f10e252f72e657ee6dc4c01124da8f484228d1c
parent0fe2fc2742a7b5fd0917c0d7fc4e6a99115c4a39 (diff)
downloadzsh-aff2d638e6fbbd3da7e8eb196a3f96adbc0d92e5.tar.gz
zsh-aff2d638e6fbbd3da7e8eb196a3f96adbc0d92e5.tar.xz
zsh-aff2d638e6fbbd3da7e8eb196a3f96adbc0d92e5.zip
stop LC_COLLATE reordering things in tests
-rw-r--r--ChangeLog3
-rwxr-xr-xTest/ztst.zsh1
2 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d1fe5e35f..62fa46e35 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2001-03-25  Peter Stephenson  <pws@pwstephenson.fsnet.co.uk>
 
+	* 13745: Test/ztst.zsh: set LC_COLLATE to C if already set to
+	something.
+
 	* 13743: Completion/User/_mailboxes: handle @folder in MH.
 
 2001-03-24  Bart Schaefer  <schaefer@zsh.org>
diff --git a/Test/ztst.zsh b/Test/ztst.zsh
index 978f3d623..fb81be0ad 100755
--- a/Test/ztst.zsh
+++ b/Test/ztst.zsh
@@ -25,6 +25,7 @@ emulate -R zsh
 # Ensure the locale does not screw up sorting.  Don't supply a locale
 # unless there's one set, to minimise problems.
 [[ -n $LC_ALL ]] && LC_ALL=C
+[[ -n $LC_COLLATE ]] && LC_COLLATE=C
 [[ -n $LANG ]] && LANG=C
 
 # Set the module load path to correspond to this build of zsh.