diff options
author | Bart Schaefer <barts@users.sourceforge.net> | 2001-06-08 03:02:46 +0000 |
---|---|---|
committer | Bart Schaefer <barts@users.sourceforge.net> | 2001-06-08 03:02:46 +0000 |
commit | 956fd2a76c160c86cefd1245000f9e0303ae5ba6 (patch) | |
tree | 03e29b56e56a72a7291af5cb3869127f0913c976 | |
parent | 7ff269a456f22f5ad65578203db29babc77110c2 (diff) | |
download | zsh-956fd2a76c160c86cefd1245000f9e0303ae5ba6.tar.gz zsh-956fd2a76c160c86cefd1245000f9e0303ae5ba6.tar.xz zsh-956fd2a76c160c86cefd1245000f9e0303ae5ba6.zip |
Fix "make check" in emacs shell mode.
-rw-r--r-- | Test/comptest | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Test/comptest b/Test/comptest index c2cd74074..dea6a850d 100644 --- a/Test/comptest +++ b/Test/comptest @@ -8,7 +8,7 @@ comptestinit () { zmodload -i zsh/zpty comptest_zsh=${ZSH:-zsh} - termcap_ce="$(echotc ce)" + termcap_ce="$(echotc ce 2>/dev/null)" while getopts z: opt; do case $opt in @@ -30,6 +30,7 @@ comptestinit () { "module_path=( $module_path )" \ "fpath=( $fpath )" \ 'LISTMAX=10000000 +TERM=vt100 stty columns 80 rows 24 setopt zle bindkey -e |