+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)
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);
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);