From xemacs-m  Thu Apr 24 02:57:58 1997
Received: from uni-kl.de (news.uni-kl.de [131.246.136.51])
	by xemacs.org (8.8.5/8.8.5) with SMTP id CAA21620
	for <xemacs-beta@xemacs.org>; Thu, 24 Apr 1997 02:57:55 -0500 (CDT)
Received: from muetterle.itwm.uni-kl.de by news.uni-kl.de id aa20531;
          24 Apr 97 9:57 MET DST
Received: from mandelgarten.itwm.uni-kl.de by itwm.uni-kl.de with smtp
	id m0wKJP0-00068bC; Thu, 24 Apr 1997 09:57:14 +0200 (MET DST)
Received: from cochlea.e-technik.uni-kl.de by itwm.uni-kl.de with esmtp
	id m0wKJOz-000FgFC; Thu, 24 Apr 97 09:57:13 +0200 (MET DST)
Date: Thu, 24 Apr 1997 09:57:13 +0200 (MESZ)
Message-Id: <199704240757.JAA18715@rhrk.uni-kl.de>
From: Marcus Thiessel <thiessel@rhrk.uni-kl.de>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: amir@ndsoft.com
Cc: xemacs-beta@xemacs.org
Subject: Re: viewing gzipped tar file fails (19.15 & 20.1)
In-Reply-To: <9704240745.AA10706@ndsoft.com>
References: <9704240607.AA09175@ndsoft.com>
	<kigvi5ckjpu.fsf@jagor.srce.hr>
	<9704240721.AA10268@ndsoft.com>
	<199704240738.JAA18050@rhrk.uni-kl.de>
	<9704240745.AA10706@ndsoft.com>
X-Mailer: VM 6.22 under 19.15 XEmacs Lucid

 > Are you saying that XEmacs invokes a sub-shell to run gunzip? And I
 > have some stty commands in my .cshrc?
 > 
 > Anyway, how did you fix this problem?
 > 

Hopefully, you sould have two part in your .cshrc. One for setting up
common shell feature (non-interactive) and a part for all interactive
parts. The follow stuff should give you some hints!

--Marcus


# @(#)Cshrc || MT  -*- sh -*-
#############################################################
# non-interactice stuff goes here!!
set term=vt100

#         skip remaining setup if not an interactive shell
if ($?USER == 0 || $?prompt == 0) exit
#
#          settings for interactive shells
#
stty erase "^H" kill "^U" intr "^C" eof "^D" susp '^Z'
set noclobber
set history=40
set ignoreeof
set prompt = "`hostname`- \!:`dirs`> "
set filec
#
alias setprompt 'set prompt="`hostname`- \! :`dirs`> "'
alias cd        'cd \!:*;setprompt'
alias pwd       'echo $cwd'
alias m         'more'
alias h         'history \!* | head -39 | more'
alias la        'ls -a'
alias ll        'ls -la'
alias ls        'ls -F'

