comparison src/buffer.c @ 16051:ccf489f8596e

Removed support for !MULTI_FRAME.
author Karl Heuer <kwzh@gnu.org>
date Sun, 01 Sep 1996 21:04:32 +0000
parents f2d0e8928d57
children 5c9f298c9875
comparison
equal deleted inserted replaced
16050:c2805a244171 16051:ccf489f8596e
851 buf = Fcdr (Fcar (tail)); 851 buf = Fcdr (Fcar (tail));
852 if (EQ (buf, buffer)) 852 if (EQ (buf, buffer))
853 continue; 853 continue;
854 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ') 854 if (XSTRING (XBUFFER (buf)->name)->data[0] == ' ')
855 continue; 855 continue;
856 #ifdef MULTI_FRAME
857 /* If the selected frame has a buffer_predicate, 856 /* If the selected frame has a buffer_predicate,
858 disregard buffers that don't fit the predicate. */ 857 disregard buffers that don't fit the predicate. */
859 tem = frame_buffer_predicate (); 858 tem = frame_buffer_predicate ();
860 if (!NILP (tem)) 859 if (!NILP (tem))
861 { 860 {
862 tem = call1 (tem, buf); 861 tem = call1 (tem, buf);
863 if (NILP (tem)) 862 if (NILP (tem))
864 continue; 863 continue;
865 } 864 }
866 #endif
867 865
868 if (NILP (visible_ok)) 866 if (NILP (visible_ok))
869 tem = Fget_buffer_window (buf, Qt); 867 tem = Fget_buffer_window (buf, Qt);
870 else 868 else
871 tem = Qnil; 869 tem = Qnil;