diff options
| author | Jim Blandy <jimb@redhat.com> | 1993-06-17 00:39:37 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1993-06-17 00:39:37 +0000 |
| commit | 75d8f6686c49706c474ac485c1786cea73a1b7c7 (patch) | |
| tree | 483efbe7450ff22723590ed848fdda1d69a41416 /src/lisp.h | |
| parent | 2b0f4ba538126e4ebcda851d5acac2b6fbf47c96 (diff) | |
| download | emacs-75d8f6686c49706c474ac485c1786cea73a1b7c7.tar.gz | |
Don't let the 'B' interactive spec default to buffers viewed in
any visible frame.
* buffer.c (Fother_buffer): Pass Qvisible as the second argument
to Fget_buffer_window.
* window.c (Qvisible): New symbol.
(window_loop): In GET_BUFFER_WINDOW case, if frames is Qvisible,
ignore non-visible frames.
(Fget_buffer_window): Expand doc string to mention that Qvisible
is an interesting value for FRAME argument.
(syms_of_window): Init and staticpro Qvisible.
* lisp.h (Qvisible): New declaration.
Diffstat (limited to 'src/lisp.h')
| -rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 7acf63d6be9..0969bfb8f41 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -1213,7 +1213,7 @@ extern Lisp_Object get_keyelt (), get_keymap(); extern Lisp_Object Fvertical_motion (), Findent_to (), Fcurrent_column (); /* defined in window.c */ -extern Lisp_Object Qwindowp, Qwindow_live_p; +extern Lisp_Object Qwindowp, Qwindow_live_p, Qvisible; extern Lisp_Object Fget_buffer_window (); extern Lisp_Object Fsave_window_excursion (); extern Lisp_Object Fset_window_configuration (), Fcurrent_window_configuration (); |
