diff options
| author | Martin Rudalics | 2012-07-25 11:34:48 +0200 |
|---|---|---|
| committer | Martin Rudalics | 2012-07-25 11:34:48 +0200 |
| commit | 8137e7b3165ea5dffc66a0a49f34716df0c00c2d (patch) | |
| tree | 752e56d5285c790b10f21c107f8610d494d3f386 /lisp | |
| parent | 09ae5da1b8bc7e8195a4a252b532ac33e5723f93 (diff) | |
| download | emacs-8137e7b3165ea5dffc66a0a49f34716df0c00c2d.tar.gz emacs-8137e7b3165ea5dffc66a0a49f34716df0c00c2d.zip | |
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).
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 7 | ||||
| -rw-r--r-- | lisp/subr.el | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 95b69ec7712..5dbd7fb4bf1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-07-25 Martin Rudalics <rudalics@gmx.at> | ||
| 2 | |||
| 3 | * subr.el (redirect-frame-focus): Add advertised calling | ||
| 4 | convention (Bug#12030). | ||
| 5 | |||
| 1 | 2012-07-25 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2012-07-25 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | Prefer typical American spelling for "acknowledgment". | 8 | Prefer typical American spelling for "acknowledgment". |
| @@ -570,7 +575,7 @@ | |||
| 570 | 2012-07-06 Dmitry Gutov <dgutov@yandex.ru> | 575 | 2012-07-06 Dmitry Gutov <dgutov@yandex.ru> |
| 571 | 576 | ||
| 572 | * window.el (quit-window): Always restore window height when | 577 | * window.el (quit-window): Always restore window height when |
| 573 | it's saved in quit-restore parameter. | 578 | it's saved in quit-restore parameter (Bug#11810). |
| 574 | 579 | ||
| 575 | 2012-07-06 Glenn Morris <rgm@gnu.org> | 580 | 2012-07-06 Glenn Morris <rgm@gnu.org> |
| 576 | 581 | ||
diff --git a/lisp/subr.el b/lisp/subr.el index 0afe33c6a4c..882ad3cd23d 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1184,6 +1184,7 @@ is converted into a string by expressing it in decimal." | |||
| 1184 | (set-advertised-calling-convention | 1184 | (set-advertised-calling-convention |
| 1185 | 'all-completions '(string collection &optional predicate) "23.1") | 1185 | 'all-completions '(string collection &optional predicate) "23.1") |
| 1186 | (set-advertised-calling-convention 'unintern '(name obarray) "23.3") | 1186 | (set-advertised-calling-convention 'unintern '(name obarray) "23.3") |
| 1187 | (set-advertised-calling-convention 'redirect-frame-focus '(frame focus-frame) "24.2") | ||
| 1187 | 1188 | ||
| 1188 | ;;;; Obsolescence declarations for variables, and aliases. | 1189 | ;;;; Obsolescence declarations for variables, and aliases. |
| 1189 | 1190 | ||