aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2005-10-10 14:52:50 +0000
committerJuanma Barranquero2005-10-10 14:52:50 +0000
commit66a9dbbea53f608635026eb2d7b01b30b5c150c0 (patch)
tree05264f5370c38851ad0c3ca7f420447e612e3510 /src
parent008171a4e0c745ade79ab36779f8ca8c9c692f1c (diff)
downloademacs-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.c10
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
904Lisp_Object 904static Lisp_Object
905next_frame (frame, minibuf) 905next_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
981Lisp_Object 981static Lisp_Object
982prev_frame (frame, minibuf) 982prev_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
1813a surrogate minibuffer frame when a frame doesn't have its own 1813a surrogate minibuffer frame when a frame doesn't have its own
1814minibuffer window. 1814minibuffer window.
1815 1815
1816A frame's focus redirection can be changed by select-frame. If frame 1816A frame's focus redirection can be changed by `select-frame'. If frame
1817FOO is selected, and then a different frame BAR is selected, any 1817FOO is selected, and then a different frame BAR is selected, any
1818frames redirecting their focus to FOO are shifted to redirect their 1818frames redirecting their focus to FOO are shifted to redirect their
1819focus to BAR. This allows focus redirection to work properly when the 1819focus 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
1822This means that a frame whose focus is redirected to itself is treated 1822This means that a frame whose focus is redirected to itself is treated
1823differently from a frame whose focus is redirected to nil; the former 1823differently from a frame whose focus is redirected to nil; the former
1824is affected by select-frame, while the latter is not. 1824is affected by `select-frame', while the latter is not.
1825 1825
1826The redirection lasts until `redirect-frame-focus' is called to change it. */) 1826The 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
1955void 1955static void
1956set_term_frame_name (f, name) 1956set_term_frame_name (f, name)
1957 struct frame *f; 1957 struct frame *f;
1958 Lisp_Object name; 1958 Lisp_Object name;