diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-04-24 13:59:25 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-04-24 13:59:25 +0000 |
commit | 79b14b94a121250d1636e4db65fd7dfa6132dbd0 (patch) | |
tree | 34e68205d5622a4cd2c70a9da0dfa0e80ac88a26 /lisp/frame.el | |
parent | d475bcb85400959316e8981afa5c3aed48ecd4bc (diff) | |
download | emacs-79b14b94a121250d1636e4db65fd7dfa6132dbd0.tar.gz |
(scrolling): New group.
(automatic-hscrolling): New user-option.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r-- | lisp/frame.el | 16 |
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 |