diff options
| author | Tom Tromey <tromey@redhat.com> | 2013-03-18 08:48:53 -0600 |
|---|---|---|
| committer | Tom Tromey <tromey@redhat.com> | 2013-03-18 08:48:53 -0600 |
| commit | cbcba8ce7f980b01c18c0fd561ef6687b1361507 (patch) | |
| tree | 140c65bdc6c44e7539d853cb9f66bc5a7e500351 /src/buffer.c | |
| parent | dad8121b0e4438e68b23d388585f703e75951337 (diff) | |
| download | emacs-cbcba8ce7f980b01c18c0fd561ef6687b1361507.tar.gz | |
don't let kill-buffer kill a buffer if it is current in any thread
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index 4d24f970792..b7b471d6d46 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1726,6 +1726,9 @@ cleaning up all windows currently displaying the buffer to be killed. */) if (!BUFFER_LIVE_P (b)) return Qnil; + if (thread_check_current_buffer (b)) + return Qnil; + /* Query if the buffer is still modified. */ if (INTERACTIVE && !NILP (BVAR (b, filename)) && BUF_MODIFF (b) > BUF_SAVE_MODIFF (b)) |
