From: Jason Rumney Date: Wed, 5 Sep 2007 23:17:19 +0000 (+0000) Subject: (focus-follows-mouse): Doc-fix. Change default on w32. X-Git-Tag: emacs-pretest-22.1.90~854 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=98050a8ab47a8bd91f2463d9f5c53ef284a1fd7c;p=emacs.git (focus-follows-mouse): Doc-fix. Change default on w32. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b0e3448aaca..e09e76851be 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-09-05 Jason Rumney + + * frame.el (focus-follows-mouse): Doc-fix. Change default on w32. + 2007-09-02 Richard Stallman * emacs-lisp/lisp-mode.el (lisp-indent-offset): Make defcustom. 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")