diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-11-17 08:16:58 +0100 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-11-17 08:16:58 +0100 |
commit | 90ac2db9ed9b2bab6f40508f6302996d5b8a725d (patch) | |
tree | ec7e6e6588b1f26564cd9667136b0e9e3fd09d52 /lisp/bookmark.el | |
parent | 8e67cf41e3a15d81812b4098ce06f5badee74a3f (diff) | |
download | emacs-90ac2db9ed9b2bab6f40508f6302996d5b8a725d.tar.gz |
Make bookmark-set prompt less confusing
* lisp/bookmark.el (bookmark-set): Make the prompt less confusing
(bug#51876).
Diffstat (limited to 'lisp/bookmark.el')
-rw-r--r-- | lisp/bookmark.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 |