# HG changeset patch # User Jim Blandy # Date 727024399 0 # Node ID d01c59bac5c1244d26059b10acaf37282796e90a # Parent 6f0c4252940fbf73d6df9fb29992d97e17c74caa * frame.h (FRAME_SAMPLE_VISIBILITY): Make sure frame is marked as garbaged whenever it goes from invisible to visible. * dispextern.h (frame_garbaged): Move extern declaration from here... * frame.h (frame_garbaged): ... to here. The FRAME_SAMPLE_VISIBILITY macro uses it now, and this seems to be just as modular. Make a new page, just for this and message_buf_print. (struct frame): Doc fix for the `visible' field. * process.c: #include "frame.h" instead of "dispextern.h"; the only thing we care about from it is the frame_garbaged declaration. * ymakefile: Note dependency change. diff -r 6f0c4252940f -r d01c59bac5c1 src/dispextern.h --- a/src/dispextern.h Thu Jan 14 15:12:23 1993 +0000 +++ b/src/dispextern.h Thu Jan 14 15:13:19 1993 +0000 @@ -17,10 +17,6 @@ along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* Nonzero means don't assume anything about current - contents of actual terminal frame */ -extern int frame_garbaged; - /* Nonzero means last display completed and cursor is really at cursX, cursY. Zero means it was preempted. */ extern int display_completed; diff -r 6f0c4252940f -r d01c59bac5c1 src/process.c --- a/src/process.c Thu Jan 14 15:12:23 1993 +0000 +++ b/src/process.c Thu Jan 14 15:13:19 1993 +0000 @@ -1,11 +1,11 @@ /* Asynchronous subprocess control for GNU Emacs. - Copyright (C) 1985, 1986, 1987, 1988, 1992 Free Software Foundation, Inc. + Copyright (C) 1985, 1986, 1987, 1988, 1992, 1993 Free Software Foundation, Inc. This file is part of GNU Emacs. GNU Emacs is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -the Free Software Foundation; either version 1, or (at your option) +the Free Software Foundation; either version 2, or (at your option) any later version. GNU Emacs is distributed in the hope that it will be useful, @@ -71,7 +71,7 @@ #include "termhooks.h" #include "termopts.h" #include "commands.h" -#include "dispextern.h" +#include "frame.h" Lisp_Object Qrun, Qstop, Qsignal, Qopen, Qclosed; /* Qexit is declared and initialized in eval.c. */