From: Jameson Rollins Date: Sat, 6 Nov 2010 20:49:28 +0000 (-0400) Subject: Don't use kill-this-buffer to kill notmuch emacs buffers X-Git-Tag: 0.5~59 X-Git-Url: https://git.notmuchmail.org/git?a=commitdiff_plain;h=7171e77d4d1e83fdf9c7a56987b98bce3f181598;hp=7171e77d4d1e83fdf9c7a56987b98bce3f181598;p=notmuch Don't use kill-this-buffer to kill notmuch emacs buffers kill-this-buffer appears to be a function intended specifically for use in the menu bar, and causes problem killing notmuch buffers when multiple frames have been used. This patch replaces kill-this-buffer with notmuch-kill-this-buffer, which in turn just simply calls (kill-buffer (current-buffer)). ---