From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from euclid.skiles.gatech.edu (list@euclid.skiles.gatech.edu [130.207.146.50]) by coral.primenet.com.au (8.7.5/8.7.3) with ESMTP id AAA00518 for ; Tue, 30 Jul 1996 00:13:10 +1000 (EST) Received: (from list@localhost) by euclid.skiles.gatech.edu (8.7.3/8.7.3) id KAA18120; Mon, 29 Jul 1996 10:04:27 -0400 (EDT) Resent-Date: Mon, 29 Jul 1996 10:04:27 -0400 (EDT) From: Zoltan Hidvegi Message-Id: <199607291403.QAA03358@bolyai.cs.elte.hu> Subject: Re: New zed and refresh bug To: pws@ifh.de (Peter Stephenson) Date: Mon, 29 Jul 1996 16:03:37 +0200 (MET DST) Cc: zsh-workers@math.gatech.edu In-Reply-To: <199607291334.PAA14407@hydra.ifh.de> from Peter Stephenson at "Jul 29, 96 03:34:18 pm" Organization: Dept. of Comp. Sci., Eotvos University, Budapest, Hungary Phone: (36 1)2669833 ext: 2667, home phone: (36 1) 2752368 X-Mailer: ELM [version 2.4ME+ PL16 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Resent-Message-ID: <"87OTK1.0.2R4.gJC_n"@euclid> Resent-From: zsh-workers@math.gatech.edu X-Mailing-List: archive/latest/1819 X-Loop: zsh-workers@math.gatech.edu Precedence: list Resent-Sender: zsh-workers-request@math.gatech.edu > hzoli@cs.elte.hu wrote: > > The zed distributed with pre4 does not exit properli on ^C interrupt. ~~~ oops. > > ... > > integer tmout=TMOUT > > ... > > TMOUT=tmout > > I think some $ are wanted here. The first is OK, and the second used to work because TMOUT was a special integer parameter and $ is not necessary when assigning an integer parameter. But you are right that now TMOUT=$tmout or ((TMOUT=tmout)) should be used. I'll fix it. Zoltan