emacs/default.el
cvsdist 0f5a618fbe auto-import changelog data from emacs-21.3-14.src.rpm
Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
- rebuilt
Fri Apr 30 2004 Jens Petersen <petersen@redhat.com> - 21.3-13
- unset focus-follows-mouse in default.el to make switching frames work for
    click-to-focus (Theodore Belding,114736)
2004-09-09 04:37:47 +00:00

17 lines
541 B
EmacsLisp

;;; default.el - loaded after ".emacs" on startup
;;;
;;; Setting `inhibit-default-init' non-nil in "~/.emacs"
;;; prevents loading of this file. Also the "-q" option to emacs
;;; prevents both "~/.emacs" and this file from being loaded at startup.
;; always end a file with a newline
(setq require-final-newline 'query)
(when window-system
;; enable wheelmouse support by default
(mwheel-install)
;; make switching frames works properly under the default click-to-focus
(setq focus-follows-mouse nil))
(auto-compression-mode t)