# HG changeset patch # User Richard M. Stallman # Date 797759247 0 # Node ID 91bcce2fd48647d9d88a72d4bacfd6ea8e3cdb4f # Parent 9f1825e7fc8ff20e44fcd6bd72cd40df60c7f6ad (Fframe_or_buffer_changed_p): Ignore buffers whose names start with space. (init_desired_glyphs): New function. diff -r 9f1825e7fc8f -r 91bcce2fd486 src/dispnew.c --- a/src/dispnew.c Thu Apr 13 06:40:19 1995 +0000 +++ b/src/dispnew.c Thu Apr 13 07:47:27 1995 +0000 @@ -502,6 +502,20 @@ bzero (FRAME_CURRENT_GLYPHS (frame)->enable, FRAME_HEIGHT (frame)); } +/* Clear out all display lines for a coming redisplay. */ + +void +init_desired_glyphs (frame) + register FRAME_PTR frame; +{ + register struct frame_glyphs *desired_glyphs = FRAME_DESIRED_GLYPHS (frame); + int vpos; + int height = FRAME_HEIGHT (frame); + + for (vpos = 0; vpos < height; vpos++) + desired_glyphs->enable[vpos] = 0; +} + /* Prepare to display on line VPOS starting at HPOS within it. */ void @@ -1887,6 +1901,7 @@ Sframe_or_buffer_changed_p, 0, 0, 0, "Return non-nil if the frame and buffer state appears to have changed.\n\ The state variable is an internal vector containing all frames and buffers,\n\ +aside from buffers whose names start with space,\n\ along with the buffers' read-only and modified flags, which allows a fast\n\ check to see whether the menu bars might need to be recomputed.\n\ If this function returns non-nil, it updates the internal vector to reflect\n\ @@ -1907,6 +1922,9 @@ for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr) { buf = XCONS (XCONS (tail)->car)->cdr; + /* Ignore buffers that aren't included in buffer lists. */ + if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ') + continue; if (!EQ (*vecp++, buf)) goto changed; if (!EQ (*vecp++, XBUFFER (buf)->read_only)) @@ -1934,6 +1952,9 @@ for (tail = Vbuffer_alist; CONSP (tail); tail = XCONS (tail)->cdr) { buf = XCONS (XCONS (tail)->car)->cdr; + /* Ignore buffers that aren't included in buffer lists. */ + if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ') + continue; *vecp++ = buf; *vecp++ = XBUFFER (buf)->read_only; *vecp++ = Fbuffer_modified_p (buf); @@ -2290,8 +2311,7 @@ it does the redisplay. It's also much like Fsit_for, except that it can be used for - waiting for input as well. One differnce is that sit_for - does not call prepare_menu_bars; Fsit_for does call that. */ + waiting for input as well. */ Lisp_Object sit_for (sec, usec, reading, display)