Function: org-tempo-complete-tag
org-tempo-complete-tag is a byte-compiled function defined in
org-tempo.el.gz.
Signature
(org-tempo-complete-tag &rest _)
Documentation
Look for a tag and expand it silently.
Unlike to tempo-complete-tag, do not give a signal if a partial
completion or no match at all is found. Return nil if expansion
didn't succeed.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-tempo.el.gz
(defun org-tempo-complete-tag (&rest _)
"Look for a tag and expand it silently.
Unlike to `tempo-complete-tag', do not give a signal if a partial
completion or no match at all is found. Return nil if expansion
didn't succeed."
(org-tempo--update-maybe)
;; `tempo-complete-tag' returns its SILENT argument when there is no
;; completion available at all.
(not (eq 'fail (tempo-complete-tag 'fail))))