summaryrefslogtreecommitdiff
path: root/lisp/scroll-all.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-07-16 12:23:00 +0000
committerPavel Janík <Pavel@Janik.cz>2001-07-16 12:23:00 +0000
commite8af40eed41d6c61ea6a0649512c4b09afcb1bfa (patch)
tree588654cb6c38a93c432bfae53ccbf36569e3cf23 /lisp/scroll-all.el
parent4cba8c0bdcce038e6966aab82d08859d796e69d0 (diff)
downloademacs-e8af40eed41d6c61ea6a0649512c4b09afcb1bfa.tar.gz
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/scroll-all.el')
-rw-r--r--lisp/scroll-all.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/scroll-all.el b/lisp/scroll-all.el
index 47c5efff8d3..23e0848450e 100644
--- a/lisp/scroll-all.el
+++ b/lisp/scroll-all.el
@@ -1,4 +1,4 @@
-;;; scroll-all.el -- scroll all buffers together minor mode
+;;; scroll-all.el --- scroll all buffers together minor mode
;; Copyright (C) 1997 Free Software Foundation, Inc.
@@ -22,7 +22,7 @@
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
-;; Commentary
+;;; Commentary:
;; This mode allows multiple buffers to be 'locked' so that scrolling
;; up or down lines in any buffer causes all the buffers to mirror
;; the scrolling. It hooks into the post-command-hook to check for
@@ -37,6 +37,8 @@
;; Rick Macdonald <rickm@vsl.com>
;; Anders Lindgren <andersl@csd.uu.se>
+;;; Code:
+
(defvar running-xemacs (string-match "XEmacs\\|Lucid" emacs-version))
;;;###autoload
@@ -132,4 +134,4 @@ use either M-x customize or the function `scroll-all-mode'."
(provide 'scroll-all)
-;; scroll-all.el ends here
+;;; scroll-all.el ends here