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: Bash patches


By the way, I think you should probably just use the same mechanism that
Cygwin uses to strip CRs.  Setting an input stream to O_TEXT is all that
is required.  You do that one of three ways:

open ("foo", O_RDONLY | O_TEXT);
fopen ("foo", "rt");
setmode (fd, O_TEXT);

cgf

On Thu, Oct 05, 2000 at 04:02:50PM -0600, Erik Nolte wrote:
>I realize there is currently no bash maintainer, but how do I propose
>patches and to whom do I send them in the interim?
>
>Below are patches to fix:
>
>(1) The backtick (command substitution) CR-LF problem I reported on 26Sep00
>under the title "Has CR/LF and cat problem with textutils-2.0 been solved?"
>read_comsub() was modified in src/bash/subst.c to convert CR-LF into NL
>immediately after the text is read from the command.
>
>(2) The cd/CDPATH erroneous echoing of the path for DOS absolute pathnames.
>This was reported on 26Sep00 under the title "Strange cd/CDPATH behavior".
>absolute_pathname() was modified in src/bash/general.c to treat
>[A-Za-z]:[/\]* as absolute pathnames.
>
>I started with the source at
>ftp://sources.redhat.com/pub/cygwin/latest/bash/bash-2.04-1-src.tar.gz and
>ran the diff as "diff -u -p original-file new-file".

--
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]