emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/frame.c


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/src/frame.c
Date: Wed, 26 Jun 2002 04:34:32 -0400

Index: emacs/src/frame.c
diff -c emacs/src/frame.c:1.284 emacs/src/frame.c:1.285
*** emacs/src/frame.c:1.284     Fri Apr 26 19:39:05 2002
--- emacs/src/frame.c   Wed Jun 26 04:34:29 2002
***************
*** 1818,1843 ****
      }
  }
  
- /* 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.  */
  
--- 1818,1823 ----



reply via email to

[Prev in Thread] Current Thread [Next in Thread]