aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.c
diff options
context:
space:
mode:
authorMiles Bader2005-10-15 00:26:05 +0000
committerMiles Bader2005-10-15 00:26:05 +0000
commit9fe76e1b256aefe892edf84beb1fdfaf5ab0efa1 (patch)
tree4570b6861b88c36c99783d4103d49c8658027834 /src/frame.c
parent2f0837ccf0ba386b9a9aab0eac2bad3076491a93 (diff)
parentd3a597b7b41c2ebdb457e7c8bb037958138028f2 (diff)
downloademacs-9fe76e1b256aefe892edf84beb1fdfaf5ab0efa1.tar.gz
emacs-9fe76e1b256aefe892edf84beb1fdfaf5ab0efa1.zip
Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-91
Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 581-597) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 133-141) - Update from CVS - Merge from emacs--cvs-trunk--0 - Update from CVS: texi/gnus.texi (RSS): Fix key description. - Update from CVS: texi/gnus.texi (Document Server Internals): Addition.
Diffstat (limited to 'src/frame.c')
-rw-r--r--src/frame.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/frame.c b/src/frame.c
index 9c6345a0b40..ae7ac842fa2 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;