zwz <address@hidden> wrote:
Carsten Dominik <address@hidden> writes:
...
...
Org-mode is using url-retrieve-synchonously, so this must be a
cacheing
issue in the url package.
One thing you might try is to use curl or wget instead - see the
variable
`org-feed-retrieve-method'.
I do not know there is such a variable
is it introduced in 6.35?
I will try out the latest version. Thanks!
It was introduced way back when:
,----
| commit b6e7a1c5ca283b37a0d73e397b3d7dd2f5e58227
| Author: Carsten Dominik <address@hidden>
| Date: Tue Mar 24 10:20:30 2009 +0100
|
| New file lisp/org-feed.el
|
| ...
| +(defcustom org-feed-retrieve-method 'url-retrieve-synchronously
| + "The method to be used to retrieve a feed URL.
| +This can be `curl' or `wget' to call these external programs, or
it can be
| +an Emacs Lisp function that will return a buffer containing the
content
| +of the file pointed to by the URL."
| ...
`----