comparison lisp/url/url-cookie.el @ 63718:47f9bb41d144

(url-cookie-generate-header-lines): Fix autoload cookie.
author Richard M. Stallman <rms@gnu.org>
date Thu, 23 Jun 2005 21:28:07 +0000
parents 457f83187ef5
children c234ee23e519 d07fdd5d7d4e
comparison
equal deleted inserted replaced
63717:2bd9653ec2f2 63718:47f9bb41d144
260 (if (and (string-match path-regexp path) 260 (if (and (string-match path-regexp path)
261 (not (url-cookie-expired-p cur))) 261 (not (url-cookie-expired-p cur)))
262 (setq retval (cons cur retval)))))) 262 (setq retval (cons cur retval))))))
263 retval)) 263 retval))
264 264
265 ;;;###autolaod 265 ;;;###autoload
266 (defun url-cookie-generate-header-lines (host path secure) 266 (defun url-cookie-generate-header-lines (host path secure)
267 (let* ((cookies (url-cookie-retrieve host path secure)) 267 (let* ((cookies (url-cookie-retrieve host path secure))
268 (retval nil) 268 (retval nil)
269 (cur nil) 269 (cur nil)
270 (chunk nil)) 270 (chunk nil))