]> git.eshelyaron.com Git - emacs.git/commitdiff
(focus-follows-mouse): Doc-fix. Change default on w32.
authorJason Rumney <jasonr@gnu.org>
Wed, 5 Sep 2007 23:17:19 +0000 (23:17 +0000)
committerJason Rumney <jasonr@gnu.org>
Wed, 5 Sep 2007 23:17:19 +0000 (23:17 +0000)
lisp/ChangeLog
lisp/frame.el

index b0e3448aaca4bc0e5028420f5d16c5a1f2fadf65..e09e76851bec4f0342e7ebddcd7c5c8cc51889c6 100644 (file)
@@ -1,3 +1,7 @@
+2007-09-05  Jason Rumney  <jasonr@gnu.org>
+
+       * frame.el (focus-follows-mouse): Doc-fix. Change default on w32.
+
 2007-09-02  Richard Stallman  <rms@gnu.org>
 
        * emacs-lisp/lisp-mode.el (lisp-indent-offset): Make defcustom.
index 97133dee87c0f20fc3e6fbd55e0aa375f79ae7ae..130e24eb4ad4c94aa53f129080b0ab12a3a1435a 100644 (file)
@@ -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")