From unknown Fri Jun 13 10:20:33 2025 X-Loop: help-debbugs@gnu.org Subject: bug#25513: Issue grepping lines ending with CRLF with --color=auto. Resent-From: Eric Hoffman Original-Sender: "Debbugs-submit" Resent-CC: bug-grep@gnu.org Resent-Date: Mon, 23 Jan 2017 16:37:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 25513 X-GNU-PR-Package: grep X-GNU-PR-Keywords: To: 25513@debbugs.gnu.org X-Debbugs-Original-To: "'bug-grep@gnu.org'" Received: via spool by submit@debbugs.gnu.org id=B.148518941110264 (code B ref -1); Mon, 23 Jan 2017 16:37:01 +0000 Received: (at submit) by debbugs.gnu.org; 23 Jan 2017 16:36:51 +0000 Received: from localhost ([127.0.0.1]:39310 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cVhbu-0002fT-TY for submit@debbugs.gnu.org; Mon, 23 Jan 2017 11:36:51 -0500 Received: from eggs.gnu.org ([208.118.235.92]:52787) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cVhQF-0002N4-5P for submit@debbugs.gnu.org; Mon, 23 Jan 2017 11:24:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVhQ8-0005uR-RR for submit@debbugs.gnu.org; Mon, 23 Jan 2017 11:24:41 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: *** X-Spam-Status: No, score=3.3 required=5.0 tests=BAYES_50,HTML_MESSAGE, RECEIVED_FROM_WINDOWS_HOST autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:47794) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cVhQ8-0005uL-OC for submit@debbugs.gnu.org; Mon, 23 Jan 2017 11:24:40 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43755) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVhQ7-0004Lf-GG for bug-grep@gnu.org; Mon, 23 Jan 2017 11:24:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVhQ3-0005tR-IP for bug-grep@gnu.org; Mon, 23 Jan 2017 11:24:39 -0500 Received: from mail.positrontelecom.com ([206.55.85.211]:23681 helo=POSIDC01.Positron.ca) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cVhQ3-0005sm-B3 for bug-grep@gnu.org; Mon, 23 Jan 2017 11:24:35 -0500 Received: from POSIDC01.Positron.ca ([172.18.0.8]) by POSIDC01.Positron.ca ([172.18.0.8]) with mapi id 14.01.0218.012; Mon, 23 Jan 2017 11:03:50 -0500 From: Eric Hoffman Thread-Topic: Issue grepping lines ending with CRLF with --color=auto. Thread-Index: AdJ1kRmWL6qtR8dZRES7EsOI1VdXIQ== Date: Mon, 23 Jan 2017 16:03:49 +0000 Message-ID: <22BE51D163631742AB921A0765B6D68F01C3FC4905@POSIDC01.Positron.ca> Accept-Language: en-CA, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [172.18.3.120] Content-Type: multipart/alternative; boundary="_000_22BE51D163631742AB921A0765B6D68F01C3FC4905POSIDC01Posit_" MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.4 (----) X-Mailman-Approved-At: Mon, 23 Jan 2017 11:36:48 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.4 (----) --_000_22BE51D163631742AB921A0765B6D68F01C3FC4905POSIDC01Posit_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello! grep is behaving differently when outputting with --color=3Dauto when lines= are ending with CRLF (like Windows text files). The issue is that if I have a file with CRLF line terminator, for example, = a file named test.txt, containing: Line 1 Line 2 Line 3 Or: $od -c test.txt 0000000 L i n e 1 \r \n L i n e 2 \r \n 0000020 L i n e 3 \r \n 0000030 Then, If I type: $ grep --color=3Dauto "." test.txt That is, I tell grep to display every lines containing at least one charact= er (that is, every lines), I get on terminal output just 3 empty lines. H= owever, if I type: $ grep "." test.txt Line 1 Line 2 Line 3 Then I do have every lines on the output. I tried on both SSH and direct console with same result. On my SSH terminal, I captured output, and what I see is Here are a few variations: - I tried with a longer file, like 100 lines, and I do get some of the line= s printed, but truncated to the terminal screen width. - The issue here was with printing every lines, but I do get the same resul= t as long as I match any end of lines, like grep "2.*" test.txt, or even "g= rep 2[[:cntrl:]]$" test.txt - The problem is there only when This was with grep 2.27 (also tried 2.16, which I had before upgrading to 2= .27). Regards, Eric --_000_22BE51D163631742AB921A0765B6D68F01C3FC4905POSIDC01Posit_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Hello!

 

