+2013-11-25 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * frame.el (handle-focus-in, handle-focus-out): Add missing
+ interactive spec.
+
2013-11-25 Michael Albinus <michael.albinus@gmx.de>
* net/tramp-cmds.el (tramp-cleanup-connection): Clean up
Focus-in events occur when a frame has focus, but a switch-frame event
is not generated.
This function runs the hook `focus-in-hook'."
+ (interactive "e")
(run-hooks 'focus-in-hook))
(defun handle-focus-out (_event)
Focus-out events are usually bound to this function.
Focus-out events occur when no frame has focus.
This function runs the hook `focus-out-hook'."
+ (interactive "e")
(run-hooks 'focus-out-hook))
\f
;;;; Arrangement of frames at startup