emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r115145: * src/frame.c (Fhandle_focus_in, Fhandle_fo


From: Glenn Morris
Subject: [Emacs-diffs] trunk r115145: * src/frame.c (Fhandle_focus_in, Fhandle_focus_out): Doc fixes.
Date: Tue, 19 Nov 2013 02:32:28 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 115145
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Mon 2013-11-18 21:32:26 -0500
message:
  * src/frame.c (Fhandle_focus_in, Fhandle_focus_out): Doc fixes.
modified:
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/frame.c                    frame.c-20091113204419-o5vbwnq5f7feedwu-243
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-11-19 02:23:50 +0000
+++ b/src/ChangeLog     2013-11-19 02:32:26 +0000
@@ -1,3 +1,7 @@
+2013-11-19  Glenn Morris  <address@hidden>
+
+       * frame.c (Fhandle_focus_in, Fhandle_focus_out): Doc fixes.
+
 2013-11-19  Brian Jenkins  <address@hidden>  (tiny change)
 
        Add hooks to run on gaining/losing focus.  (Bug#15029)

=== modified file 'src/frame.c'
--- a/src/frame.c       2013-11-19 02:23:50 +0000
+++ b/src/frame.c       2013-11-19 02:32:26 +0000
@@ -892,7 +892,8 @@
 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 @@
        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);


reply via email to

[Prev in Thread] Current Thread [Next in Thread]