grep is behaving differently when outputting with --= color=3Dauto when lines are ending with CRLF (like Windows text files).

 

The issue is that if I have a file with CRLF line te= rminator, for example, a file named test.txt, containing:

Line 1<CR><LF>

Line 2<CR><LF>

Line 3<CR><LF>

 

Or:

 

$od -c test.txt

0000000   L   i   n&nb= sp;  e       1  \r  \n &n= bsp; L   i   n   e    &nb= sp;  2  \r  \n

0000020   L &nbs= p; i   n   e       3 = ; \r  \n

0000030

 

 

Then, If I type:

$ grep --color=3Dauto "." test.txt

 

That is, I tell grep to display every lines containi= ng at least one character (that is, every lines),  I get on terminal o= utput just 3 empty lines.  However, if I type:

$ grep "." test.txt

Line 1

Line 2

Line 3

 

Then I do have every lines on the output.=

 

I tried on both SSH and direct console with same res= ult.

 

On my SSH terminal, I captured output, and what I se= e is

<CR><LF>

<CR><LF>

<CR><LF>

 

Here are a few variations:

- I tried with a longer file, like 100 lines, and I = do get some of the lines printed, but truncated to the terminal screen widt= h.

- The issue here was with printing every lines, but = I do get the same result as long as I match any end of lines, like grep &qu= ot;2.*" test.txt, or even "grep 2[[:cntrl:]]$" test.txt=

- The problem is there only when

 

This was with grep 2.27 (also tried 2.16, which I ha= d before upgrading to 2.27).

 

Regards,

Eric

 

