]> git.eshelyaron.com Git - emacs.git/commitdiff
(text-mode-hook): Add flyspell-mode to
authorDave Love <fx@gnu.org>
Sun, 12 Mar 2000 15:22:14 +0000 (15:22 +0000)
committerDave Love <fx@gnu.org>
Sun, 12 Mar 2000 15:22:14 +0000 (15:22 +0000)
:options.

lisp/textmodes/text-mode.el

index 6277d344203e62253a0485f95fab6ef178dd9273..41728618cbd27d495e6c79a0be9d8dabfa2847d1 100644 (file)
@@ -31,7 +31,7 @@
 (defcustom text-mode-hook nil
   "Normal hook run when entering Text mode and many related modes."
   :type 'hook
-  :options '(turn-on-auto-fill)
+  :options '(turn-on-auto-fill flyspell-mode)
   :group 'data)
 
 (defvar text-mode-variant nil
@@ -192,7 +192,7 @@ The argument NLINES says how many lines to center."
        (delete-horizontal-space)
        (setq line-length (current-column))
        (if (> (- fill-column lm line-length) 0)
-           (indent-line-to 
+           (indent-line-to
             (+ lm (/ (- fill-column lm line-length) 2))))))
     (cond ((null nlines)
           (setq nlines 0))