diff options
| author | Richard M. Stallman | 2002-06-26 08:36:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2002-06-26 08:36:25 +0000 |
| commit | 6c488ddb7988ec0c64a3a3b98fa61938c37df568 (patch) | |
| tree | 05145a903ce56536fcdd13c644d8246caec3ac98 /src/buffer.c | |
| parent | f49067803c0962ec93f737ba40db6a902c2c5beb (diff) | |
| download | emacs-6c488ddb7988ec0c64a3a3b98fa61938c37df568.tar.gz emacs-6c488ddb7988ec0c64a3a3b98fa61938c37df568.zip | |
(Fbury_buffer): Use frames_discard_buffer.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 6af8b39d3b5..65300cd9827 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -1932,7 +1932,10 @@ selected window if it is displayed there. */) | |||
| 1932 | XSETCDR (link, Qnil); | 1932 | XSETCDR (link, Qnil); |
| 1933 | Vbuffer_alist = nconc2 (Vbuffer_alist, link); | 1933 | Vbuffer_alist = nconc2 (Vbuffer_alist, link); |
| 1934 | 1934 | ||
| 1935 | frames_bury_buffer (buffer); | 1935 | /* Removing BUFFER from frame-specific lists |
| 1936 | has the effect of putting BUFFER at the end | ||
| 1937 | of the combined list in each frame. */ | ||
| 1938 | frames_discard_buffer (buffer); | ||
| 1936 | } | 1939 | } |
| 1937 | 1940 | ||
| 1938 | return Qnil; | 1941 | return Qnil; |