diff options
author | Chong Yidong <cyd@gnu.org> | 2012-04-15 23:15:00 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-04-15 23:15:00 +0800 |
commit | 7a76850c2022cf9e8ccadc972d76463f1055a7fe (patch) | |
tree | 4ea464aa997f649259009bd08f7b77d0bad005a3 | |
parent | 60efac0fc56286eef52707dd214ca5cb1ea56979 (diff) | |
download | emacs-7a76850c2022cf9e8ccadc972d76463f1055a7fe.tar.gz emacs-7a76850c2022cf9e8ccadc972d76463f1055a7fe.tar.bz2 emacs-7a76850c2022cf9e8ccadc972d76463f1055a7fe.zip |
lisp/frame.el: Minor rearrangement.
-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 |