--_000_22BE51D163631742AB921A0765B6D68F01C3FC4905POSIDC01Posit_-- From unknown Fri Jun 13 10:20:33 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Eric Hoffman Subject: bug#25513: closed (Re: bug#25513: Issue grepping lines ending with CRLF with --color=auto.) Message-ID: References: <22BE51D163631742AB921A0765B6D68F01C3FC4905@POSIDC01.Positron.ca> X-Gnu-PR-Message: they-closed 25513 X-Gnu-PR-Package: grep Reply-To: 25513@debbugs.gnu.org Date: Mon, 23 Jan 2017 17:14:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1485191642-13642-1" This is a multi-part message in MIME format... ------------=_1485191642-13642-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #25513: Issue grepping lines ending with CRLF with --color=3Dauto. which was filed against the grep package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 25513@debbugs.gnu.org. --=20 25513: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D25513 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1485191642-13642-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 25513-done) by debbugs.gnu.org; 23 Jan 2017 17:13:12 +0000 Received: from localhost ([127.0.0.1]:39324 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cViB6-0003Wp-HO for submit@debbugs.gnu.org; Mon, 23 Jan 2017 12:13:12 -0500 Received: from mail-it0-f68.google.com ([209.85.214.68]:35880) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cViB5-0003Wc-7I for 25513-done@debbugs.gnu.org; Mon, 23 Jan 2017 12:13:11 -0500 Received: by mail-it0-f68.google.com with SMTP id o138so10908492ito.3 for <25513-done@debbugs.gnu.org>; Mon, 23 Jan 2017 09:13:11 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=c4TiGvgtYj0Jeb5rCaLUbCtWNJS7itbpi2agtwVi+/8=; b=Do4uRjEe3bpvPGeDU7edqzsHT6Hp0QU8gBsD7RBT7uujIVjR3us8o1F4J55JBTBAe8 ttYStksEFeKpyPH94WfWJHkaMk6Z0zSesfqgJXR+i3PyhLMFvyOXIt3ddEYbYCKcu774 4D7yF6g1OZeLEgM0L0AF4qVYlnwMSiUx7w1Q2bqfW9nn5j/UsaqWrOF7s0DyiMfBjGA9 3neZQjhurExFfd4bJhZL5slKBxw2bmK5z/lbs9PxoRCxPEBce+SQdsLh4Zh6cll0Nfsi q/pw/NXg6ikEXVbY2wRYcudPtI3cN9fksGlSSLQds9g/oz0xSusG650ZMLfnB4/dp2n8 Fbdw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=c4TiGvgtYj0Jeb5rCaLUbCtWNJS7itbpi2agtwVi+/8=; b=A5OGEpiMS73W9hwVIsa7HBmAXEx89BXFFAq6Pp/JhFmBimq9vYsGjLX1LIvEVpL7H3 45Lve9Tx6hNkoPVPa4T8YPTIok1ITEQQmTV09r4ALZMRIKinOqS5ME70a0dbZ0x/jk2O EzNFff0jhPjr8haN9w5mo9eRGcb6DCES4DLVCMMfKsbYhmLsi4nB3n7nryAlh+ndl3DJ WNkvQrRJdIhbc+Fq0rhgFYc1tD686GJ/Yw0VPPlhx8X3lrR3Q5yOIiBcHKWcrTrMq/WZ ZvGUtATm6QjlGGg9cKw6m1GorPTLW7qOda5Bg/rGx1WlBbRpc5EF7o+bGi8rOKNlMkRV 3LRQ== X-Gm-Message-State: AIkVDXJZAxcggv3COF7jR+Xq2GDshUmedrvkuuIw0X4h/sDtP3WadM3NJoEShufx9VOt894rfBwuCteMJ9EEMw== X-Received: by 10.36.39.136 with SMTP id g130mr16095541ita.55.1485191585569; Mon, 23 Jan 2017 09:13:05 -0800 (PST) MIME-Version: 1.0 Received: by 10.107.191.130 with HTTP; Mon, 23 Jan 2017 09:12:44 -0800 (PST) In-Reply-To: <22BE51D163631742AB921A0765B6D68F01C3FC4905@POSIDC01.Positron.ca> References: <22BE51D163631742AB921A0765B6D68F01C3FC4905@POSIDC01.Positron.ca> From: Jim Meyering Date: Mon, 23 Jan 2017 09:12:44 -0800 X-Google-Sender-Auth: AD-8GlrTX9oe_PTUUt9J2Oexrmk Message-ID: Subject: Re: bug#25513: Issue grepping lines ending with CRLF with --color=auto. To: Eric Hoffman Content-Type: text/plain; charset=UTF-8 X-Spam-Score: 0.5 (/) X-Debbugs-Envelope-To: 25513-done Cc: 25513-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.5 (/) tags 25513 notabug thanks On Mon, Jan 23, 2017 at 8:03 AM, Eric Hoffman wrote: > grep is behaving differently when outputting with --color=auto when lines are ending with CRLF (like Windows text files). > > The issue is that if I have a file with CRLF line terminator, for example, a file named test.txt, containing: > Line 1 > Line 2 > Line 3 > > Or: > > $od -c test.txt > 0000000 L i n e 1 \r \n L i n e 2 \r \n > 0000020 L i n e 3 \r \n > 0000030 > > Then, If I type: > $ grep --color=auto "." test.txt ... Thank you for the report. I too see that behavior, but it is not a problem with grep. It is due to the way carriage returns are rendered. Here, even without --color, you can see that the three matched line render as empty: $ printf 'line%s\r\n' 1 2 3 | grep . However, if you pipe that result through cat -A, you see that grep is working as required: $ printf 'line%s\r\n' 1 2 3 | grep .|cat -A line1^M$ line2^M$ line3^M$ So I'm closing this bug. ------------=_1485191642-13642-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 23 Jan 2017 16:36:51 +0000 Received: from localhost ([127.0.0.1]:39310 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cVhbu-0002fT-TY for submit@debbugs.gnu.org; Mon, 23 Jan 2017 11:36:51 -0500 Received: from eggs.gnu.org ([208.118.235.92]:52787) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cVhQF-0002N4-5P for submit@debbugs.gnu.org; Mon, 23 Jan 2017 11:24:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVhQ8-0005uR-RR for submit@debbugs.gnu.org; Mon, 23 Jan 2017 11:24:41 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: *** X-Spam-Status: No, score=3.3 required=5.0 tests=BAYES_50,HTML_MESSAGE, RECEIVED_FROM_WINDOWS_HOST autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:47794) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cVhQ8-0005uL-OC for submit@debbugs.gnu.org; Mon, 23 Jan 2017 11:24:40 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43755) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cVhQ7-0004Lf-GG for bug-grep@gnu.org; Mon, 23 Jan 2017 11:24:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cVhQ3-0005tR-IP for bug-grep@gnu.org; Mon, 23 Jan 2017 11:24:39 -0500 Received: from mail.positrontelecom.com ([206.55.85.211]:23681 helo=POSIDC01.Positron.ca) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cVhQ3-0005sm-B3 for bug-grep@gnu.org; Mon, 23 Jan 2017 11:24:35 -0500 Received: from POSIDC01.Positron.ca ([172.18.0.8]) by POSIDC01.Positron.ca ([172.18.0.8]) with mapi id 14.01.0218.012; Mon, 23 Jan 2017 11:03:50 -0500 From: Eric Hoffman To: "'bug-grep@gnu.org'" Subject: Issue grepping lines ending with CRLF with --color=auto. Thread-Topic: Issue grepping lines ending with CRLF with --color=auto. Thread-Index: AdJ1kRmWL6qtR8dZRES7EsOI1VdXIQ== Date: Mon, 23 Jan 2017 16:03:49 +0000 Message-ID: <22BE51D163631742AB921A0765B6D68F01C3FC4905@POSIDC01.Positron.ca> Accept-Language: en-CA, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [172.18.3.120] Content-Type: multipart/alternative; boundary="_000_22BE51D163631742AB921A0765B6D68F01C3FC4905POSIDC01Posit_" MIME-Version: 1.0 X-detected-operating-system: by eggs.gnu.org: Windows 7 or 8 [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.4 (----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 23 Jan 2017 11:36:48 -0500 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.4 (----) --_000_22BE51D163631742AB921A0765B6D68F01C3FC4905POSIDC01Posit_ Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Hello! grep is behaving differently when outputting with --color=3Dauto when lines= are ending with CRLF (like Windows text files). The issue is that if I have a file with CRLF line terminator, for example, = a file named test.txt, containing: Line 1 Line 2 Line 3 Or: $od -c test.txt 0000000 L i n e 1 \r \n L i n e 2 \r \n 0000020 L i n e 3 \r \n 0000030 Then, If I type: $ grep --color=3Dauto "." test.txt That is, I tell grep to display every lines containing at least one charact= er (that is, every lines), I get on terminal output just 3 empty lines. H= owever, if I type: $ grep "." test.txt Line 1 Line 2 Line 3 Then I do have every lines on the output. I tried on both SSH and direct console with same result. On my SSH terminal, I captured output, and what I see is Here are a few variations: - I tried with a longer file, like 100 lines, and I do get some of the line= s printed, but truncated to the terminal screen width. - The issue here was with printing every lines, but I do get the same resul= t as long as I match any end of lines, like grep "2.*" test.txt, or even "g= rep 2[[:cntrl:]]$" test.txt - The problem is there only when This was with grep 2.27 (also tried 2.16, which I had before upgrading to 2= .27). Regards, Eric --_000_22BE51D163631742AB921A0765B6D68F01C3FC4905POSIDC01Posit_ Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable

