mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-30 08:08:26 +00:00
org-agenda.el (org-agenda-open-link): Fix bug when no link is matched
* org-agenda.el (org-agenda-open-link): Fix bug when no link is matched. Return a message instead of an error.
This commit is contained in:
parent
e8aaca4de6
commit
8897a53ff4
@ -7906,7 +7906,7 @@ It also looks at the text of the entry itself."
|
||||
(lkend (cdr lkall))
|
||||
trg)
|
||||
(cond
|
||||
(buffer
|
||||
((and buffer (stringp lk))
|
||||
(with-current-buffer buffer
|
||||
(setq trg (and (string-match org-bracket-link-regexp lk)
|
||||
(match-string 1 lk)))
|
||||
@ -7930,7 +7930,7 @@ It also looks at the text of the entry itself."
|
||||
(beginning-of-line 1)
|
||||
(looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
|
||||
(org-open-link-from-string (match-string 1)))
|
||||
(t (error "No link to open here")))))
|
||||
(t (message "No link to open here")))))
|
||||
|
||||
(defun org-agenda-copy-local-variable (var)
|
||||
"Get a variable from a referenced buffer and install it here."
|
||||
|
Loading…
Reference in New Issue
Block a user