Function: gravatar-get-data

gravatar-get-data is a byte-compiled function defined in gravatar.el.gz.

Signature

(gravatar-get-data)

Documentation

Return body of current URL buffer, or nil on failure.

Source Code

;; Defined in /usr/src/emacs/lisp/image/gravatar.el.gz
(defun gravatar-get-data ()
  "Return body of current URL buffer, or nil on failure."
  (save-excursion
    (goto-char (point-min))
    (and (re-search-forward "^HTTP/.+ 200 OK$" nil (line-end-position))
         (search-forward "\n\n" nil t)
         (buffer-substring (point) (point-max)))))