diff options
| author | Miles Bader | 2005-10-15 00:26:05 +0000 |
|---|---|---|
| committer | Miles Bader | 2005-10-15 00:26:05 +0000 |
| commit | 9fe76e1b256aefe892edf84beb1fdfaf5ab0efa1 (patch) | |
| tree | 4570b6861b88c36c99783d4103d49c8658027834 /src/frame.c | |
| parent | 2f0837ccf0ba386b9a9aab0eac2bad3076491a93 (diff) | |
| parent | d3a597b7b41c2ebdb457e7c8bb037958138028f2 (diff) | |
| download | emacs-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.c | 10 |
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 | ||
| 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; |