Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
623891e5
Commit
623891e5
authored
Nov 25, 2013
by
Stefan Monnier
Browse files
* lisp/frame.el (handle-focus-in, handle-focus-out): Add missing
interactive spec.
parent
05ca27d8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/frame.el
lisp/frame.el
+2
-0
No files found.
lisp/ChangeLog
View file @
623891e5
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
...
...
lisp/frame.el
View file @
623891e5
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment