On 24.2, emacs -Q C-SPC M-w C-p kill-ring-save copied an empty region, and deactivated the mark. This is correct. But now do C-SPC C-w C-p kill-region cut an empty region, which is correct, but the mark is still active, which is incorrect. When the buffer and text aren't read-only, kill-region relies on the command loop to deactivate the mark after the buffer is modified, but when cutting an empty region, the buffer isn't modified, so the mark is never deactivated. The attached killregionbug.patch fixes it.