Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe@sources.redhat.com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin@sources.redhat.com>
List-Help: <mailto:cygwin-help@sources.redhat.com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner@sources.redhat.com
Delivered-To: mailing list cygwin@sources.redhat.com
Date: Thu, 28 Sep 2000 08:57:00 -0400
From: Jason Tishler <Jason.Tishler@dothill.com>
To: chet@po.CWRU.Edu
Cc: cygwin@sources.redhat.com
Subject: Re: Has CR/LF and cat problem with textutils-2.0 been solved?
Message-ID: <20000928085700.B1022@DP>
References: <1000927193632.AA99354.SM@nike.ins.cwru.edu>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.2.4i
In-Reply-To: <1000927193632.AA99354.SM@nike.ins.cwru.edu>; from chet@nike.ins.cwru.edu on Wed, Sep 27, 2000 at 03:36:32PM -0400
Organization: Dot Hill Systems Corp.

Chet,

On Wed, Sep 27, 2000 at 03:36:32PM -0400, Chet Ramey wrote:
> Well, geez, how hard can it be?  Here's the change I just made to
> subst.c:read_comsub().  Take a look -- I'm really dragging today and
> probably made an error.
> 
> *** subst.c~	Tue Sep 26 15:19:40 2000
> --- subst.c	Wed Sep 27 15:38:09 2000
> ***************
> *** 3361,3364 ****
> --- 3361,3372 ----
>   
>         istring[istring_index++] = c;
> + 
> + #if defined (__CYGWIN__)
> +       if (c == '\n' && istring_index > 1 && istring[istring_index - 2] == '\r')
> + 	{
> + 	  istring_index--;
> + 	  istring_index[-1] = '\n';
> + 	}
> + #endif
>       }

Shouldn't the following line:

    istring_index[-1] = '\n';

be changed to:

    istring[istring_index - 1] = '\n';

instead?

Jason

-- 
Jason Tishler
Director, Software Engineering       Phone: +1 (732) 264-8770 x235
Dot Hill Systems Corporation         Fax:   +1 (732) 264-8798
82 Bethany Road, Suite 7             Email: Jason.Tishler@dothill.com
Hazlet, NJ 07730 USA                 WWW:   http://www.dothill.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

