help-gnu-emacs
[Top][All Lists]
Advanced

[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: Teemu Likonen
Subject: Re: how to set case-fold-search (back to) NON-nil, EVERYWHERE?
Date: Mon, 29 Jun 2009 23:36:04 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1.50 (gnu/linux)

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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]