From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: dkcombs@panix.com (David Combs) Newsgroups: gmane.emacs.help Subject: Re: how to set case-fold-search (back to) NON-nil, EVERYWHERE? Date: Tue, 30 Jun 2009 17:06:58 +0000 (UTC) Organization: Public Access Networks Corp. Message-ID: References: <87ljnau6a3.fsf@iki.fi> NNTP-Posting-Host: lo.gmane.org X-Trace: ger.gmane.org 1246420284 14581 80.91.229.12 (1 Jul 2009 03:51:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 1 Jul 2009 03:51:24 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jul 01 05:51:17 2009 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MLqqo-000128-O2 for geh-help-gnu-emacs@m.gmane.org; Wed, 01 Jul 2009 05:51:14 +0200 Original-Received: from localhost ([127.0.0.1]:42647 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MLqqj-0004XI-8a for geh-help-gnu-emacs@m.gmane.org; Tue, 30 Jun 2009 23:51:09 -0400 Original-Path: news.stanford.edu!newsfeed.stanford.edu!bloom-beacon.mit.edu!panix!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 21 Original-NNTP-Posting-Host: panix3.panix.com Original-X-Trace: reader1.panix.com 1246381618 1441 166.84.1.3 (30 Jun 2009 17:06:58 GMT) Original-X-Complaints-To: abuse@panix.com Original-NNTP-Posting-Date: Tue, 30 Jun 2009 17:06:58 +0000 (UTC) X-Newsreader: trn 4.0-test76 (Apr 2, 2001) Original-Xref: news.stanford.edu gnu.emacs.help:170470 X-Mailman-Approved-At: Tue, 30 Jun 2009 23:49:56 -0400 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:65680 Archived-At: In article <87ljnau6a3.fsf@iki.fi>, Teemu Likonen wrote: >On 2009-06-29 16:15 (-0400), David Combs wrote: > >> (No, (setq case-fold-search 1) doesn't seem to do it GLOBALLY.) > >Try: > > (setq-default case-fold-search t) > >It sets the global value but it won't have effect on buffer's which >already have buffer-local binding for the variable. You can execute > > (kill-local-variable 'case-fold-search) > >in such buffers and then they start using the global value again. THANK YOU! David