From owner-freebsd-bugs Wed Aug 9 19:24:19 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.FreeBSD.org (8.6.11/8.6.6) id TAA11304 for bugs-outgoing; Wed, 9 Aug 1995 19:24:19 -0700 Received: from alpha.xerox.com (alpha.Xerox.COM [13.1.64.93]) by freefall.FreeBSD.org (8.6.11/8.6.6) with SMTP id TAA11298 ; Wed, 9 Aug 1995 19:24:16 -0700 Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <17825(4)>; Wed, 9 Aug 1995 19:23:25 PDT Received: from localhost by crevenia.parc.xerox.com with SMTP id <177475>; Wed, 9 Aug 1995 19:23:18 -0700 X-Mailer: exmh version 1.6.1 5/23/95 To: =?KOI8-R?Q?=E1=CE=C4=D2=C5=CA_=FE=C5=D2=CE=CF=D7?= (aka Andrey A. Chernov, Black Mage) cc: FreeBSD-gnats-submit@freebsd.org, fenner@parc.xerox.com, bugs@freebsd.org Subject: Re: bin/669: csh doesn't allow !-2* In-reply-to: Your message of "Wed, 09 Aug 95 18:47:34 PDT." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 9 Aug 1995 19:23:04 PDT From: Bill Fenner Message-Id: <95Aug9.192318pdt.177475@crevenia.parc.xerox.com> Sender: bugs-owner@freebsd.org Precedence: bulk In message you write: >Can you test it with tcsh too? >I don't found proper way in 30secs how to test it :-) Sorry, I don't have tcsh. Here is the output from a properly working csh, under SunOS. (Same results from csh on Solaris 2.x and IRIX): crevenia% echo 1 2 3 1 2 3 crevenia% ; crevenia% echo !-2* echo 1 2 3 1 2 3 crevenia% echo !-3$ echo 3 3 crevenia% echo !-4^ echo 1 1 crevenia% Here is the output from FreeBSD's csh: % echo 1 2 3 1 2 3 % ; % echo !-2* 2*: Event not found. % echo !-3$ echo 3 3 % echo !-4^ 4^: Event not found. % Note that the "$" case worked. Here is FreeBSD's csh after applying the patch in my PR. % echo 1 2 3 1 2 3 % ; % echo !-2* echo 1 2 3 1 2 3 % echo !-3$ echo 3 3 % echo !-4^ echo 1 1 % Bill