mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-05 19:31:02 -08:00
Rename live-window-p' to window-live-p', for consistency with
`frame-live-p'. * window.c (Fwindow_live_p): Renamed from Flive_window_p. * lisp.h (CHECK_LIVE_WINDOW): Change to use Qwindow_live_p. (Qwindow_live_p): Extern declaration renamed fom Qlive_window_p.
This commit is contained in:
parent
10c48c955d
commit
806b4d9b90
2 changed files with 7 additions and 7 deletions
|
|
@ -636,7 +636,7 @@ typedef unsigned char UCHAR;
|
|||
{ \
|
||||
if (XTYPE ((x)) != Lisp_Window \
|
||||
|| NILP (XWINDOW ((x))->buffer)) \
|
||||
x = wrong_type_argument (Qlive_window_p, (x)); \
|
||||
x = wrong_type_argument (Qwindow_live_p, (x)); \
|
||||
}
|
||||
|
||||
#define CHECK_PROCESS(x, i) \
|
||||
|
|
@ -1160,7 +1160,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, Qlive_window_p;
|
||||
extern Lisp_Object Qwindowp, Qwindow_live_p;
|
||||
extern Lisp_Object Fget_buffer_window ();
|
||||
extern Lisp_Object Fsave_window_excursion ();
|
||||
extern Lisp_Object Fset_window_configuration (), Fcurrent_window_configuration ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue