all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Tassilo Horn <heimdall@uni-koblenz.de>
Subject: Re: flyspell-mode
Date: Thu, 06 Jul 2006 11:15:40 +0200	[thread overview]
Message-ID: <871wszksar.fsf@baldur.nicundtas.de> (raw)
In-Reply-To: mailman.3813.1152166707.9609.help-gnu-emacs@gnu.org

Paul Cizmas <cizmas@mac.com> writes:

Hi Paul,

> I added in .emacs the line
>
> (setq flyspell-mode t)

Setting a mode's variable has no effect at all. These are only used
internally to check if a mode is turned on. Instead use the mode's
function. When you invoke `M-x flyspell-mode' you do exactly that.

Have a look at the function's documentation:

,----[ C-h f flyspell-mode RET ]
| flyspell-mode is an interactive autoloaded Lisp function in `flyspell'.
| It is bound to <menu-bar> <tools> <spell> <flyspell-mode>.
| (flyspell-mode &optional ARG)
| 
| Minor mode performing on-the-fly spelling checking.
| This spawns a single Ispell process and checks each word.
| The default flyspell behavior is to highlight incorrect words.
| With no argument, this command toggles Flyspell mode.
| With a prefix argument ARG, turn Flyspell minor mode on iff ARG is
| positive.
`----

So put this in your ~/.emacs:

  (flyspell-mode 1)

The argument 1 prevents toggling off the mode when you load your .emacs
another time.

Bye,
Tassilo
-- 
"Emacs is not a development tool but a way of life."
     - David Kastrup in alt.religion.emacs -

       reply	other threads:[~2006-07-06  9:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <mailman.3813.1152166707.9609.help-gnu-emacs@gnu.org>
2006-07-06  9:15 ` Tassilo Horn [this message]
2007-06-28  3:12 flyspell-mode Paul Cizmas
  -- strict thread matches above, loose matches on Subject: below --
2006-07-05 16:41 flyspell-mode Paul Cizmas

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=871wszksar.fsf@baldur.nicundtas.de \
    --to=heimdall@uni-koblenz.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.