This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Has CR/LF and cat problem with textutils-2.0 been solved?


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]