From cf1c6748c4f5dd92c042f7aa1eb756d0eef32757 Mon Sep 17 00:00:00 2001 From: Nicolas De Jaeghere Date: Tue, 6 Apr 2021 13:04:38 +0200 Subject: [PATCH] Add end space to prompt --- bongo.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bongo.el b/bongo.el index 95d20a8..155b54d 100644 --- a/bongo.el +++ b/bongo.el @@ -10473,7 +10473,7 @@ However, setting it through Custom does this automatically." (defun bongo-confirm-player-stop () "If the current buffer has a player running stop it before killing the buffer." (or (not bongo-player) - (when (yes-or-no-p "This buffer has an associated player running, stop it?") + (when (yes-or-no-p "This buffer has an associated player running, stop it? ") (bongo-player-stop bongo-player) t)))