aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-08-12 17:24:38 +0200
committerLars Ingebrigtsen2022-08-12 17:44:59 +0200
commit59af89c2a233668b993eaa5186f3a04444d0fd83 (patch)
tree47ea9799da8d26a80ac0652f92b5a5a2231cfc88
parent16ec99702c9a785e9c3cbded60b2b920b01d488b (diff)
downloademacs-59af89c2a233668b993eaa5186f3a04444d0fd83.tar.gz
emacs-59af89c2a233668b993eaa5186f3a04444d0fd83.zip
Clarify bookmark-set prompt
* lisp/bookmark.el (bookmark-set): Clarify prompt further (bug#57128).
-rw-r--r--lisp/bookmark.el2
1 files changed, 1 insertions, 1 deletions
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
966the list of bookmarks.)" 966the list of bookmarks.)"
967 (interactive (list nil current-prefix-arg)) 967 (interactive (list nil current-prefix-arg))
968 (let ((prompt 968 (let ((prompt
969 (if no-overwrite "Append bookmark named" "Set bookmark named"))) 969 (if no-overwrite "Add bookmark named" "Set bookmark named")))
970 (bookmark-set-internal prompt name (if no-overwrite 'push 'overwrite)))) 970 (bookmark-set-internal prompt name (if no-overwrite 'push 'overwrite))))
971 971
972;;;###autoload 972;;;###autoload