]> git.eshelyaron.com Git - emacs.git/commitdiff
Improve bookmark-maybe-historicize-string doc string
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 4 Dec 2021 04:56:32 +0000 (05:56 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 4 Dec 2021 19:06:25 +0000 (20:06 +0100)
* lisp/bookmark.el (bookmark-maybe-historicize-string): Clarify
that this isn't about menus (but calls from bmenu) (bug#12504).

lisp/bookmark.el

index a8fa9ae774929c91bf66a640edd016731e373f30..f35cbc1a5ec559d49b2df671c326fed48b2d69a8 100644 (file)
@@ -510,8 +510,9 @@ If DEFAULT is nil then return empty string for empty input."
 
 (defmacro bookmark-maybe-historicize-string (string)
   "Put STRING into the bookmark prompt history, if caller non-interactive.
-We need this because sometimes bookmark functions are invoked from
-menus, so `completing-read' never gets a chance to set `bookmark-history'."
+We need this because sometimes bookmark functions are invoked
+from other commands that pass in the bookmark name, so
+`completing-read' never gets a chance to set `bookmark-history'."
   `(or
     (called-interactively-p 'interactive)
     (setq bookmark-history (cons ,string bookmark-history))))