David Engster <d...@randomsample.de> writes: > Julien Cubizolles writes: >> Since a few days (maybe an emacs update) I get this error message >> whenever I run org-caldav-sync. >> >> Debugger entered--Lisp error: (void-function url-http-options) >> >> I've been digging around a bit and url-http-options is defined in >> url-http.el which is present on my system >> (/usr/share/emacs/24.3.50/lisp/url/url-http.el.gz) so I don't understand >> why it isn't found (assuming that void-function message actually means >> it can't find the definition of the function). > > Does doing a (require 'url-http) before calling org-caldav help?
Yes it does, thanks, I should have thought of it. Why has it become necessary ? It seems that url-http-options is called by url-dav-supported-p, defined in url-dav.el. Shouldn't url-dav.el require url-http.el ? Julien.