diff options
author | Jason Rumney <jasonr@gnu.org> | 2007-09-05 23:17:19 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2007-09-05 23:17:19 +0000 |
commit | 98050a8ab47a8bd91f2463d9f5c53ef284a1fd7c (patch) | |
tree | 3a3d5ce1e4a681d8045c6b93a2123123ef3126b9 /lisp/frame.el | |
parent | c7a6fd7f03caf963baa519e263350d1b9d912674 (diff) | |
download | emacs-98050a8ab47a8bd91f2463d9f5c53ef284a1fd7c.tar.gz |
(focus-follows-mouse): Doc-fix. Change default on w32.
Diffstat (limited to 'lisp/frame.el')
-rw-r--r-- | lisp/frame.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 97133dee87c..130e24eb4ad 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -681,13 +681,11 @@ the user during startup." (nreverse frame-initial-geometry-arguments)) (cdr param-list)) -(defcustom focus-follows-mouse (not (eq window-system 'mac)) +(defcustom focus-follows-mouse (not (memq window-system '(mac w32))) "*Non-nil if window system changes focus when you move the mouse. You should set this variable to tell Emacs how your window manager handles focus, since there is no way in general for Emacs to find out -automatically. - -This variable does not have any effect on MS-Windows." +automatically." :type 'boolean :group 'frames :version "20.3") |