all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Case sensitive search in emacs info reader
@ 2005-02-16 18:29 Harry Putnam
  2005-02-16 19:26 ` Matthew Huggett
  2005-02-16 21:19 ` Peter Dyballa
  0 siblings, 2 replies; 4+ messages in thread
From: Harry Putnam @ 2005-02-16 18:29 UTC (permalink / raw)


I want my searches in Emacs info reader to always be case sensitive.

I have this in emacs:
    (setq case-fold-search nil)
And I've tried:
    (setg-default case-fold-search nil)

Neither of these produce case sensitive searchs in info.

Evaluating (setq case-fold-search nil) while in the info reader does
make them case sensitive so how can I make that permanent?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Case sensitive search in emacs info reader
  2005-02-16 18:29 Case sensitive search in emacs info reader Harry Putnam
@ 2005-02-16 19:26 ` Matthew Huggett
  2005-02-20 18:28   ` Harry Putnam
  2005-02-16 21:19 ` Peter Dyballa
  1 sibling, 1 reply; 4+ messages in thread
From: Matthew Huggett @ 2005-02-16 19:26 UTC (permalink / raw)


>
>   I want my searches in Emacs info reader to always be case sensitive.
>
>   I have this in emacs:
>       (setq case-fold-search nil)
>   And I've tried:
>       (setg-default case-fold-search nil)
>
>   Neither of these produce case sensitive searchs in info.
>
>   Evaluating (setq case-fold-search nil) while in the info reader does
>   make them case sensitive so how can I make that permanent?


How about something like the following (in your .emacs) :

,----
| (defun case-fold-nil ()
|   (setq case-fold-search nil))
| 
| (add-hook 'Info-mode-hook 'case-fold-nil)
`----

Matt

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Case sensitive search in emacs info reader
  2005-02-16 18:29 Case sensitive search in emacs info reader Harry Putnam
  2005-02-16 19:26 ` Matthew Huggett
@ 2005-02-16 21:19 ` Peter Dyballa
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Dyballa @ 2005-02-16 21:19 UTC (permalink / raw)
  Cc: help-gnu-emacs


Am 16.02.2005 um 19:29 schrieb Harry Putnam:

> I want my searches in Emacs info reader to always be case sensitive.
>
> I have this in emacs:
>     (setq case-fold-search nil)
> And I've tried:
>     (setg-default case-fold-search nil)

This does not work in info-mode, only outside.

--
Greetings

   Pete

"They're putting dimes in the hole in my head to see the change in me."

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Case sensitive search in emacs info reader
  2005-02-16 19:26 ` Matthew Huggett
@ 2005-02-20 18:28   ` Harry Putnam
  0 siblings, 0 replies; 4+ messages in thread
From: Harry Putnam @ 2005-02-20 18:28 UTC (permalink / raw)


Matthew Huggett <mhuggett@zam.att.ne.jp> writes:

> How about something like the following (in your .emacs) :
>
> ,----
> | (defun case-fold-nil ()
> |   (setq case-fold-search nil))
> | 
> | (add-hook 'Info-mode-hook 'case-fold-nil)
> `----

Thanks.. yes that is what I needed.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2005-02-20 18:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-02-16 18:29 Case sensitive search in emacs info reader Harry Putnam
2005-02-16 19:26 ` Matthew Huggett
2005-02-20 18:28   ` Harry Putnam
2005-02-16 21:19 ` Peter Dyballa

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.