Hello!

 

grep is behaving differently when outputting with --= color=3Dauto when lines are ending with CRLF (like Windows text files).

 

The issue is that if I have a file with CRLF line te= rminator, for example, a file named test.txt, containing:

Line 1<CR><LF>

Line 2<CR><LF>

Line 3<CR><LF>

 

Or:

 

$od -c test.txt

0000000   L   i   n&nb= sp;  e       1  \r  \n &n= bsp; L   i   n   e    &nb= sp;  2  \r  \n

0000020   L &nbs= p; i   n   e       3 = ; \r  \n

0000030

 

 

Then, If I type:

$ grep --color=3Dauto "." test.txt

 

That is, I tell grep to display every lines containi= ng at least one character (that is, every lines),  I get on terminal o= utput just 3 empty lines.  However, if I type:

$ grep "." test.txt

Line 1

Line 2

Line 3

 

Then I do have every lines on the output.=

 

I tried on both SSH and direct console with same res= ult.

 

On my SSH terminal, I captured output, and what I se= e is

<CR><LF>

<CR><LF>

<CR><LF>

 

Here are a few variations:

- I tried with a longer file, like 100 lines, and I = do get some of the lines printed, but truncated to the terminal screen widt= h.

- The issue here was with printing every lines, but = I do get the same result as long as I match any end of lines, like grep &qu= ot;2.*" test.txt, or even "grep 2[[:cntrl:]]$" test.txt=

- The problem is there only when

 

