]> git.eshelyaron.com Git - emacs.git/commitdiff
Make bookmark-set prompt less confusing
authorLars Ingebrigtsen <larsi@gnus.org>
Wed, 17 Nov 2021 07:16:58 +0000 (08:16 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Wed, 17 Nov 2021 07:16:58 +0000 (08:16 +0100)
* lisp/bookmark.el (bookmark-set): Make the prompt less confusing
(bug#51876).

lisp/bookmark.el

index 89c9125a60d1838647a224ea6459953d15c8207b..a8fa9ae774929c91bf66a640edd016731e373f30 100644 (file)
@@ -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