# HG changeset patch # User Richard M. Stallman # Date 1025080469 0 # Node ID 3988483dc2b711411ffc2c7d25e59e75e009c858 # Parent e5675426ff4caf04b15aa3102213675d25487622 (frames_bury_buffer): Function deleted. diff -r e5675426ff4c -r 3988483dc2b7 src/frame.c --- a/src/frame.c Wed Jun 26 08:31:10 2002 +0000 +++ b/src/frame.c Wed Jun 26 08:34:29 2002 +0000 @@ -1818,26 +1818,6 @@ } } -/* Move BUFFER to the end of the buffer-list of each frame. */ - -void -frames_bury_buffer (buffer) - Lisp_Object buffer; -{ - Lisp_Object frame, tail; - - FOR_EACH_FRAME (tail, frame) - { - struct frame *f = XFRAME (frame); - Lisp_Object found; - - found = Fmemq (buffer, f->buffer_list); - if (!NILP (found)) - f->buffer_list = nconc2 (Fdelq (buffer, f->buffer_list), - Fcons (buffer, Qnil)); - } -} - /* Modify the alist in *ALISTPTR to associate PROP with VAL. If the alist already has an element for PROP, we change it. */