summaryrefslogtreecommitdiff
path: root/lisp/follow.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2005-03-24 22:17:43 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2005-03-24 22:17:43 +0000
commitffc30f4fa15b023a72bec92df6a54a74a34c094a (patch)
tree9ae48f246139da2d763a0f319e949742984b6076 /lisp/follow.el
parent781da985a74078e9c9178d1fe03557de957e6333 (diff)
downloademacs-ffc30f4fa15b023a72bec92df6a54a74a34c094a.tar.gz
emacs-ffc30f4fa15b023a72bec92df6a54a74a34c094a.tar.bz2
emacs-ffc30f4fa15b023a72bec92df6a54a74a34c094a.zip
find-file-hooks -> find-file-hook.
Diffstat (limited to 'lisp/follow.el')
-rw-r--r--lisp/follow.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/lisp/follow.el b/lisp/follow.el
index 06857fc49e9..a01b0e77eb2 100644
--- a/lisp/follow.el
+++ b/lisp/follow.el
@@ -1,6 +1,7 @@
;;; follow.el --- synchronize windows showing the same buffer
-;; Copyright (C) 1995, 1996, 1997, 1999, 2001 Free Software Foundation, Inc.
+;; Copyright (C) 1995, 1996, 1997, 1999, 2001, 2005
+;; Free Software Foundation, Inc.
;; Author: Anders Lindgren <andersl@andersl.com>
;; Maintainer: Anders Lindgren <andersl@andersl.com>
@@ -708,7 +709,7 @@ Keys specific to Follow mode:
;; This will start follow-mode whenever a new file is loaded, if
;; the variable `follow-auto' is non-nil.
-(add-hook 'find-file-hooks 'follow-find-file-hook t)
+(add-hook 'find-file-hook 'follow-find-file-hook t)
(defun follow-find-file-hook ()
"Find-file hook for Follow Mode. See the variable `follow-auto'."
@@ -2347,5 +2348,5 @@ This prevents `mouse-drag-region' from messing things up."
;; | save it". -- Douglas Adams, "Last Chance to See" |
;; \------------------------------------------------------------------------/
-;;; arch-tag: 7b16bb1a-808c-4991-a8cc-66d3822936d0
+;; arch-tag: 7b16bb1a-808c-4991-a8cc-66d3822936d0
;;; follow.el ends here