* lisp/url/url-cookie.el (url-cookie-list): Doc fix.
* doc/misc/url.texi (Cookies): Mention url-cookie-list command.
* etc/NEWS: Related edit.
+2014-02-05 Glenn Morris <rgm@gnu.org>
+
+ * url.texi (Cookies): Mention url-cookie-list command.
+
2014-02-03 Glenn Morris <rgm@gnu.org>
* cl.texi (Blocks and Exits): Mention cl-tagbody.
@node Cookies
@subsection Cookies
+@findex url-cookie-delete
+@defun url-cookie-list
+This command creates a @file{*url cookies*} buffer listing the current
+cookies, if there are any. You can remove a cookie using the
+@kbd{C-k} (@code{url-cookie-delete}) command.
+@end defun
+
@defopt url-cookie-file
The file in which cookies are stored, defaulting to @file{cookies} in
the directory specified by @code{url-configuration-directory}.
*** Handlers for `file-notify-add-watch' and `file-notify-rm-watch'
for remote machines which support filesystem notifications.
-** New command `url-cookie-list' displays all the current cookies, and
-allows deleting selected cookies.
++++
+** New URL command `url-cookie-list' displays the current cookies,
+and allows you to interactively remove cookies.
** VC and related modes
+2014-02-05 Glenn Morris <rgm@gnu.org>
+
+ * url-cookie.el (url-cookie-list): Doc fix.
+
2014-01-25 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
* url-vars.el (url): Link to info manual.
;;; Mode for listing and editing cookies.
(defun url-cookie-list ()
- "List the URL cookies."
+ "Display a buffer listing the current URL cookies, if there are any.
+Use \\<url-cookie-mode-map>\\\[url-cookie-delete] to remove cookies."
(interactive)
-
(when (and (null url-cookie-secure-storage)
(null url-cookie-storage))
(error "No cookies are defined"))