Function: org-ctags-ask-append-topic

org-ctags-ask-append-topic is a byte-compiled function defined in org-ctags.el.gz.

Signature

(org-ctags-ask-append-topic NAME &optional NARROWP)

Documentation

This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.

Wrapper for org-ctags-append-topic, which first asks the user if they want to append a new topic.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-ctags.el.gz
(defun org-ctags-ask-append-topic (name &optional narrowp)
  "This function is intended to be used in ORG-OPEN-LINK-FUNCTIONS.
Wrapper for org-ctags-append-topic, which first asks the user if they want
to append a new topic."
  (if (y-or-n-p (format-message
		 "Topic `%s' not found; append to end of buffer?" name))
      (org-ctags-append-topic name narrowp)
    nil))