Function: url-get-normalized-date

url-get-normalized-date is an autoloaded and byte-compiled function defined in url-util.el.gz.

Signature

(url-get-normalized-date &optional SPECIFIED-TIME)

Documentation

Return a date string that most HTTP servers can understand.

Source Code

;; Defined in /usr/src/emacs/lisp/url/url-util.el.gz
;;;###autoload
(defun url-get-normalized-date (&optional specified-time)
 "Return a date string that most HTTP servers can understand."
 (let ((system-time-locale "C"))
  (format-time-string "%a, %d %b %Y %T GMT" specified-time t)))