I need the following to avoid a zsh coredump. Can anyone else
reproduce this?
1998-05-13 SL Baur <steve(a)altair.xemacs.org>
* configure.in (ZSH_VERSION): zsh-3.1.2 (and zsh-3.0.4) drops
core on the `unset CDPATH' if running as sh.
Index: configure.in
===================================================================
RCS file: /usr/local/xemacs/xemacs-20.0/configure.in,v
retrieving revision 1.100
diff -u -r1.100 configure.in
--- configure.in 1998/05/14 04:45:49 1.100
+++ configure.in 1998/05/14 05:00:01
@@ -244,7 +244,9 @@
setopt GLOB_SUBST NO_HUP INTERACTIVE_COMMENTS KSH_ARRAYS NO_MULTIOS NO_NOMATCH
setopt RM_STAR_SILENT POSIX_BUILTINS SH_FILE_EXPANSION SH_GLOB SH_OPTION_LETTERS
setopt SH_WORD_SPLIT BSD_ECHO IGNORE_BRACES
- unset CDPATH
+ dnl zsh-3.1-beta drops core on the following
+ dnl unset CDPATH
+ CDPATH="."
elif test -n "$BASH_VERSION"; then
dnl Use Posix mode with bash
set -o posix