diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2007-10-09 08:39:33 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2007-10-09 08:39:33 +0000 |
commit | 80025c1c5f9a536a1a825aa16b5982688d8fd7b0 (patch) | |
tree | 1c6ae46a3979c31b48bb0784361690ece60fca01 /lisp/follow.el | |
parent | b27045e4ce1fc63f49ef7c8db602d75c560a89d1 (diff) | |
download | emacs-80025c1c5f9a536a1a825aa16b5982688d8fd7b0.tar.gz |
(follow-mode-hook, follow-mode): Doc fixes.
(follow-mode-off-hook): Mark as obsolete.
Diffstat (limited to 'lisp/follow.el')
-rw-r--r-- | lisp/follow.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/follow.el b/lisp/follow.el index eddb1037a43..ad952d386fa 100644 --- a/lisp/follow.el +++ b/lisp/follow.el @@ -277,7 +277,7 @@ :group 'convenience) (defcustom follow-mode-hook nil - "Hooks to run when Follow mode is turned on." + "Normal hook run by `follow-mode'." :type 'hook :group 'follow) @@ -285,7 +285,7 @@ "Hooks to run when Follow mode is turned off." :type 'hook :group 'follow) - +(make-obsolete-variable 'follow-mode-off-hook 'follow-mode-hook "22.2") ;;{{{ Keymap/Menu @@ -596,8 +596,7 @@ If the variable `follow-intercept-processes' is non-nil, Follow mode will listen to the output of processes and redisplay accordingly. \(This is the default.) -When Follow mode is switched on, the hook `follow-mode-hook' -is called. When turned off, `follow-mode-off-hook' is called. +This command runs the normal hook `follow-mode-hook'. Keys specific to Follow mode: \\{follow-mode-map}" |