Mercurial > emacs
changeset 65976:c332e9c9e66d
(Fredirect_frame_focus): Fix typos in docstring.
(next_frame, prev_frame, set_term_frame_name): Make static.
author | Juanma Barranquero <lekktu@gmail.com> |
---|---|
date | Mon, 10 Oct 2005 14:52:50 +0000 |
parents | a234d371d212 |
children | 4bf70e5aa52d |
files | src/frame.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/frame.c Mon Oct 10 13:41:06 2005 +0000 +++ b/src/frame.c Mon Oct 10 14:52:50 2005 +0000 @@ -901,7 +901,7 @@ If MINIBUF is 0, include all visible and iconified frames. Otherwise, include all frames. */ -Lisp_Object +static Lisp_Object next_frame (frame, minibuf) Lisp_Object frame; Lisp_Object minibuf; @@ -978,7 +978,7 @@ If MINIBUF is 0, include all visible and iconified frames. Otherwise, include all frames. */ -Lisp_Object +static Lisp_Object prev_frame (frame, minibuf) Lisp_Object frame; Lisp_Object minibuf; @@ -1813,7 +1813,7 @@ a surrogate minibuffer frame when a frame doesn't have its own minibuffer window. -A frame's focus redirection can be changed by select-frame. If frame +A frame's focus redirection can be changed by `select-frame'. If frame FOO is selected, and then a different frame BAR is selected, any frames redirecting their focus to FOO are shifted to redirect their focus to BAR. This allows focus redirection to work properly when the @@ -1821,7 +1821,7 @@ This means that a frame whose focus is redirected to itself is treated differently from a frame whose focus is redirected to nil; the former -is affected by select-frame, while the latter is not. +is affected by `select-frame', while the latter is not. The redirection lasts until `redirect-frame-focus' is called to change it. */) (frame, focus_frame) @@ -1952,7 +1952,7 @@ /* Set the name of the terminal frame. Also used by MSDOS frames. Modeled after x_set_name which is used for WINDOW frames. */ -void +static void set_term_frame_name (f, name) struct frame *f; Lisp_Object name;