From 90ac2db9ed9b2bab6f40508f6302996d5b8a725d Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Wed, 17 Nov 2021 08:16:58 +0100 Subject: [PATCH] Make bookmark-set prompt less confusing * lisp/bookmark.el (bookmark-set): Make the prompt less confusing (bug#51876). --- lisp/bookmark.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 89c9125a60d..a8fa9ae7749 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -916,7 +916,7 @@ it removes only the first instance of a bookmark with that name from the list of bookmarks.)" (interactive (list nil current-prefix-arg)) (let ((prompt - (if no-overwrite "Set bookmark" "Set bookmark unconditionally"))) + (if no-overwrite "Append bookmark named" "Set bookmark named"))) (bookmark-set-internal prompt name (if no-overwrite 'push 'overwrite)))) ;;;###autoload -- 2.39.5