Function: org-find-entry-with-id
org-find-entry-with-id is an interactive and byte-compiled function
defined in org.el.gz.
Signature
(org-find-entry-with-id IDENT)
Documentation
Locate the entry that contains the ID property with exact value IDENT.
IDENT can be a string, a symbol or a number, this function will search for the string representation of it. Return the position where this entry starts, or nil if there is no such entry.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org.el.gz
(defun org-find-entry-with-id (ident)
"Locate the entry that contains the ID property with exact value IDENT.
IDENT can be a string, a symbol or a number, this function will search for
the string representation of it.
Return the position where this entry starts, or nil if there is no such entry."
(interactive "sID: ")
(let ((id (cond
((stringp ident) ident)
((symbolp ident) (symbol-name ident))
((numberp ident) (number-to-string ident))
(t (error "IDENT %s must be a string, symbol or number" ident)))))
(org-with-wide-buffer (org-find-property "ID" id))))