Function: org-feed-read-previous-status
org-feed-read-previous-status is a byte-compiled function defined in
org-feed.el.gz.
Signature
(org-feed-read-previous-status POS DRAWER)
Documentation
Get the alist of old GUIDs from the entry at POS.
This will find DRAWER and extract the alist.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-feed.el.gz
(defun org-feed-read-previous-status (pos drawer)
"Get the alist of old GUIDs from the entry at POS.
This will find DRAWER and extract the alist."
(save-excursion
(goto-char pos)
(let ((end (save-excursion (org-end-of-subtree t t))))
(if (re-search-forward
(concat "^[ \t]*:" drawer ":[ \t]*\n\\([^\000]*?\\)\n[ \t]*:END:")
end t)
(read (match-string 1))
nil))))