Function: org-modify-diary-entry-string
org-modify-diary-entry-string is a byte-compiled function defined in
org-agenda.el.gz.
Signature
(org-modify-diary-entry-string STRING)
Documentation
Add text properties to string, allowing Org to act on it.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-modify-diary-entry-string (string)
"Add text properties to string, allowing Org to act on it."
(org-add-props string nil
'mouse-face 'highlight
'help-echo (if buffer-file-name
(format "mouse-2 or RET jump to diary file %s"
(abbreviate-file-name buffer-file-name))
"")
'org-agenda-diary-link t
'org-marker (org-agenda-new-marker (line-beginning-position))))