+2013-12-20 Leo Liu <sdl.web@gmail.com>
+
+ * url.el (url-retrieve-synchronously): Add optional arg SILENT and
+ INHIBIT-COOKIES.
+
2013-09-29 Leo Liu <sdl.web@gmail.com>
* url-util.el (url-pretty-length): Make obsolete and all uses
buffer))
;;;###autoload
-(defun url-retrieve-synchronously (url)
+(defun url-retrieve-synchronously (url &optional silent inhibit-cookies)
"Retrieve URL synchronously.
Return the buffer containing the data, or nil if there are no data
associated with it (the case for dired, info, or mailto URLs that need
(url-retrieve url (lambda (&rest ignored)
(url-debug 'retrieval "Synchronous fetching done (%S)" (current-buffer))
(setq retrieval-done t
- asynch-buffer (current-buffer)))))
+ asynch-buffer (current-buffer)))
+ nil silent inhibit-cookies))
(if (null asynch-buffer)
;; We do not need to do anything, it was a mailto or something
;; similar that takes processing completely outside of the URL