lisp/frame.el: Minor rearrangement.
authorChong Yidong <cyd@gnu.org>
Sun, 15 Apr 2012 15:15:00 +0000 (23:15 +0800)
committerChong Yidong <cyd@gnu.org>
Sun, 15 Apr 2012 15:15:00 +0000 (23:15 +0800)
lisp/frame.el

index 1cd6c0c..79e1243 100644 (file)
@@ -1557,21 +1557,6 @@ left untouched.  FRAME nil or omitted means use the selected frame."
     'delete-frame-functions "22.1")
 
 \f
-;; Highlighting trailing whitespace.
-
-(make-variable-buffer-local 'show-trailing-whitespace)
-
-\f
-;; Scrolling
-
-(defgroup scrolling nil
-  "Scrolling windows."
-  :version "21.1"
-  :group 'frames)
-
-(defvaralias 'automatic-hscrolling 'auto-hscroll-mode)
-
-\f
 ;; 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)
 
+\f
+;; Misc.
+
+(defvaralias 'automatic-hscrolling 'auto-hscroll-mode)
+
+(make-variable-buffer-local 'show-trailing-whitespace)
+
 (provide 'frame)
 
 ;;; frame.el ends here