This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (require 'url-http) | |
| ;; (defvar url-http-end-of-headers nil) | |
| ;; (defvar url-http-response-version nil) | |
| ;; (defvar url-http-response-status nil) | |
| (defadvice url-retrieve-synchronously (around fix-for-ntemacs activate) | |
| (if (not (executable-find "curl")) | |
| ad-do-it | |
| (let* ((url (ad-get-arg 0)) |