diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/frame.el | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 1cd6c0cf181..79e1243c7af 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -1557,21 +1557,6 @@ left untouched. FRAME nil or omitted means use the selected frame." 'delete-frame-functions "22.1") -;; Highlighting trailing whitespace. - -(make-variable-buffer-local 'show-trailing-whitespace) - - -;; Scrolling - -(defgroup scrolling nil - "Scrolling windows." - :version "21.1" - :group 'frames) - -(defvaralias 'automatic-hscrolling 'auto-hscroll-mode) - - ;; Blinking cursor (defgroup cursor nil @@ -1663,6 +1648,13 @@ terminals, cursor blinking is controlled by the terminal." (define-key ctl-x-5-map "0" 'delete-frame) (define-key ctl-x-5-map "o" 'other-frame) + +;; Misc. + +(defvaralias 'automatic-hscrolling 'auto-hscroll-mode) + +(make-variable-buffer-local 'show-trailing-whitespace) + (provide 'frame) ;;; frame.el ends here |