mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Add advertised calling convention for redirect-frame-focus (Bug#12030).
* frame.c (Fredirect_frame_focus): In doc-string don't mention that FOCUS-FRAME can be omitted. * subr.el (redirect-frame-focus): Add advertised calling convention (Bug#12030).
This commit is contained in:
parent
09ae5da1b8
commit
8137e7b316
4 changed files with 14 additions and 3 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2012-07-25 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* subr.el (redirect-frame-focus): Add advertised calling
|
||||
convention (Bug#12030).
|
||||
|
||||
2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
Prefer typical American spelling for "acknowledgment".
|
||||
|
|
@ -570,7 +575,7 @@
|
|||
2012-07-06 Dmitry Gutov <dgutov@yandex.ru>
|
||||
|
||||
* window.el (quit-window): Always restore window height when
|
||||
it's saved in quit-restore parameter.
|
||||
it's saved in quit-restore parameter (Bug#11810).
|
||||
|
||||
2012-07-06 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
|
|
|
|||
|
|
@ -1184,6 +1184,7 @@ is converted into a string by expressing it in decimal."
|
|||
(set-advertised-calling-convention
|
||||
'all-completions '(string collection &optional predicate) "23.1")
|
||||
(set-advertised-calling-convention 'unintern '(name obarray) "23.3")
|
||||
(set-advertised-calling-convention 'redirect-frame-focus '(frame focus-frame) "24.2")
|
||||
|
||||
;;;; Obsolescence declarations for variables, and aliases.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,8 @@
|
|||
2012-07-25 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* frame.c (Fredirect_frame_focus): In doc-string don't mention
|
||||
that FOCUS-FRAME can be omitted.
|
||||
|
||||
2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
|
||||
|
||||
Adjust buffer text indirection counters at the end of Fkill_buffer.
|
||||
|
|
|
|||
|
|
@ -1874,8 +1874,8 @@ In other words, switch-frame events caused by events in FRAME will
|
|||
request a switch to FOCUS-FRAME, and `last-event-frame' will be
|
||||
FOCUS-FRAME after reading an event typed at FRAME.
|
||||
|
||||
If FOCUS-FRAME is omitted or nil, any existing redirection is
|
||||
canceled, and the frame again receives its own keystrokes.
|
||||
If FOCUS-FRAME is nil, any existing redirection is canceled, and the
|
||||
frame again receives its own keystrokes.
|
||||
|
||||
Focus redirection is useful for temporarily redirecting keystrokes to
|
||||
a surrogate minibuffer frame when a frame doesn't have its own
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue