# HG changeset patch # User Gerd Moellmann # Date 984580822 0 # Node ID e4331ae9636d453c5b43d8857b622bcda4aa1d94 # Parent 4b1f1bdaf67695eb142a27c80c09d9130b268432 (Fframe_parameters): In the `buffer-list' frame parameter, store the buffer list of FRAME, not the list of the selected frame. diff -r 4b1f1bdaf676 -r e4331ae9636d src/frame.c --- a/src/frame.c Wed Mar 14 14:00:42 2001 +0000 +++ b/src/frame.c Wed Mar 14 14:40:22 2001 +0000 @@ -1950,7 +1950,7 @@ int height, width; struct gcpro gcpro1; - if (EQ (frame, Qnil)) + if (NILP (frame)) frame = selected_frame; CHECK_FRAME (frame, 0); @@ -2016,8 +2016,7 @@ : FRAME_MINIBUF_ONLY_P (f) ? Qonly : FRAME_MINIBUF_WINDOW (f))); store_in_alist (&alist, Qunsplittable, (FRAME_NO_SPLIT_P (f) ? Qt : Qnil)); - store_in_alist (&alist, Qbuffer_list, - frame_buffer_list (selected_frame)); + store_in_alist (&alist, Qbuffer_list, frame_buffer_list (frame)); /* I think this should be done with a hook. */ #ifdef HAVE_WINDOW_SYSTEM