This was with grep 2.27 (also tried 2.16, which I ha= d before upgrading to 2.27).

 

Regards,

Eric

 

--_000_22BE51D163631742AB921A0765B6D68F01C3FC4905POSIDC01Posit_-- ------------=_1485191642-13642-1-- From unknown Fri Jun 13 10:20:33 2025 X-Loop: help-debbugs@gnu.org Subject: bug#25513: closed (Re: bug#25513: Issue grepping lines ending with CRLF with --color=auto.) Resent-From: Eric Hoffman Original-Sender: "Debbugs-submit" Resent-CC: bug-grep@gnu.org Resent-Date: Tue, 24 Jan 2017 12:30:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 25513 X-GNU-PR-Package: grep X-GNU-PR-Keywords: To: "'25513@debbugs.gnu.org'" <25513@debbugs.gnu.org> Received: via spool by 25513-submit@debbugs.gnu.org id=B25513.148526097513995 (code B ref 25513); Tue, 24 Jan 2017 12:30:02 +0000 Received: (at 25513) by debbugs.gnu.org; 24 Jan 2017 12:29:35 +0000 Received: from localhost ([127.0.0.1]:39833 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cW0EB-0003de-9N for submit@debbugs.gnu.org; Tue, 24 Jan 2017 07:29:35 -0500 Received: from mail3.aktino.com ([206.55.85.211]:61667 helo=POSIDC01.Positron.ca) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cW0EA-0003dR-6W for 25513@debbugs.gnu.org; Tue, 24 Jan 2017 07:29:34 -0500 Received: from POSIDC01.Positron.ca ([172.18.0.8]) by POSIDC01.Positron.ca ([172.18.0.8]) with mapi id 14.01.0218.012; Tue, 24 Jan 2017 07:29:27 -0500 From: Eric Hoffman Thread-Topic: bug#25513: closed (Re: bug#25513: Issue grepping lines ending with CRLF with --color=auto.) Thread-Index: AQHSdZwaJN8WnpgxfEeGMSN9gDQ0N6FHjXWQ Date: Tue, 24 Jan 2017 12:29:26 +0000 Message-ID: <22BE51D163631742AB921A0765B6D68F01C3FC5975@POSIDC01.Positron.ca> References: <22BE51D163631742AB921A0765B6D68F01C3FC4905@POSIDC01.Positron.ca> In-Reply-To: Accept-Language: en-CA, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [172.18.3.120] Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 MIME-Version: 1.0 X-Spam-Score: 0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.7 (/) VGhhdCB3YXMgc29tZXRoaW5nIEkgc3VzcGVjdGVkLiAgT24gbXkgc3lzdGVtLCBJIHRhdWdodCBp dCB3YXMgZG9pbmcgdGhlIHNhbWUgd2l0aCAnZ3JlcCcgYWxvbmUgdG9vLCBidXQgaXQgdHVybmVk IG91dCBteSBkZWZhdWx0IC5iYXNocmMgc2V0dXAgYW4gYWxpYXMgZm9yICdiYXNoJyB0byBhc3Mg Jy0tY29sb3I9YXV0bycuICBJIGRvIGdldCB0aGUgc2FtZSBpc3N1ZSBpZiBJIHR5cGUuLi4NCg0K JCBwcmludGYgJ2xpbmUlc1xyXG4nIDEgMiAzIHwgZ3JlcCAuDQoNCi4uLmJlY2F1c2Ugb2YgdGhl IGFsaWFzLCBidXkgdHlwaW5nLi4uDQoNCiRwcmludGYgJ2xpbmUlc1xyXG4nIDEgMiAzIHwgL2Jp bi9ncmVwIC4NCg0KLi4uZG9lcyBub3QgY2F1c2UgaXNzdWUuDQoNCkluZGVlZCwgaXQgZG9lcyBu b3QgY2F1c2UgYW4gaXNzdWUgaW4gYSBzY3JpcHQsIGFzIHRoZSB0ZXh0IGlzIHNlbnQgdGhyb3Vn aCB0aGUgcGlwZSB3aXRob3V0IGNvbG9yIHJlbmRlcmluZy4NCg0KU28sIEkgd2FzIHdvbmRlcmlu ZyBpZiBpdCB3YXMgZ3JlcCBvciBub3QuDQoNClJlZ2FyZHMsDQpFcmljDQoNCg==