aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/frame.el
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-04-24 13:59:25 +0000
committerGerd Moellmann <[email protected]>2000-04-24 13:59:25 +0000
commit79b14b94a121250d1636e4db65fd7dfa6132dbd0 (patch)
tree34e68205d5622a4cd2c70a9da0dfa0e80ac88a26 /lisp/frame.el
parentd475bcb85400959316e8981afa5c3aed48ecd4bc (diff)
(scrolling): New group.
(automatic-hscrolling): New user-option.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r--lisp/frame.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index cdfb9551ac..f741730ff9 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -996,6 +996,22 @@ FRAME nil or omitted means delete all frames except the selected frame."
+;;; Scrolling
+
+(defgroup scrolling nil
+ "Scrolling windows."
+ :version "21.1"
+ :group 'frames)
+
+(defcustom automatic-hscrolling t
+ "*Allow or disallow autmatic scrolling windows horizontally.
+If non-nil, windows are autmatically scrolled horizontally to make
+point visible."
+ :version "21.1"
+ :type 'boolean
+ :group 'scrolling)
+
+
;;; Blinking cursor
(defgroup cursor nil