[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: how to set case-fold-search (back to) NON-nil, EVERYWHERE?
From: |
David Combs |
Subject: |
Re: how to set case-fold-search (back to) NON-nil, EVERYWHERE? |
Date: |
Tue, 30 Jun 2009 17:06:58 +0000 (UTC) |
In article <87ljnau6a3.fsf@iki.fi>, Teemu Likonen <tlikonen@iki.fi> 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