From: Lars Ingebrigtsen Date: Fri, 12 Aug 2022 15:24:38 +0000 (+0200) Subject: Clarify bookmark-set prompt X-Git-Tag: emacs-29.0.90~1447^2~214 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=59af89c2a233668b993eaa5186f3a04444d0fd83;p=emacs.git Clarify bookmark-set prompt * lisp/bookmark.el (bookmark-set): Clarify prompt further (bug#57128). --- diff --git a/lisp/bookmark.el b/lisp/bookmark.el index 30a03e0431e..d0893e932b4 100644 --- a/lisp/bookmark.el +++ b/lisp/bookmark.el @@ -966,7 +966,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 "Append bookmark named" "Set bookmark named"))) + (if no-overwrite "Add bookmark named" "Set bookmark named"))) (bookmark-set-internal prompt name (if no-overwrite 'push 'overwrite)))) ;;;###autoload