Function: org-attach-expand
org-attach-expand is a byte-compiled function defined in
org-attach.el.gz.
Signature
(org-attach-expand FILE)
Documentation
Return the full path to the current entry's attachment file FILE.
Basically, this adds the path to the attachment directory.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-attach.el.gz
(defun org-attach-expand (file)
"Return the full path to the current entry's attachment file FILE.
Basically, this adds the path to the attachment directory."
(expand-file-name file (org-attach-dir)))