]> git.eshelyaron.com Git - emacs.git/commitdiff
(text-mode-hook-identify): Function deleted.
authorRichard M. Stallman <rms@gnu.org>
Wed, 6 Feb 2002 14:57:57 +0000 (14:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 6 Feb 2002 14:57:57 +0000 (14:57 +0000)
(text-mode): Set text-mode-variant here.

lisp/textmodes/text-mode.el

index e35d02a9a30bb64cd05288519d61c9d7c8cf066e..90018b067da4e69dd571795389e136726edf0b6e 100644 (file)
@@ -65,6 +65,8 @@ You can thus get the full benefit of adaptive filling
  (see the variable `adaptive-fill-mode').
 \\{text-mode-map}
 Turning on Text mode runs the normal hook `text-mode-hook'."
+  (make-local-variable 'text-mode-variant)
+  (setq text-mode-variant t)
   (set (make-local-variable 'indent-line-function) 'indent-relative))
 
 (define-derived-mode paragraph-indent-text-mode text-mode "Parindent"
@@ -93,13 +95,6 @@ Turning on Paragraph-Indent minor mode runs the normal hook
       
 (defalias 'indented-text-mode 'text-mode)
 
-(defun text-mode-hook-identify ()
-  "Mark that this mode has run `text-mode-hook'.
-This is how `toggle-text-mode-auto-fill' knows which buffers to operate on."
-  (set (make-local-variable 'text-mode-variant) t))
-
-(add-hook 'text-mode-hook 'text-mode-hook-identify)
-
 (defun toggle-text-mode-auto-fill ()
   "Toggle whether to use Auto Fill in Text mode and related modes.
 This command affects all buffers that use modes related to Text mode,