From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Drew Adams Newsgroups: gmane.emacs.devel Subject: RE: grep-command: Ignore case if case-fold-search is non-nil Date: Sun, 18 Sep 2016 08:05:11 -0700 (PDT) Message-ID: References: NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: blaine.gmane.org 1474211194 13436 195.159.176.226 (18 Sep 2016 15:06:34 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 18 Sep 2016 15:06:34 +0000 (UTC) To: Tino Calancha , Emacs developers Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Sep 18 17:06:30 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bldfd-000273-Uw for ged-emacs-devel@m.gmane.org; Sun, 18 Sep 2016 17:06:18 +0200 Original-Received: from localhost ([::1]:50426 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bldfc-0003pm-6K for ged-emacs-devel@m.gmane.org; Sun, 18 Sep 2016 11:06:16 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:47457) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bldei-0003oV-KE for emacs-devel@gnu.org; Sun, 18 Sep 2016 11:05:22 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bldee-0004CZ-E2 for emacs-devel@gnu.org; Sun, 18 Sep 2016 11:05:19 -0400 Original-Received: from aserp1040.oracle.com ([141.146.126.69]:20593) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bldee-0004BJ-5t for emacs-devel@gnu.org; Sun, 18 Sep 2016 11:05:16 -0400 Original-Received: from userv0021.oracle.com (userv0021.oracle.com [156.151.31.71]) by aserp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id u8IF5DKK008668 (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 18 Sep 2016 15:05:14 GMT Original-Received: from aserv0122.oracle.com (aserv0122.oracle.com [141.146.126.236]) by userv0021.oracle.com (8.13.8/8.13.8) with ESMTP id u8IF5D03010340 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Sun, 18 Sep 2016 15:05:13 GMT Original-Received: from abhmp0007.oracle.com (abhmp0007.oracle.com [141.146.116.13]) by aserv0122.oracle.com (8.14.4/8.14.4) with ESMTP id u8IF5Cxt006408; Sun, 18 Sep 2016 15:05:12 GMT In-Reply-To: X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.9 (901082) [OL 12.0.6753.5000 (x86)] X-Source-IP: userv0021.oracle.com [156.151.31.71] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 141.146.126.69 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:207553 Archived-At: > Do you think `grep-compute-defaults' should add '-i', i.e., ignore case, > in the default `grep-command' when `case-fold-search' is non-nil? No. Just because you might want to search the current buffer case-(in)sensitively, that in no way implies that you want to search a set of files somewhere the same way. `grep' is an external command. It is not about acting (e.g., searching) buffers within Emacs.