]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/frame.c (Fhandle_focus_in, Fhandle_focus_out): Doc fixes.
authorGlenn Morris <rgm@gnu.org>
Tue, 19 Nov 2013 02:32:26 +0000 (21:32 -0500)
committerGlenn Morris <rgm@gnu.org>
Tue, 19 Nov 2013 02:32:26 +0000 (21:32 -0500)
src/ChangeLog
src/frame.c

index 43f966cdc3c30f8a3b00480991d2a89d0c7fc65f..80952b764743743a40ace6dd2ed2aba40919f1af 100644 (file)
@@ -1,3 +1,7 @@
+2013-11-19  Glenn Morris  <rgm@gnu.org>
+
+       * frame.c (Fhandle_focus_in, Fhandle_focus_out): Doc fixes.
+
 2013-11-19  Brian Jenkins  <brian@brianjenkins.org>  (tiny change)
 
        Add hooks to run on gaining/losing focus.  (Bug#15029)
index fccb53e2436f256d43c9d19cca9ef1f1c2754260..fbfc77226812fec1311398ddf3ba73e2e54ac0b9 100644 (file)
@@ -892,7 +892,8 @@ DEFUN ("handle-focus-in", Fhandle_focus_in, Shandle_focus_in, 1, 1, "e",
 Focus in events are usually bound to this function.
 Focus in events occur when a frame has focus, but a switch-frame event
 is not generated.
-This function checks if blink-cursor timers should be turned on again.  */)
+This function runs the hook `focus-in-hook'.
+It also checks if blink-cursor timers should be turned on again.  */)
   (Lisp_Object event)
 {
   Frun_hooks (1, &Qfocus_in_hook);
@@ -903,7 +904,8 @@ DEFUN ("handle-focus-out", Fhandle_focus_out, Shandle_focus_out, 1, 1, "e",
        doc: /* Handle a focus-out event.
 Focus out events are usually bound to this function.
 Focus out events occur when no frame has focus.
-This function checks if blink-cursor timers should be turned off.  */)
+This function runs the hook `focus-out-hook'.
+It also checks if blink-cursor timers should be turned off.  */)
   (Lisp_Object event)
 {
   Frun_hooks (1, &Qfocus_out_hook);