summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChong Yidong <cyd@gnu.org>2012-04-15 23:15:00 +0800
committerChong Yidong <cyd@gnu.org>2012-04-15 23:15:00 +0800
commit7a76850c2022cf9e8ccadc972d76463f1055a7fe (patch)
tree4ea464aa997f649259009bd08f7b77d0bad005a3
parent60efac0fc56286eef52707dd214ca5cb1ea56979 (diff)
downloademacs-7a76850c2022cf9e8ccadc972d76463f1055a7fe.tar.gz
emacs-7a76850c2022cf9e8ccadc972d76463f1055a7fe.tar.bz2
emacs-7a76850c2022cf9e8ccadc972d76463f1055a7fe.zip
lisp/frame.el: Minor rearrangement.
-rw-r--r--lisp/frame.el22
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