summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2013-11-25 10:05:25 -0500
committerStefan Monnier <monnier@iro.umontreal.ca>2013-11-25 10:05:25 -0500
commit623891e5c6643587e7a61dea25aacdc470a4d866 (patch)
tree4550639dfc41c722b8ae9e7bbe7d10e2a3aae76e
parent05ca27d8bdd231f5c67558decc3d708d263fdcca (diff)
downloademacs-623891e5c6643587e7a61dea25aacdc470a4d866.tar.gz
* lisp/frame.el (handle-focus-in, handle-focus-out): Add missing
interactive spec.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/frame.el2
2 files changed, 7 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3b46af790a1..f52ca143ba7 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+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
diff --git a/lisp/frame.el b/lisp/frame.el
index 57f9395b935..a639d89fa25 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -127,6 +127,7 @@ 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 runs the hook `focus-in-hook'."
+ (interactive "e")
(run-hooks 'focus-in-hook))
(defun handle-focus-out (_event)
@@ -134,6 +135,7 @@ This function runs the hook `focus-in-hook'."
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))
;;;; Arrangement of frames at startup