RosettaCodeData/Task/HTTP/Emacs-Lisp/http.l
2015-11-18 06:14:39 +00:00

6 lines
241 B
Common Lisp

(with-current-buffer
(url-retrieve-synchronously "http://www.rosettacode.org")
(goto-char (point-min))
(search-forward "\n\n" nil t) ;; skip headers
(prin1 (buffer-substring (point) (point-max)))
(kill-buffer (current-buffer)))