diff options
| author | Juanma Barranquero | 2005-10-10 14:52:50 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-10-10 14:52:50 +0000 |
| commit | 66a9dbbea53f608635026eb2d7b01b30b5c150c0 (patch) | |
| tree | 05264f5370c38851ad0c3ca7f420447e612e3510 /src | |
| parent | 008171a4e0c745ade79ab36779f8ca8c9c692f1c (diff) | |
| download | emacs-66a9dbbea53f608635026eb2d7b01b30b5c150c0.tar.gz emacs-66a9dbbea53f608635026eb2d7b01b30b5c150c0.zip | |
(Fredirect_frame_focus): Fix typos in docstring.
(next_frame, prev_frame, set_term_frame_name): Make static.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/frame.c b/src/frame.c index d423138fc9a..624e1a89b86 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -901,7 +901,7 @@ DEFUN ("frame-list", Fframe_list, Sframe_list, | |||
| 901 | If MINIBUF is 0, include all visible and iconified frames. | 901 | If MINIBUF is 0, include all visible and iconified frames. |
| 902 | Otherwise, include all frames. */ | 902 | Otherwise, include all frames. */ |
| 903 | 903 | ||
| 904 | Lisp_Object | 904 | static Lisp_Object |
| 905 | next_frame (frame, minibuf) | 905 | next_frame (frame, minibuf) |
| 906 | Lisp_Object frame; | 906 | Lisp_Object frame; |
| 907 | Lisp_Object minibuf; | 907 | Lisp_Object minibuf; |
| @@ -978,7 +978,7 @@ next_frame (frame, minibuf) | |||
| 978 | If MINIBUF is 0, include all visible and iconified frames. | 978 | If MINIBUF is 0, include all visible and iconified frames. |
| 979 | Otherwise, include all frames. */ | 979 | Otherwise, include all frames. */ |
| 980 | 980 | ||
| 981 | Lisp_Object | 981 | static Lisp_Object |
| 982 | prev_frame (frame, minibuf) | 982 | prev_frame (frame, minibuf) |
| 983 | Lisp_Object frame; | 983 | Lisp_Object frame; |
| 984 | Lisp_Object minibuf; | 984 | Lisp_Object minibuf; |
| @@ -1813,7 +1813,7 @@ Focus redirection is useful for temporarily redirecting keystrokes to | |||
| 1813 | a surrogate minibuffer frame when a frame doesn't have its own | 1813 | a surrogate minibuffer frame when a frame doesn't have its own |
| 1814 | minibuffer window. | 1814 | minibuffer window. |
| 1815 | 1815 | ||
| 1816 | A frame's focus redirection can be changed by select-frame. If frame | 1816 | A frame's focus redirection can be changed by `select-frame'. If frame |
| 1817 | FOO is selected, and then a different frame BAR is selected, any | 1817 | FOO is selected, and then a different frame BAR is selected, any |
| 1818 | frames redirecting their focus to FOO are shifted to redirect their | 1818 | frames redirecting their focus to FOO are shifted to redirect their |
| 1819 | focus to BAR. This allows focus redirection to work properly when the | 1819 | focus to BAR. This allows focus redirection to work properly when the |
| @@ -1821,7 +1821,7 @@ user switches from one frame to another using `select-window'. | |||
| 1821 | 1821 | ||
| 1822 | This means that a frame whose focus is redirected to itself is treated | 1822 | This means that a frame whose focus is redirected to itself is treated |
| 1823 | differently from a frame whose focus is redirected to nil; the former | 1823 | differently from a frame whose focus is redirected to nil; the former |
| 1824 | is affected by select-frame, while the latter is not. | 1824 | is affected by `select-frame', while the latter is not. |
| 1825 | 1825 | ||
| 1826 | The redirection lasts until `redirect-frame-focus' is called to change it. */) | 1826 | The redirection lasts until `redirect-frame-focus' is called to change it. */) |
| 1827 | (frame, focus_frame) | 1827 | (frame, focus_frame) |
| @@ -1952,7 +1952,7 @@ frame_name_fnn_p (str, len) | |||
| 1952 | /* Set the name of the terminal frame. Also used by MSDOS frames. | 1952 | /* Set the name of the terminal frame. Also used by MSDOS frames. |
| 1953 | Modeled after x_set_name which is used for WINDOW frames. */ | 1953 | Modeled after x_set_name which is used for WINDOW frames. */ |
| 1954 | 1954 | ||
| 1955 | void | 1955 | static void |
| 1956 | set_term_frame_name (f, name) | 1956 | set_term_frame_name (f, name) |
| 1957 | struct frame *f; | 1957 | struct frame *f; |
| 1958 | Lisp_Object name; | 1958 | Lisp_Object name; |