summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/frame.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/lisp/frame.el b/lisp/frame.el
index cdfb9551ace..f741730ff96 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