]> git.eshelyaron.com Git - emacs.git/commitdiff
* frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
authorChong Yidong <cyd@gnu.org>
Tue, 29 Nov 2011 06:07:51 +0000 (14:07 +0800)
committerChong Yidong <cyd@gnu.org>
Tue, 29 Nov 2011 06:07:51 +0000 (14:07 +0800)
lisp/ChangeLog
lisp/frame.el

index 2aded765af5affdac5f60dc73529c50d4e8070d6..57fbbf8b825ded480696c599483542cbde37bbe5 100644 (file)
@@ -1,3 +1,7 @@
+2011-11-29  Chong Yidong  <cyd@gnu.org>
+
+       * frame.el (auto-raise-mode, auto-lower-mode): Doc fix.
+
 2011-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * files.el (find-file): Don't use force-same-window (bug#10144).
index f63179de1f12b589c231b06fe4787b0cae3b0d93..af668f809612ad8d2fefc68c8ceece6562b174f2 100644 (file)
@@ -1133,15 +1133,21 @@ To get the frame's current border color, use `frame-parameters'."
                           (list (cons 'border-color color-name))))
 
 (define-minor-mode auto-raise-mode
-  "Toggle whether or not the selected frame should auto-raise.
+  "Toggle whether or not selected frames should auto-raise.
 With a prefix argument ARG, enable Auto Raise mode if ARG is
 positive, and disable it otherwise.  If called from Lisp, enable
 the mode if ARG is omitted or nil.
 
-Note that this controls Emacs's own auto-raise feature.
-Some window managers allow you to enable auto-raise for certain windows.
-You can use that for Emacs windows if you wish, but if you do,
-that is beyond the control of Emacs and this command has no effect on it."
+Auto Raise mode does nothing under most window managers, which
+switch focus on mouse clicks.  It only has an effect if your
+window manager switches focus on mouse movement (in which case
+you should also change `focus-follows-mouse' to t).  Then,
+enabling Auto Raise mode causes any graphical Emacs frame which
+acquires focus to be automatically raised.
+
+Note that this minor mode controls Emacs's own auto-raise
+feature.  Window managers that switch focus on mouse movement
+often have their own auto-raise feature."
   :variable (frame-parameter nil 'auto-raise)
   (if (frame-parameter nil 'auto-raise)
       (raise-frame)))
@@ -1152,10 +1158,16 @@ With a prefix argument ARG, enable Auto Lower mode if ARG is
 positive, and disable it otherwise.  If called from Lisp, enable
 the mode if ARG is omitted or nil.
 
-Note that this controls Emacs's own auto-lower feature.
-Some window managers allow you to enable auto-lower for certain windows.
-You can use that for Emacs windows if you wish, but if you do,
-that is beyond the control of Emacs and this command has no effect on it."
+Auto Lower mode does nothing under most window managers, which
+switch focus on mouse clicks.  It only has an effect if your
+window manager switches focus on mouse movement (in which case
+you should also change `focus-follows-mouse' to t).  Then,
+enabling Auto Lower Mode causes any graphical Emacs frame which
+loses focus to be automatically lowered.
+
+Note that this minor mode controls Emacs's own auto-lower
+feature.  Window managers that switch focus on mouse movement
+often have their own features for raising or lowering frames."
   :variable (frame-parameter nil 'auto-lower))
 
 (defun set-frame-name (name)