lisp/ol.el: Enhance message when the link has already been stored

* lisp/ol.el (org-store-link): Enhance message when the link has
already been stored.
This commit is contained in:
Bastien 2021-05-16 08:28:53 +02:00
parent 60fccc752e
commit c50c92bc45
1 changed files with 1 additions and 1 deletions

View File

@ -1720,7 +1720,7 @@ non-nil."
(if (not (and interactive? link))
(or agenda-link (and link (org-link-make-string link desc)))
(if (member (list link desc) org-stored-links)
(message "This link already exists")
(message "This link has already been stored")
(push (list link desc) org-stored-links)
(message "Stored: %s" (or desc link))
(when custom-id