emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109203: Add advertised calling conve


From: martin rudalics
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109203: Add advertised calling convention for redirect-frame-focus (Bug#12030).
Date: Wed, 25 Jul 2012 11:34:48 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109203
committer: martin rudalics <address@hidden>
branch nick: trunk
timestamp: Wed 2012-07-25 11:34:48 +0200
message:
  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).
modified:
  lisp/ChangeLog
  lisp/subr.el
  src/ChangeLog
  src/frame.c
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-07-25 05:48:19 +0000
+++ b/lisp/ChangeLog    2012-07-25 09:34:48 +0000
@@ -1,3 +1,8 @@
+2012-07-25  Martin Rudalics  <address@hidden>
+
+       * subr.el (redirect-frame-focus): Add advertised calling
+       convention (Bug#12030).
+
 2012-07-25  Paul Eggert  <address@hidden>
 
        Prefer typical American spelling for "acknowledgment".
@@ -570,7 +575,7 @@
 2012-07-06  Dmitry Gutov  <address@hidden>
 
        * 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  <address@hidden>
 

=== modified file 'lisp/subr.el'
--- a/lisp/subr.el      2012-07-19 06:24:04 +0000
+++ b/lisp/subr.el      2012-07-25 09:34:48 +0000
@@ -1184,6 +1184,7 @@
 (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.
 

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2012-07-25 05:09:02 +0000
+++ b/src/ChangeLog     2012-07-25 09:34:48 +0000
@@ -1,3 +1,8 @@
+2012-07-25  Martin Rudalics  <address@hidden>
+
+       * frame.c (Fredirect_frame_focus): In doc-string don't mention
+       that FOCUS-FRAME can be omitted.
+
 2012-07-25  Dmitry Antipov  <address@hidden>
 
        Adjust buffer text indirection counters at the end of Fkill_buffer.

=== modified file 'src/frame.c'
--- a/src/frame.c       2012-07-20 07:29:04 +0000
+++ b/src/frame.c       2012-07-25 09:34:48 +0000
@@ -1874,8 +1874,8 @@
 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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]