diff options
| author | Paul Eggert | 2016-01-30 11:27:34 -0800 |
|---|---|---|
| committer | Paul Eggert | 2016-01-30 11:27:34 -0800 |
| commit | 82b089783e71b2aeef950eaecfe4cbc0735e64a2 (patch) | |
| tree | a826c20768071bda95a69b2632718c1641c6d0cc /src/buffer.c | |
| parent | d27c8078ef766dae3587bc82b70128a70efaa223 (diff) | |
| parent | f7dc6d8b5bb318e02a4016d93f8b34de0716f4dc (diff) | |
| download | emacs-82b089783e71b2aeef950eaecfe4cbc0735e64a2.tar.gz emacs-82b089783e71b2aeef950eaecfe4cbc0735e64a2.zip | |
-
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c index 4df77a181d6..51bbad78bbc 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -43,6 +43,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 43 | #include "keymap.h" | 43 | #include "keymap.h" |
| 44 | #include "frame.h" | 44 | #include "frame.h" |
| 45 | 45 | ||
| 46 | #ifdef HAVE_XWIDGETS | ||
| 47 | # include "xwidget.h" | ||
| 48 | #endif | ||
| 46 | #ifdef WINDOWSNT | 49 | #ifdef WINDOWSNT |
| 47 | #include "w32heap.h" /* for mmap_* */ | 50 | #include "w32heap.h" /* for mmap_* */ |
| 48 | #endif | 51 | #endif |
| @@ -1747,6 +1750,9 @@ cleaning up all windows currently displaying the buffer to be killed. */) | |||
| 1747 | 1750 | ||
| 1748 | kill_buffer_processes (buffer); | 1751 | kill_buffer_processes (buffer); |
| 1749 | 1752 | ||
| 1753 | #ifdef HAVE_XWIDGETS | ||
| 1754 | kill_buffer_xwidgets (buffer); | ||
| 1755 | #endif | ||
| 1750 | /* Killing buffer processes may run sentinels which may have killed | 1756 | /* Killing buffer processes may run sentinels which may have killed |
| 1751 | our buffer. */ | 1757 | our buffer. */ |
| 1752 | if (!BUFFER_LIVE_P (b)) | 1758 | if (!BUFFER_LIVE_P (b)) |