Function: org-ctags-ask-rebuild-tags-file-then-find-tag
org-ctags-ask-rebuild-tags-file-then-find-tag is a byte-compiled
function defined in org-ctags.el.gz.
Signature
(org-ctags-ask-rebuild-tags-file-then-find-tag NAME)
Documentation
This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
Wrapper for org-ctags-rebuild-tags-file-then-find-tag.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-ctags.el.gz
(defun org-ctags-ask-rebuild-tags-file-then-find-tag (name)
"This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
Wrapper for org-ctags-rebuild-tags-file-then-find-tag."
(if (and (buffer-file-name)
(y-or-n-p
(format-message
"Tag `%s' not found. Rebuild table `%s/TAGS' and look again?"
name
(file-name-directory (buffer-file-name)))))
(org-ctags-rebuild-tags-file-then-find-tag name)
nil))