summaryrefslogtreecommitdiff
path: root/src/frame.c
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2013-11-18 21:32:26 -0500
committerGlenn Morris <rgm@gnu.org>2013-11-18 21:32:26 -0500
commit8d1c3af987154197ea2cbe0bbc3eb42c9466e2e9 (patch)
treebd9960ebb6aa73fbec21c7d96daf0e1633795369 /src/frame.c
parentf88ac3bb9146673dcec4139e6e69149d8333b035 (diff)
* src/frame.c (Fhandle_focus_in, Fhandle_focus_out): Doc fixes.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c
index fccb53e243..fbfc772268 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -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);