diff options
| author | Richard M. Stallman | 2002-06-26 08:34:29 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-06-26 08:34:29 +0000 |
| commit | f49067803c0962ec93f737ba40db6a902c2c5beb (patch) | |
| tree | 8f1d8616cb4f4c6d29d376c02b1e8e385306e60b /src | |
| parent | 91d0c677aa21ceb89fb226d9620b33eb414f900a (diff) | |
| download | emacs-f49067803c0962ec93f737ba40db6a902c2c5beb.tar.gz emacs-f49067803c0962ec93f737ba40db6a902c2c5beb.zip | |
(frames_bury_buffer): Function deleted.
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/frame.c b/src/frame.c index 795183b2a2f..323e8e4e83e 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1818,26 +1818,6 @@ frames_discard_buffer (buffer) | |||
| 1818 | } | 1818 | } |
| 1819 | } | 1819 | } |
| 1820 | 1820 | ||
| 1821 | /* Move BUFFER to the end of the buffer-list of each frame. */ | ||
| 1822 | |||
| 1823 | void | ||
| 1824 | frames_bury_buffer (buffer) | ||
| 1825 | Lisp_Object buffer; | ||
| 1826 | { | ||
| 1827 | Lisp_Object frame, tail; | ||
| 1828 | |||
| 1829 | FOR_EACH_FRAME (tail, frame) | ||
| 1830 | { | ||
| 1831 | struct frame *f = XFRAME (frame); | ||
| 1832 | Lisp_Object found; | ||
| 1833 | |||
| 1834 | found = Fmemq (buffer, f->buffer_list); | ||
| 1835 | if (!NILP (found)) | ||
| 1836 | f->buffer_list = nconc2 (Fdelq (buffer, f->buffer_list), | ||
| 1837 | Fcons (buffer, Qnil)); | ||
| 1838 | } | ||
| 1839 | } | ||
| 1840 | |||
| 1841 | /* Modify the alist in *ALISTPTR to associate PROP with VAL. | 1821 | /* Modify the alist in *ALISTPTR to associate PROP with VAL. |
| 1842 | If the alist already has an element for PROP, we change it. */ | 1822 | If the alist already has an element for PROP, we change it. */ |
| 1843 | 1823 | ||