diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2013-09-23 13:50:47 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2013-09-23 13:50:47 +0400 |
commit | 5492865b797b7ce33730ea7b013d43beeaf33dc3 (patch) | |
tree | 4289b376ea0446ffb248426d7f63eb3fc1737939 /src/dispnew.c | |
parent | b519df23900222df5637cbd23eba45e4bd540856 (diff) |
* dispnew.c (frame_garbaged, selected_frame, last_nonminibuf_frame):
Move to...
* frame.c (frame_garbaged, selected_frame, last_nonminibuf_frame):
...this file and convert the latter to static. Adjust comment.
(make_initial_frame):
* window.c (init_window_once): Adjust user.
* frame.h (last_nonminibuf_frame): Remove declaration.
* lisp.h (selected_frame): Likewise.
* msdos.c (the_only_display_info): Adjust comment.
Diffstat (limited to 'src/dispnew.c')
-rw-r--r-- | src/dispnew.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index ed7349a450..4ec989280e 100644 --- a/src/dispnew.c +++ b/src/dispnew.c @@ -102,30 +102,12 @@ static void set_window_cursor_after_update (struct window *); static void adjust_frame_glyphs_for_window_redisplay (struct frame *); static void adjust_frame_glyphs_for_frame_redisplay (struct frame *); -/* True upon entry to redisplay means do not assume anything about - current contents of actual terminal frame; clear and redraw it. */ - -bool frame_garbaged; - /* True means last display completed. False means it was preempted. */ bool display_completed; Lisp_Object Qdisplay_table, Qredisplay_dont_pause; - -/* The currently selected frame. In a single-frame version, this - variable always equals the_only_frame. */ - -Lisp_Object selected_frame; - -/* A frame which is not just a mini-buffer, or 0 if there are no such - frames. This is usually the most recent such frame that was - selected. In a single-frame version, this variable always holds - the address of the_only_frame. */ - -struct frame *last_nonminibuf_frame; - /* True means SIGWINCH happened when not safe. */ static bool delayed_size_change; |