From: Lars Ingebrigtsen Date: Wed, 17 Nov 2021 07:16:58 +0000 (+0100) Subject: Make bookmark-set prompt less confusing X-Git-Tag: emacs-29.0.90~2852^2~237 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=90ac2db9ed9b2bab6f40508f6302996d5b8a725d;p=emacs.git Make bookmark-set prompt less confusing * lisp/bookmark.el (bookmark-set): Make the prompt less confusing (bug#51876). --- 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