changeset 46015:3988483dc2b7

(frames_bury_buffer): Function deleted.
author Richard M. Stallman <rms@gnu.org>
date Wed, 26 Jun 2002 08:34:29 +0000
parents e5675426ff4c
children 3ba98b59cb49
files src/frame.c
diffstat 1 files changed, 0 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- 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.  */